diff --git a/ChangeLog b/ChangeLog
index 61d2c5258..c8ac8a228 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -83,7 +83,6 @@ $Id$
+ [core] Include Content Security Policy HTTP headers.
- bug #3004216 [CSS] Field attributes use inline CSS
- patch #2999595, rfe #2998130 [interface] Cleanup navigation frame.
-- [core] Update library PHPExcel to version 1.7.3c
- patch #3025161 [core] Prevent sending of unnecessary cookies,
thanks to Piotr Przybylski - crackpl
@@ -96,6 +95,12 @@ $Id$
- bug [js] Avoid loading twice a js file
- bug #3024344 [setup] Setup forces numeric MemoryLimit
- bug #3025975 [auth] Odd LoginCookieValidity default value
+- bug #3026400 [PHP] ereg functions are deprecated
+- bug #3027557 [PHP] split() deprecated in PHP 5.3 (backport fixes from master)
+- bug #3023507 [core] No result set display from stored procedure SELECT
+- bug [export] CSV for MS Excel (Windows) should have semi-colon as separator
+- [core] Update library PHPExcel to version 1.7.3c
+- bug #2994885 [import] Convert Excel column name correctly
3.3.4.0 (2010-06-28)
- bug #2996161 [import] properly escape import value
diff --git a/db_structure.php b/db_structure.php
index f359c65bb..4c8e41f3d 100755
--- a/db_structure.php
+++ b/db_structure.php
@@ -360,24 +360,24 @@ foreach ($tables as $keyname => $each_table) {
) {
$do = true;
}
- foreach ($server_slave_Wild_Do_Table as $table) {
- if (($db == PMA_replication_strout($table)) && (ereg("^".substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true))-1), $truename)))
+ foreach ($server_slave_Wild_Do_Table as $db_table) {
+ $table_part = PMA_extract_db_or_table($db_table, 'table');
+ if (($db == PMA_extract_db_or_table($db_table, 'db')) && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))) {
$do = true;
+ }
}
////////////////////////////////////////////////////////////////////
if ((strlen(array_search($truename, $server_slave_Ignore_Table)) > 0) || (strlen(array_search($db, $server_slave_Ignore_DB)) > 0)) {
$ignored = true;
}
- foreach ($server_slave_Wild_Ignore_Table as $table) {
- if (($db == PMA_replication_strout($table)) && (ereg("^".substr(PMA_replication_strout($table, true), 0, strlen(PMA_replication_strout($table, true))-1), $truename)))
+ foreach ($server_slave_Wild_Ignore_Table as $db_table) {
+ $table_part = PMA_extract_db_or_table($db_table, 'table');
+ if (($db == PMA_extract_db_or_table($db_table)) && (preg_match("@^" . substr($table_part, 0, strlen($table_part) - 1) . "@", $truename))) {
$ignored = true;
+ }
}
- }/* elseif ($server_master_status) {
- if ((strlen(array_search($db, $server_master_Do_DB))>0) || count($server_master_Do_DB)==1)
- $do = true;
- elseif ((strlen(array_search($db, $server_master_Ignore_DB))>0) || count($server_master_Ignore_DB)==1)
- $ignored = true;
- }*/
+ unset($table_part);
+ }
?>
diff --git a/libraries/db_common.inc.php b/libraries/db_common.inc.php
index bfdde2369..439ac0588 100755
--- a/libraries/db_common.inc.php
+++ b/libraries/db_common.inc.php
@@ -37,12 +37,19 @@ $err_url = $cfg['DefaultTabDatabase'] . '?' . PMA_generate_common_url($db);
* Ensures the database exists (else move to the "parent" script) and displays
* headers
*/
-if (!isset($is_db) || !$is_db) {
- // Not a valid db name -> back to the welcome page
+if (! isset($is_db) || ! $is_db) {
if (strlen($db)) {
$is_db = PMA_DBI_select_db($db);
+ // This "Command out of sync" 2014 error may happen, for example
+ // after calling a MySQL procedure; at this point we can't select
+ // the db but it's not necessarily wrong
+ if (PMA_DBI_getError() && $GLOBALS['errno'] == 2014) {
+ $is_db = true;
+ unset($GLOBALS['errno']);
+ }
}
- if (! strlen($db) || !$is_db) {
+ // Not a valid db name -> back to the welcome page
+ if (! strlen($db) || ! $is_db) {
PMA_sendHeaderLocation($cfg['PmaAbsoluteUri'] . 'main.php?' . PMA_generate_common_url('', '', '&') . (isset($message) ? '&message=' . urlencode($message) : '') . '&reload=1');
exit;
}
diff --git a/libraries/export/csv.php b/libraries/export/csv.php
index e3d78f2b8..8e1973fea 100755
--- a/libraries/export/csv.php
+++ b/libraries/export/csv.php
@@ -70,7 +70,18 @@ function PMA_exportHeader() {
// Here we just prepare some values for export
if ($what == 'excel') {
$csv_terminated = "\015\012";
- $csv_separator = isset($GLOBALS['excel_edition']) && $GLOBALS['excel_edition'] == 'mac_excel2003' ? ';' : ',';
+ switch($GLOBALS['excel_edition']) {
+ case 'win':
+ // as tested on Windows with Excel 2002 and Excel 2007
+ $csv_separator = ';';
+ break;
+ case 'mac_excel2003':
+ $csv_separator = ';';
+ break;
+ case 'mac_excel2008':
+ $csv_separator = ',';
+ break;
+ }
$csv_enclosed = '"';
$csv_escaped = '"';
if (isset($GLOBALS['excel_columns'])) {
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index 2b5d80bdc..cd8741cf9 100755
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -343,27 +343,42 @@ function PMA_getColumnAlphaName($num)
/**
* Returns the column number based on the Excel name.
- * So "A" = 1, "AZ" = 27, etc.
+ * So "A" = 1, "Z" = 26, "AA" = 27, etc.
*
+ * Basicly this is a base26 (A-Z) to base10 (0-9) conversion.
+ * It iterates through all characters in the column name and
+ * calculates the corresponding value, based on character value
+ * (A = 1, ..., Z = 26) and position in the string.
*
* @access public
*
* @uses strtoupper()
* @uses strlen()
- * @uses count()
* @uses ord()
* @param string $name (i.e. "A", or "BC", etc.)
* @return int The column number
*/
function PMA_getColumnNumberFromName($name) {
- if (strlen($name) != 0) {
+ if (!empty($name)) {
$name = strtoupper($name);
- $num_chars = count($name);
- $number = 0;
+ $num_chars = strlen($name);
+ $column_number = 0;
for ($i = 0; $i < $num_chars; ++$i) {
- $number += (ord($name[$i]) - 64);
+ // read string from back to front
+ $char_pos = ($num_chars - 1) - $i;
+
+ // convert capital character to ASCII value
+ // and subtract 64 to get corresponding decimal value
+ // ASCII value of "A" is 65, "B" is 66, etc.
+ // Decimal equivalent of "A" is 1, "B" is 2, etc.
+ $number = (ord($name[$char_pos]) - 64);
+
+ // base26 to base10 conversion : multiply each number
+ // with corresponding value of the position, in this case
+ // $i=0 : 1; $i=1 : 26; $i=2 : 676; ...
+ $column_number += $number * pow(26,$i);
}
- return $number;
+ return $column_number;
} else {
return 0;
}
@@ -831,8 +846,8 @@ $import_notice = NULL;
* @uses SIZES
* @uses strcmp()
* @uses count()
- * @uses ereg()
- * @uses ereg_replace()
+ * @uses preg_match()
+ * @uses preg_replace()
* @uses PMA_isView()
* @uses PMA_backquote()
* @uses PMA_importRunQuery()
@@ -903,17 +918,17 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
*
* $pattern = 'CREATE (TABLE|VIEW|TRIGGER|FUNCTION|PROCEDURE)';
*/
- $pattern = 'CREATE .*(TABLE)';
+ $pattern = '/CREATE .*(TABLE)/';
$replacement = 'CREATE \\1 IF NOT EXISTS';
/* Change CREATE statements to CREATE IF NOT EXISTS to support inserting into existing structures */
for ($i = 0; $i < $additional_sql_len; ++$i) {
- $additional_sql[$i] = ereg_replace($pattern, $replacement, $additional_sql[$i]);
+ $additional_sql[$i] = preg_replace($pattern, $replacement, $additional_sql[$i]);
/* Execute the resulting statements */
PMA_importRunQuery($additional_sql[$i], $additional_sql[$i]);
}
}
-
+
if ($analyses != NULL) {
$type_array = array(NONE => "NULL", VARCHAR => "varchar", INT => "int", DECIMAL => "decimal");
@@ -1038,8 +1053,8 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
/* Add the viewable structures from $additional_sql to $tables so they are also displayed */
- $view_pattern = 'VIEW `[^`]+`\.`([^`]+)';
- $table_pattern = 'CREATE TABLE IF NOT EXISTS `([^`]+)`';
+ $view_pattern = '@VIEW `[^`]+`\.`([^`]+)@';
+ $table_pattern = '@CREATE TABLE IF NOT EXISTS `([^`]+)`@';
/* Check a third pattern to make sure its not a "USE `db_name`;" statement */
$regs = array();
@@ -1048,10 +1063,10 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
$additional_sql_len = count($additional_sql);
for ($i = 0; $i < $additional_sql_len; ++$i) {
- ereg($view_pattern, $additional_sql[$i], $regs);
+ preg_match($view_pattern, $additional_sql[$i], $regs);
if (count($regs) == 0) {
- ereg($table_pattern, $additional_sql[$i], $regs);
+ preg_match($table_pattern, $additional_sql[$i], $regs);
}
if (count($regs)) {
diff --git a/libraries/replication.inc.php b/libraries/replication.inc.php
index f2681a668..7b8ca0afb 100755
--- a/libraries/replication.inc.php
+++ b/libraries/replication.inc.php
@@ -116,14 +116,17 @@ foreach ($replication_types as $type) {
/**
- * @param $string -
- * @param $table -
- * @return
+ * @param $string contains "dbname.tablename"
+ * @param $what what to extract (db|table)
+ * @return $string the extracted part
*/
-function PMA_replication_strout($string, $table = false) {
+function PMA_extract_db_or_table($string, $what = 'db') {
$list = explode(".", $string);
-
- return $list[(int)$table];
+ if ('db' == $what) {
+ return $list[0];
+ } else {
+ return $list[1];
+ }
}
/**
* @param String $action - possible values: START or STOP
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index 0f7cab77c..c39e2dfa3 100755
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -312,6 +312,8 @@ function PMA_langDetails($lang) {
return array('tr|turkish', 'tr', 'Türkçe');
case 'tt':
return array('tt|tatarish', 'tt', 'Tatarça');
+ case 'ug':
+ return array('ug|uyghur', 'ug', 'ئۇيغۇرچە');
case 'uk':
return array('uk|ukrainian', 'uk', 'Українська');
case 'ur':
@@ -475,8 +477,8 @@ _textdomain('phpmyadmin');
/**
* Messages for phpMyAdmin.
*
- * These messages are here for easy transition to Gettext.
- * You should not add any messages here, use instead gettext directly
+ * These messages are here for easy transition to Gettext.
+ * You should not add any messages here, use instead gettext directly
* in your template/PHP file.
*/
diff --git a/po/af.po b/po/af.po
index ad780f62c..977f21b5e 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal \n"
"Language-Team: afrikaans \n"
+"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -61,8 +61,8 @@ msgstr "Soek"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -234,7 +234,7 @@ msgstr "Hernoem tabel na"
msgid "Command"
msgstr "Kommentaar"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -580,7 +580,7 @@ msgstr "Voeg by"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -630,8 +630,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -824,8 +824,8 @@ msgstr ""
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1375,7 +1375,7 @@ msgstr "Kommentaar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1516,8 +1516,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2077,8 +2077,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2276,8 +2276,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3014,43 +3014,43 @@ msgstr "Voortgebring deur"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL het niks teruggegee nie (dus nul rye)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Geen databasisse"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktuur"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3839,7 +3839,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Stoor"
@@ -3976,7 +3976,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Herstel"
@@ -4742,8 +4742,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7494,41 +7494,41 @@ msgstr "Biner - moenie verander nie"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Voeg by as 'n nuwe ry"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Terug na vorige bladsy"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Voeg 'n nuwe ry by"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
#, fuzzy
msgid "Go back to this page"
msgstr "Terug na vorige bladsy"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 7fcf219ba..2f38f5a98 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-29 14:16+0200\n"
"Last-Translator: Ahmed \n"
"Language-Team: arabic \n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "ابحث"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
msgid "Command"
msgstr "أمر"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "وبعدها"
@@ -334,8 +334,8 @@ msgid ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
#: db_operations.php:648
msgid "Edit PDF Pages"
@@ -575,7 +575,7 @@ msgstr "إدخال"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -816,8 +816,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1359,7 +1359,7 @@ msgstr "تعليق"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1500,8 +1500,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2060,8 +2060,8 @@ msgstr "اسم الجدول"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2259,8 +2259,8 @@ msgstr "رتب حسب المفتاح"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2988,41 +2988,41 @@ msgstr "أنشئ بواسطة"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL قام بإرجاع نتيجة إعداد فارغه (مثلا صف صفري)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "اذهب إلى الجدول"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3806,7 +3806,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "حفظ"
@@ -3988,7 +3988,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "إلغاء"
@@ -4751,8 +4751,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL "
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
@@ -7481,40 +7481,40 @@ msgstr "ثنائي - لاتحرره"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "إدخال كتسجيل جديد"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "الرجوع إلى الصفحة السابقة"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "إدخال تسجيل جديد"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "ارجع إلى هذه الصفحة"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "عدل الصف التالي"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/az.po b/po/az.po
index ff0fcc303..2bb2e7041 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -60,8 +60,8 @@ msgstr "Axtarış"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Cedveli yeniden adlandır"
msgid "Command"
msgstr "Komanda Tipi"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -577,7 +577,7 @@ msgstr "Elave et"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -627,8 +627,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -824,8 +824,8 @@ msgstr "Sxem %s faylına qeyd edildi."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1378,7 +1378,7 @@ msgstr "Qısa İzahatlar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1519,8 +1519,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2087,8 +2087,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2286,8 +2286,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3027,43 +3027,43 @@ msgstr "Qurucu"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Quruluş"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3864,7 +3864,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Qeyd Et"
@@ -4050,7 +4050,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Yenile"
@@ -4828,8 +4828,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "
@@ -7603,40 +7603,40 @@ msgstr "Binary - deyişiklik etme"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Yeni setir olaraq elave et"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Evvelki sehifeye qayıt"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Teze bir setir daha gir"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Bu sehifeye geri dön"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Bir sonrakı setre keç"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/be.po b/po/be.po
index 09db31cd0..1a705ac70 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Пошук"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Перайменаваць базу дадзеных у"
msgid "Command"
msgstr "Каманда"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "і пасьля"
@@ -576,7 +576,7 @@ msgstr "Уставіць"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -626,11 +626,11 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
-"sдакумэнтацыі%s."
+"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
+"%sдакумэнтацыі%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -829,8 +829,8 @@ msgstr "Дамп захаваны ў файл %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@@ -849,8 +849,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
-"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
+"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
+"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:337
@@ -1398,7 +1398,7 @@ msgstr "Камэнтар"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1545,8 +1545,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@@ -2127,8 +2127,8 @@ msgstr "імя табліцы"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@@ -2336,8 +2336,8 @@ msgstr "Сартаваць па ключы"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3118,44 +3118,44 @@ msgstr "Створаны"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Базы дадзеных адсутнічаюць"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Структура"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3957,7 +3957,7 @@ msgstr "Азначэньне PARTITION"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Захаваць"
@@ -4176,7 +4176,7 @@ msgid "Custom color"
msgstr "Іншы колер"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Скінуць"
@@ -4974,8 +4974,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
@@ -7911,43 +7911,43 @@ msgstr "Двайковыя дадзеныя — не рэдагуюцца"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Уставіць як новы радок"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "У выглядзе SQL-запыту"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Перайсьці да папярэдняй старонкі"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Дадаць яшчэ адзін радок"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Вярнуцца да гэтай старонкі"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Рэдагаваць наступны радок"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або "
"CTRL+стрэлкі для перамяшчэньня ў любое іншае месца"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Пачаць устаўку зноў з %s-га радку"
diff --git a/po/be@latin.po b/po/be@latin.po
index 8a34ef213..9f8b2c92b 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,16 +3,16 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \n"
+"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: be@latin\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -65,8 +65,8 @@ msgstr "Pošuk"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -233,7 +233,7 @@ msgstr "Pierajmienavać bazu dadzienych u"
msgid "Command"
msgstr "Kamanda"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "i paśla"
@@ -577,7 +577,7 @@ msgstr "Ustavić"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -627,11 +627,11 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
-"sdakumentacyi%s."
+"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
+"%sdakumentacyi%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -822,8 +822,8 @@ msgstr "Damp zachavany ŭ fajł %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@@ -842,8 +842,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
-"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
+"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
+"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:337
@@ -1393,7 +1393,7 @@ msgstr "Kamentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1540,8 +1540,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@@ -2122,8 +2122,8 @@ msgstr "imia tablicy"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@@ -2331,8 +2331,8 @@ msgstr "Sartavać pa klučy"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3112,41 +3112,41 @@ msgstr "Stvorany"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3838,8 +3838,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
-"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
-"sdakumentacyi%s."
+"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
+"%sdakumentacyi%s."
#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
#: libraries/tbl_links.inc.php:141
@@ -3942,7 +3942,7 @@ msgstr "Aznačeńnie PARTITION"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Zachavać"
@@ -4030,8 +4030,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
-"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
-"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
+"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
+"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@@ -4164,7 +4164,7 @@ msgid "Custom color"
msgstr "Inšy koler"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Skinuć"
@@ -4961,8 +4961,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
@@ -7835,42 +7835,42 @@ msgstr "Dvajkovyja dadzienyja — nie redagujucca"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Ustavić jak novy radok"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Pierajści da papiaredniaj staronki"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Dadać jašče adzin radok"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Viarnucca da hetaj staronki"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Redagavać nastupny radok"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Pačać ustaŭku znoŭ z %s-ha radku"
diff --git a/po/bg.po b/po/bg.po
index d0ee14f3b..630233514 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-11 17:28+0200\n"
"Last-Translator: \n"
"Language-Team: bulgarian \n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Търсене"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Преименуване на базата от данни на"
msgid "Command"
msgstr "Команда"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "и след това"
@@ -576,7 +576,7 @@ msgstr "Вмъкване"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -626,8 +626,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -822,8 +822,8 @@ msgstr "Схемата(дъмп) беше записана във файл %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sdдокументацията%s за да намерите начин да избегнете това ограничение."
@@ -1381,7 +1381,7 @@ msgstr "Коментари"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1524,8 +1524,8 @@ msgstr "Добре дошли в %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2093,8 +2093,8 @@ msgstr "име на таблицата"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2294,8 +2294,8 @@ msgstr "Сортиране по ключ"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3033,43 +3033,43 @@ msgstr "Генерирано от"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL върна празен резултат (т.е. нула редове)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Няма бази от данни"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Структура"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3765,8 +3765,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL валидатора не може да бъде инициализиран. Моля проверете дали сте "
-"инсталирали необходимите PHP разширения, така както е описано в %"
-"sдокументацията%s."
+"инсталирали необходимите PHP разширения, така както е описано в "
+"%sдокументацията%s."
#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
#: libraries/tbl_links.inc.php:141
@@ -3870,7 +3870,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Записване"
@@ -4066,7 +4066,7 @@ msgid "Custom color"
msgstr "Потребителски зададен цвят"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Изчистване"
@@ -4854,8 +4854,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Забележка: phpMyAdmin взема потребителските привилегии директно от таблицата "
"на привилегиите на MySQL. Съдържанието на тази таблица може да се различава "
@@ -7644,42 +7644,42 @@ msgstr " Двоично - не се редактира "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Вмъкване като нов ред"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "връщане обратно"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "вмъкване на нов запис"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "връщане към тази страница"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "редактиране на следващия ред"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Използвайте клавиша TAB за да премествате крурсора от стойност на стойност "
"или CTRL+стрелка за да премествате курсора в съответната посока"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index be089cde0..ca4619f0d 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "খুঁজুন"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "ডাটাবেজ রিনেম কর"
msgid "Command"
msgstr "নির্দেশ"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "এবং তারপর"
@@ -575,7 +575,7 @@ msgstr "Insert"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -823,11 +823,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1386,7 +1386,7 @@ msgstr "মন্তব্যসমূহ"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1530,8 +1530,8 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@@ -1896,8 +1896,8 @@ msgid ""
"extension. Please check your PHP configuration."
msgstr ""
" [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] extension লোড করা "
-"যায়নি। আপনার পিএইচপি কনফিগারেশন পরীক্ষা করুন। Cannot load [a@http://php.net/%1"
-"$s@Documentation][em]%1$s[/em][/a] extension. Please check your PHP "
+"যায়নি। আপনার পিএইচপি কনফিগারেশন পরীক্ষা করুন। Cannot load [a@http://php.net/"
+"%1$s@Documentation][em]%1$s[/em][/a] extension. Please check your PHP "
"configuration."
#: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22
@@ -2106,12 +2106,12 @@ msgstr "টেবিল এর নাম"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:202
msgid "remember template"
@@ -2314,8 +2314,8 @@ msgstr "Sort by key"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3072,44 +3072,44 @@ msgstr "Generated by"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "কোন ডাটাবেজ নাই"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "কোন ডাটাবেজ নাই"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Structure"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3907,7 +3907,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "সেভ করুন"
@@ -4123,7 +4123,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "রিসেট করুন"
@@ -4910,13 +4910,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -7820,41 +7820,41 @@ msgstr "বাইনারী -সম্পাদনা করবেন না"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Insert as new row"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "পূর্বের পাতায় ফিরে যাও"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "নতুন আরেকটি সাড়ি যোগ করুন"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "এই পাতায় ফিরে যাও"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "পরবর্তী সাড়ি সম্পাদনা করুন"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index 751eacfd9..f5ffbf402 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Pretraživanje"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -233,7 +233,7 @@ msgstr "Promjeni ime tabele u "
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -579,7 +579,7 @@ msgstr "Novi zapis"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -629,8 +629,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -826,8 +826,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1378,7 +1378,7 @@ msgstr "Komentari"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1519,8 +1519,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2087,8 +2087,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2286,8 +2286,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3026,43 +3026,43 @@ msgstr "Generirao"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Baza ne postoji"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3861,7 +3861,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Sačuvaj"
@@ -4046,7 +4046,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Resetuj"
@@ -4825,8 +4825,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
@@ -7596,41 +7596,41 @@ msgstr "Binarni - ne mijenjaj"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Unesi kao novi red"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Nazad na prethodnu stranu"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Dodaj još jedan novi red"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
#, fuzzy
msgid "Go back to this page"
msgstr "Nazad na prethodnu stranu"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index 477a40dbb..32cff4c6b 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Cerca"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Reanomena base de dades a"
msgid "Command"
msgstr "Ordre"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "i llavors"
@@ -574,7 +574,7 @@ msgstr "Insereix"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -624,8 +624,8 @@ msgstr "El seguiment no està actiu."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
@@ -816,11 +816,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
-"sdocumentació%s per trobar formes de modificar aquest límit."
+"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
+"%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
@@ -1386,7 +1386,7 @@ msgstr "Comentari"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1534,8 +1534,8 @@ msgstr "Benvingut a %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
"Podriau voler utilitzar %1$ssetup script%2$s per crear-ne un."
@@ -2113,12 +2113,12 @@ msgstr "nom de taula"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
-"cadenes de formateig de temps. A més, es faràn aquestes transformacions: %3"
-"$s. Altre text es deixarà sense variació."
+"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
msgid "remember template"
@@ -2328,8 +2328,8 @@ msgstr "Classifica per la clau"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3109,43 +3109,43 @@ msgstr "Generat per"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Vés a la base de dades"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "configuració"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Vés a la taula"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "estructura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Vés a la vista"
@@ -3845,8 +3845,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
-"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
-"sdocumentació%s."
+"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
+"%sdocumentació%s."
#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
#: libraries/tbl_links.inc.php:141
@@ -3949,7 +3949,7 @@ msgstr "Definicio de PARTICIÓ"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Desa"
@@ -4164,7 +4164,7 @@ msgid "Custom color"
msgstr "Color triat"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Reinicia"
@@ -4970,8 +4970,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
@@ -8098,43 +8098,43 @@ msgstr " Binari - no editeu "
msgid "Upload to BLOB repository"
msgstr "Puja al repositori BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Insereix com a nova fila"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Mostrant consulta SQL"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Torna"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Insereix un nou registre"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Torna a aquesta pàgina"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Edita el següent registre"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Reinicia l'inserció amb %s files"
diff --git a/po/cs.po b/po/cs.po
index 1f46b7e1f..27db04317 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,14 +5,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-08 10:43+0200\n"
"Last-Translator: Michal \n"
"Language-Team: czech \n"
+"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -66,8 +66,8 @@ msgstr "Vyhledávání"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Přejmenovat databázi na"
msgid "Command"
msgstr "Příkaz"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "a poté"
@@ -563,7 +563,7 @@ msgstr "Vložit"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -613,8 +613,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -805,8 +805,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@@ -1322,7 +1322,7 @@ msgstr "Komentář"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1468,8 +1468,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -2035,8 +2035,8 @@ msgstr "jméno tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -2247,8 +2247,8 @@ msgstr "Setřídit podle klíče"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3005,41 +3005,41 @@ msgstr "Vygeneroval"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Upravit strukturu kliknutím na odkaz \"Struktura\""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Přejít na databázi"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "nastavení"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Přejít na tabulku"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "struktura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Přejít na podhled"
@@ -3783,8 +3783,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
-"spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
+"%spopisy transformací%s"
#: libraries/tbl_properties.inc.php:145
msgid "Transformation options"
@@ -3817,8 +3817,8 @@ msgid ""
"No description is available for this transformation. Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis. Zeptejte se autora co %"
-"s dělá."
+"Pro tuto transformaci není dostupný žádný popis. Zeptejte se autora co "
+"%s dělá."
#: libraries/tbl_properties.inc.php:726 server_engines.php:58
#: tbl_operations.php:355
@@ -3831,7 +3831,7 @@ msgstr "Definice PARTITION"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Uložit"
@@ -4002,7 +4002,7 @@ msgid "Custom color"
msgstr "Vlastní barva"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Původní"
@@ -4779,8 +4779,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@@ -7054,8 +7054,9 @@ msgstr ""
"Nastavil jste typ autentizace [kbd]config[/kbd] a zadal jste uživatelské "
"jméno a heslo pro automatické přihlášení, což není doporučená volba pro "
"produkční servery. Kdokoli kdo zná URL phpMyAdminu může přímo přistoupit k "
-"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/kbd]."
+"Vašemu phpMyAdmin panelu. Nastavte [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server]typ autentizace[/a] na [kbd]cookie[/kbd] nebo [kbd]http[/"
+"kbd]."
#: setup/lib/messages.inc.php:239
msgid "You should use mysqli for performance reasons"
@@ -7807,42 +7808,42 @@ msgstr "Binární - neupravujte"
msgid "Upload to BLOB repository"
msgstr "Nahrát do skladiště BLOBů"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Vložit jako nový řádek"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Vložit jako nový řádek a ignorovat chyby"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Zobrazit dotaz pro vložení"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Návrat na předchozí stránku"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Vložit další řádek"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Návrat na tuto stránku"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Upravit následující řádek"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Začít znovu vkládání s %s řádky"
diff --git a/po/cy.po b/po/cy.po
index c4b9523a3..75cb01b56 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,14 +6,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-07 20:23+0200\n"
"Last-Translator: \n"
"Language-Team: Welsh \n"
+"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cy\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -67,8 +67,8 @@ msgstr "Chwilio"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -233,7 +233,7 @@ msgstr "Ailenwch y gronfa ddata i"
msgid "Command"
msgstr "Gorchymyn"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "ac yna"
@@ -563,7 +563,7 @@ msgstr "Mewnosod"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -613,8 +613,8 @@ msgstr "Nid yw tracio'n weithredol"
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
@@ -805,8 +805,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
@@ -1314,7 +1314,7 @@ msgstr "Sylw"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1458,11 +1458,11 @@ msgstr "Croeso i %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
-"$sgript gosod%2$s er mwyn ei chreu."
+"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
+"%1$sgript gosod%2$s er mwyn ei chreu."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -2009,8 +2009,8 @@ msgstr "enw tabl"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2210,8 +2210,8 @@ msgstr "Trefnu gan allwedd"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2927,41 +2927,41 @@ msgstr ""
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3711,7 +3711,7 @@ msgstr "Diffiniad PARTITION"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Cadw"
@@ -3845,7 +3845,7 @@ msgid "Custom color"
msgstr "Lliw cwstwm"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Ailosod"
@@ -4585,8 +4585,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7302,42 +7302,42 @@ msgstr "Deuaidd - peidiwch â golygu"
msgid "Upload to BLOB repository"
msgstr "Lanlwytho i storfa BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Mewnosod fel rhes newydd"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Dangos ymholiad mewnosod"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Dychwelyd i'r dudalen flaenorol"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Mewnosod rhes newydd arall"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Dychwelyd i'r dudalen hon"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Golygu'r rhes nesaf"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Defnyddiwch y bysell TAB i symud o un gwerth i'r llall, neu CTRL + saethau i "
"symud unrhyw le"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/da.po b/po/da.po
index ac69fd6a5..8268d75ef 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Søg"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Omdøb database til"
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "og derefter"
@@ -574,7 +574,7 @@ msgstr "Indsæt"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -624,8 +624,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -815,11 +815,11 @@ msgstr "Dump er blevet gemt i filen %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
-"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
+"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
+"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning."
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1381,7 +1381,7 @@ msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1526,8 +1526,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
@@ -2100,8 +2100,8 @@ msgstr "tabelnavn"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
@@ -2309,8 +2309,8 @@ msgstr "Sorteringsnøgle"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3056,41 +3056,41 @@ msgstr "Genereret af"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerede ingen data (fx ingen rækker)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3884,7 +3884,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Gem"
@@ -4100,7 +4100,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Nulstil"
@@ -4889,14 +4889,14 @@ msgstr "Drop databaser der har samme navne som brugernes."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs "
"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra "
"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle "
-"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
-"s før du fortsætter."
+"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne"
+"%s før du fortsætter."
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -7746,42 +7746,42 @@ msgstr " Binært - må ikke ændres "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Indsæt som ny række"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Tilbage til foregående side"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Indsæt endnu en ny række"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Gå tilbage til denne side"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Redigér næste række"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/de.po b/po/de.po
index a1cc52447..88fb85aa6 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-03 21:04+0200\n"
"Last-Translator: \n"
"Language-Team: german \n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Suche"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Datenbank umbenennen in"
msgid "Command"
msgstr "Befehl"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "und dann"
@@ -566,7 +566,7 @@ msgstr "Einfügen"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -616,11 +616,11 @@ msgstr "Tracking ist nicht aktiviert."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %"
-"sDokumentation%s."
+"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die "
+"%sDokumentation%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -809,11 +809,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
-"sDokumentation%s zur Lösung diese Problems."
+"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
+"%sDokumentation%s zur Lösung diese Problems."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1328,7 +1328,7 @@ msgstr "Kommentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1474,8 +1474,8 @@ msgstr "Willkommen bei %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt "
"haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine "
@@ -2060,8 +2060,8 @@ msgstr "Tabellen-Name"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Dieser Wert wird mit %1$sstrftime%2$s geparst, Sie können also Platzhalter "
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
@@ -2275,8 +2275,8 @@ msgstr "Nach Schlüssel sortieren"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3049,44 +3049,44 @@ msgstr "Erstellt von"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Gehe zur Datenbank"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "Einstellungen"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Gehe zur Tabelle"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "Struktur"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Gehe zum View"
@@ -3881,8 +3881,8 @@ msgid ""
"author what %s does."
msgstr ""
"Für diese Umwandlung ist keine Beschreibung verfügbar. Für weitere "
-"Informationen wenden Sie sich bitte an den Autoren der Funktion "%"
-"s"."
+"Informationen wenden Sie sich bitte an den Autoren der Funktion ""
+"%s"."
#: libraries/tbl_properties.inc.php:726 server_engines.php:58
#: tbl_operations.php:355
@@ -3895,7 +3895,7 @@ msgstr "PARTITION Definition"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Speichern"
@@ -4122,7 +4122,7 @@ msgid "Custom color"
msgstr "Benutzerdefinierte Farbe"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Zurücksetzen"
@@ -4927,8 +4927,8 @@ msgstr "Die gleichnamigen Datenbanken löschen."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-"
"Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, "
@@ -8050,42 +8050,42 @@ msgstr "Binär - nicht editierbar!"
msgid "Upload to BLOB repository"
msgstr "Zu BLOB-Repository hochladen"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Als neuen Datensatz speichern "
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Als neue Zeile einfügen und Fehler ignorieren"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Zeige insert Abfrage"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "zurück"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "anschließend einen weiteren Datensatz einfügen"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Zurück zu dieser Seite"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "nächste Zeile bearbeiten"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Einfügen mit %s Zeilen neu starten"
diff --git a/po/el.po b/po/el.po
index a98ead0ae..0248615d1 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal \n"
"Language-Team: greek \n"
+"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Αναζήτηση"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Μετονομασία βάσης δεδομένων σε"
msgid "Command"
msgstr "Εντολή"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "και μετά"
@@ -572,7 +572,7 @@ msgstr "Προσθήκη"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -622,11 +622,11 @@ msgstr "Η παρακολούθηση δεν έιναι ενεργοποιημέ
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %"
-"sτεκμηρίωση%s."
+"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
+"%sτεκμηρίωση%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -816,11 +816,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
-"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
+"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
+"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1362,7 +1362,7 @@ msgstr "Σχόλιο"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1507,8 +1507,8 @@ msgstr "Καλωσήρθατε στο %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε "
"να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα."
@@ -2086,8 +2086,8 @@ msgstr "όνομα πίνακα"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
@@ -2302,8 +2302,8 @@ msgstr "Ταξινόμηση ανά κλειδί"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3086,41 +3086,41 @@ msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
"Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:"
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»"
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Μετάβαση στη βάση δεδομένων"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "ρυθμίσεις"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Μετάβαση στον πίνακα"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "δομή"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Μετάβαση στην προβολή"
@@ -3818,8 +3818,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Ο επικυρωτής SQL δεν μπόρεσε να ενεργοποιηθεί. Παρακαλώ ελέγξτε ότι έχετε "
-"εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην %"
-"sτεκμηρίωση%s."
+"εγκαταστήσει της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην "
+"%sτεκμηρίωση%s."
#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
#: libraries/tbl_links.inc.php:141
@@ -3921,7 +3921,7 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Αποθήκευση"
@@ -4144,7 +4144,7 @@ msgid "Custom color"
msgstr "Προσαρμοσμένο χρώμα"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Επαναφορά"
@@ -4953,8 +4953,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από "
"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί "
@@ -7342,8 +7342,8 @@ msgstr ""
"Ορίζετε τον τύπο επικύρωσης [kbd]ρύθμισης[/kbd] και περιλαμβάνει όνομα "
"χρήστη και κωδικό πρόσβασης για αυτόματη σύνδεση, αν και δεν προτείνεται. "
"Όποιος γνωρίζει ή υποθέτει τη διεύθυνση URL του phpMyAdmin μπορεί να έχει "
-"άμεση πρόσβαση. Ορίστε τον [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server]τύπο επικύρωσης[/a] σε [kbd]cookie[/kbd] ή [kbd]http[/kbd]."
+"άμεση πρόσβαση. Ορίστε τον [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server]τύπο επικύρωσης[/a] σε [kbd]cookie[/kbd] ή [kbd]http[/kbd]."
#: setup/lib/messages.inc.php:239
msgid "You should use mysqli for performance reasons"
@@ -7509,8 +7509,8 @@ msgid ""
"to."
msgstr ""
"Αν νομίζετε ότι είναι απαραίτητο, χρησιμοποιήστε πρόσθετες ρυθμίσεις "
-"προστασίας - ρυθμίσεις [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server_config]επικύρωση διακομιστή[/a] και [a@?page=form&"
+"προστασίας - ρυθμίσεις [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server_config]επικύρωση διακομιστή[/a] και [a@?page=form&"
"formset=features#tab_Security]λίστα αξιόπιστων διακομιστών[/a]. Ωστόσο, η "
"βασισμένη στις ΙΡ προστασία δεν είναι αξιόπιστη αν ο πάροχός έχει χιλιάδες "
"χρήστες που συνδέονται."
@@ -8120,43 +8120,43 @@ msgstr "Δυαδικό - χωρίς δυνατότητα επεξεργασία
msgid "Upload to BLOB repository"
msgstr "Μεταφορά στην αποθήκη BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Εισαγωγή ως νέα εγγραφή"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Εισαγωγή ως νέα γραμμή και παράβλεψη σφαλμάτων"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Εμφάνιση ερωτήματος SQL"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Επιστροφή"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Εισαγωγή νέας εγγραφής"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Επιστροφή σε αυτή τη σελίδα"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Επεξεργασία επόμενης γραμμής"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για "
"μετακίνηση παντού"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Επανεκκίνηση εισαγωγής με %s εγγραφές"
@@ -8837,8 +8837,9 @@ msgstr "Μετονομασία πίνακα σε"
#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
#~ "Please check your PHP configuration."
#~ msgstr ""
-#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/%1"
-#~ "$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της PHP"
+#~ "δεν ήταν δυνατή η φόρτωση της επέκτασης [a@http://php.net/"
+#~ "%1$s@Documentation][em]%1$s[/em][/a], παρακαλώ ελέγξτε τις ρυθμίσεις της "
+#~ "PHP"
#~ msgid ""
#~ "This server is not configured as master in a replication process. Would "
@@ -8904,8 +8905,8 @@ msgstr "Μετονομασία πίνακα σε"
#~ "The "deleted" users will still be able to access the server as "
#~ "usual until the privileges are reloaded."
#~ msgstr ""
-#~ "Οι «διεγραφθέντες» χρήστες θα συνεχίσουν να έχουν πρόσβαση στον διακομιστή "
-#~ "μέχρις ότου να επαναφορτωθούν οι πίνακες δικαιωμάτων."
+#~ "Οι «διεγραφθέντες» χρήστες θα συνεχίσουν να έχουν πρόσβαση στον "
+#~ "διακομιστή μέχρις ότου να επαναφορτωθούν οι πίνακες δικαιωμάτων."
#~ msgid "Just delete the users from the privilege tables."
#~ msgstr "Απλή διαγραφή των χρηστών από τους πίνακες δικαιωμάτων."
diff --git a/po/en_GB.po b/po/en_GB.po
index 3dae75db1..075bf8a2a 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-09 10:42+0200\n"
"Last-Translator: Michal \n"
"Language-Team: english-gb \n"
+"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Search"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Rename database to"
msgid "Command"
msgstr "Command"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "and then"
@@ -560,7 +560,7 @@ msgstr "Insert"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -610,11 +610,11 @@ msgstr "Tracking is not active."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -802,11 +802,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1317,7 +1317,7 @@ msgstr "Comment"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1461,11 +1461,11 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -2025,12 +2025,12 @@ msgstr "table name"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:202
msgid "remember template"
@@ -2234,8 +2234,8 @@ msgstr "Sort by key"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2995,43 +2995,43 @@ msgstr "Generated by"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Edit its structure by following the \"Structure\" link"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Go to database"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "settings"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Go to table"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "structure"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Go to view"
@@ -3820,7 +3820,7 @@ msgstr "PARTITION definition"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Save"
@@ -3995,7 +3995,7 @@ msgid "Custom color"
msgstr "Custom colour"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Reset"
@@ -4772,13 +4772,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -7800,41 +7800,41 @@ msgstr "Binary - do not edit"
msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Insert as new row"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Insert as new row and ignore errors"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Show insert query"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Go back to previous page"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Insert another new row"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Go back to this page"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Edit next row"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Restart insertion with %s rows"
diff --git a/po/es.po b/po/es.po
index 29d460d8e..ea540c29b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal \n"
"Language-Team: spanish \n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Buscar"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Cambiar el nombre de la base de datos a"
msgid "Command"
msgstr "Comando"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "y luego"
@@ -575,7 +575,7 @@ msgstr "Insertar"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,11 +625,11 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta vista tiene al menos este número de filas. Por favor, refiérase a la %"
-"sdocumentation%s."
+"Esta vista tiene al menos este número de filas. Por favor, refiérase a la "
+"%sdocumentation%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -827,8 +827,8 @@ msgstr "Su archivo (MySQL dump) ha sido guardado con el nombre %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
"refiérase a %sdocumentation%s para hallar modos de superar esta limitante."
@@ -1399,7 +1399,7 @@ msgstr "Comentario"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1529,8 +1529,8 @@ msgstr "¡No se halló la plantilla de interfaz (theme) %s!"
#, 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!"
+"¡No se halló la ruta de la plantilla de interfaz (theme) para la plantilla "
+"%s!"
#: libraries/Theme_Manager.class.php:297 test/theme.php:161 themes.php:21
#: themes.php:41
@@ -1551,8 +1551,8 @@ msgstr "Bienvenido a %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La razón más probable es que usted no creó un archivo de configuración. "
"Utilice %1$ssetup script%2$s para crear una."
@@ -2136,8 +2136,8 @@ msgstr "nombre de la tabla"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Este valor es interpretado usando %1$sstrftime%2$s; así, usted puede usar "
"cadenas de caracteres para formatear el tiempo. De manera adicional, "
@@ -2350,8 +2350,8 @@ msgstr "Organizar según la clave"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3143,44 +3143,44 @@ msgstr "Generado por"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "No hay bases de datos"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "No hay bases de datos"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Estructura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3985,7 +3985,7 @@ msgstr "definición de la PARTICIÓN"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Grabar"
@@ -4205,7 +4205,7 @@ msgid "Custom color"
msgstr "Cambiar el color"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Reiniciar"
@@ -4325,8 +4325,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"El servidor está utilizando Suhosin. Por favor, refiérase a %sdocumentation%"
-"s para posibles ajustes."
+"El servidor está utilizando Suhosin. Por favor, refiérase a %sdocumentation"
+"%s para posibles ajustes."
#: navigation.php:66 navigation.php:67 navigation.php:70
#, fuzzy
@@ -5016,8 +5016,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de "
"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir "
@@ -8102,43 +8102,43 @@ msgstr " Binario - ¡no editar! "
msgid "Upload to BLOB repository"
msgstr "Cargar al repositorio BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Insertar como una nueva fila"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Mostrando la consulta SQL"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Volver"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Insertar un nuevo registro"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Volver a esta página"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Editar la siguiente fila"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Reinicie la inserción con %s filas"
diff --git a/po/et.po b/po/et.po
index 631dbbd7a..4f3bcf58a 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Otsi"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Nimeta andmebaas ümber"
msgid "Command"
msgstr "Käsk"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "ja siis"
@@ -575,7 +575,7 @@ msgstr "Lisa"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -824,8 +824,8 @@ msgstr "Väljavõte salvestati faili %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
@@ -1386,7 +1386,7 @@ msgstr "Kommentaarid"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1529,8 +1529,8 @@ msgstr "Tere tulemast %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid "
"kasutada %1$ssetup script%2$s et seadistada."
@@ -2103,8 +2103,8 @@ msgstr "tabeli nimi"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada "
"sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. "
@@ -2310,8 +2310,8 @@ msgstr "Sorteeri võtme järgi"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3066,44 +3066,44 @@ msgstr "Genereerija "
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Pole andmebaase"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Pole andmebaase"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktuur"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3901,7 +3901,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Salvesta"
@@ -4118,7 +4118,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Tühista"
@@ -4898,8 +4898,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges "
"tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda "
@@ -7801,43 +7801,43 @@ msgstr "Binaarne - ärge muutke"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Lisa uue reana"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Näitan SQL päringut"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Mine eelmisele lehele tagasi"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Lisa järgmine uus rida"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Mine tagasi sellele lehele"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Muuda järgmist rida"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/eu.po b/po/eu.po
index 811a61841..f152f782c 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: \n"
"Language-Team: basque \n"
+"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Bilatu"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -234,7 +234,7 @@ msgstr "Taula berrizendatu izen honetara: "
msgid "Command"
msgstr "Komandoa"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "eta orduan"
@@ -580,7 +580,7 @@ msgstr "Txertatu"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -630,8 +630,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -827,8 +827,8 @@ msgstr "Iraulketa %s fitxategian gorde da."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1381,7 +1381,7 @@ msgstr "Iruzkinak"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1522,8 +1522,8 @@ msgstr "Ongietorriak %s(e)ra"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2090,8 +2090,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2289,8 +2289,8 @@ msgstr "Gakoaren arabera ordenatu"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3031,43 +3031,43 @@ msgstr "Egilea:"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Datu-baserik ez"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Egitura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3871,7 +3871,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Gorde"
@@ -4060,7 +4060,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Reset egin"
@@ -4849,8 +4849,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren "
"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz "
@@ -7625,40 +7625,40 @@ msgstr " Binarioa - ez editatu! "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Txertatu errenkada berri batean"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Itzuli"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Erregistro berria gehitu"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Egin atzera orri honetara"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Editatu hurrengo lerroa"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 9d2afee15..daf1850c7 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \n"
"Language-Team: persian \n"
+"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -61,8 +61,8 @@ msgstr "جستجو"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "بازناميدن جدول به"
msgid "Command"
msgstr "دستور"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "و سپس"
@@ -575,7 +575,7 @@ msgstr "درج"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -819,8 +819,8 @@ msgstr ""
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1366,7 +1366,7 @@ msgstr "توضيحات"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1507,8 +1507,8 @@ msgstr "به %s خوشآمديد"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -1618,8 +1618,8 @@ msgid ""
"Either configure PHP to enable these extensions or disable charset "
"conversion in phpMyAdmin."
msgstr ""
-"بارگذاري iconv يا recode extension كه براي تبديل مجموعه كاراكترها لازم است "
-"، مقدور نميباشد، php را براي اجازه استفاده از آنها تنظيم كرده و يا تبديل "
+"بارگذاري iconv يا recode extension كه براي تبديل مجموعه كاراكترها لازم "
+"است ، مقدور نميباشد، php را براي اجازه استفاده از آنها تنظيم كرده و يا تبديل "
"مجموعه كاراكترها (charset conversion) را در phpMyAdmin غيرفعال نماييد."
#: libraries/charset_conversion.lib.php:79
@@ -2070,8 +2070,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2270,8 +2270,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3005,43 +3005,43 @@ msgstr "توليدشده توسط"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "No databases"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "ساختار"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3755,9 +3755,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'... اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
-"، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' يا 'a"
-"\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
+"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
+"يا 'a\\'b')"
#: libraries/tbl_properties.inc.php:106
msgid ""
@@ -3791,9 +3791,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'... اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
-"، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' يا 'a"
-"\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
+"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
+"يا 'a\\'b')"
#: libraries/tbl_properties.inc.php:393
#, fuzzy
@@ -3824,7 +3824,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "ذخيره"
@@ -3961,7 +3961,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Reset"
@@ -4012,8 +4012,8 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
"پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با "
-"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز ميشود "
-"، و شما بايد اين حفره امنيتي را ذرست كنيد."
+"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز "
+"ميشود ، و شما بايد اين حفره امنيتي را ذرست كنيد."
#: main.php:274
msgid ""
@@ -4725,8 +4725,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7468,40 +7468,40 @@ msgstr ""
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "درج به عنوان يك سطر جديد"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "برو به صفحه قبل"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "درج يك سطر جديد ديگر"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "برگرد به این صفحه"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "ویرایش کردن ردیف بعدی"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 90ea12eec..5f05c14d4 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
+"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Etsi"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Muuta tietokannan nimi"
msgid "Command"
msgstr "Komento"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "ja sen jälkeen"
@@ -575,7 +575,7 @@ msgstr "Lisää rivi"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,11 +625,11 @@ msgstr "Seuranta ei ole käytössä."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %"
-"sohjeista%s."
+"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
+"%sohjeista%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -818,8 +818,8 @@ msgstr "Vedos tallennettiin tiedostoon %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
@@ -1386,7 +1386,7 @@ msgstr "Kommentti"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1533,11 +1533,11 @@ msgstr "Tervetuloa, toivottaa %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1"
-"$sasetusskriptillä%2$s."
+"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston "
+"%1$sasetusskriptillä%2$s."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -2110,8 +2110,8 @@ msgstr "taulun nimi"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten "
"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat "
@@ -2324,8 +2324,8 @@ msgstr "Lajittele avaimen mukaan"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3099,42 +3099,42 @@ msgstr "Luontiympäristö"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Siirry tietokantaan"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "asetukset"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Siirry tauluun"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "rakenne"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Siirry näkymään"
@@ -3932,7 +3932,7 @@ msgstr "PARTITION-määritelmä"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Tallenna"
@@ -4152,7 +4152,7 @@ msgid "Custom color"
msgstr "Muu väri"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Nollaa"
@@ -4953,8 +4953,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen "
"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen "
@@ -8079,43 +8079,43 @@ msgstr "Binääritietoa - älä muokkaa"
msgid "Upload to BLOB repository"
msgstr "Lähetä BLOB-tietokantaan"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Lisää uutena rivinä"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Näytetään SQL-kysely"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Takaisin"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Lisää uusi rivi"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Palaa tälle sivulle"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Muokkaa seuraavaa riviä"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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."
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Aloita lisäys alusta %s rivillä"
diff --git a/po/fr.po b/po/fr.po
index 4754e6397..2f5ff8cf8 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-07-01 19:56+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: french \n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Rechercher"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Changer le nom de la base de données pour"
msgid "Command"
msgstr "Commande"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "et ensuite"
@@ -560,7 +560,7 @@ msgstr "Insérer"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -610,11 +610,11 @@ msgstr "Le suivi n'est pas activé."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à %"
-"sdocumentation%s."
+"Cette vue contient au moins ce nombre d'enregistrements. Veuillez référer à "
+"%sdocumentation%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -805,8 +805,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
@@ -1330,7 +1330,7 @@ msgstr "Commentaire"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1475,8 +1475,8 @@ msgstr "Bienvenue sur %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La raison probable est que vous n'avez pas créé de fichier de configuration. "
"Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but."
@@ -2050,8 +2050,8 @@ msgstr "nom de table"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc "
"utiliser des chaînes de format d'heure. Ces transformations additionnelles "
@@ -2260,8 +2260,8 @@ msgstr "Trier sur l'index"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3030,43 +3030,43 @@ msgstr "Généré par"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL n'a retourné aucun enregistrement."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Modifier sa structure via le lien «Structure »"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Aller à la base de données"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "réglages"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Aller à la table"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "structure"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Aller à la vue"
@@ -3859,7 +3859,7 @@ msgstr "Définition de PARTITION"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Sauvegarder"
@@ -4037,7 +4037,7 @@ msgid "Custom color"
msgstr "Couleur au choix"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Réinitialiser"
@@ -4346,8 +4346,8 @@ msgid ""
"appropriate column name."
msgstr ""
"La colonne descriptive est montrée en rose. Pour indiquer qu'une colonne est "
-"ou n'est plus la colonne descriptive, cliquer l'icône «Colonne descriptive», "
-"puis cliquer sur le nom de colonne approprié."
+"ou n'est plus la colonne descriptive, cliquer l'icône «Colonne "
+"descriptive», puis cliquer sur le nom de colonne approprié."
#: pmd_pdf.php:63
msgid "Page has been created"
@@ -4833,8 +4833,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin obtient la liste des privilèges directement à partir des "
"tables MySQL. Le contenu de ces tables peut être différent des privilèges "
@@ -7148,9 +7148,9 @@ msgstr ""
"La méthode d'authentification [kbd]config[/kbd] permet une connexion "
"automatique, ce qui n'est pas souhaitable dans un environnement réel. Toute "
"personne qui connaît l'URL d'accès peut entrer dans votre phpMyAdmin. Il est "
-"suggéré de régler votre [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server]type d'authentification[/a] à [kbd]cookie[/kbd] ou [kbd]http[/"
-"kbd]."
+"suggéré de régler votre [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server]type d'authentification[/a] à [kbd]cookie[/kbd] ou [kbd]http"
+"[/kbd]."
#: setup/lib/messages.inc.php:239
msgid "You should use mysqli for performance reasons"
@@ -7903,42 +7903,42 @@ msgstr "Binaire - ne pas éditer"
msgid "Upload to BLOB repository"
msgstr "Télécharger vers le dépôt BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Sauvegarder un nouvel enregistrement"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Sauvegarder un nouvel enregistrement (ignorer les erreurs)"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Afficher l'énoncé d'insertion"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Retourner à la page précédente"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Insérer un nouvel enregistrement"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Demeurer sur cette page"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Modifier l'enregistrement suivant"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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ù"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Recommencer l'insertion avec %s lignes"
diff --git a/po/gl.po b/po/gl.po
index 8da5a5098..b425c90f1 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -64,8 +64,8 @@ msgstr "Procurar"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Mudar o nome da base de datos para"
msgid "Command"
msgstr "Orde"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "e despois"
@@ -575,7 +575,7 @@ msgstr "Inserir"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,11 +625,11 @@ msgstr "O seguemento non está activado."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%"
-"s."
+"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
+"%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -818,11 +818,11 @@ msgstr "Gardouse o volcado no ficheiro %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
-"sdocumentación%s para averiguar como evitar este límite."
+"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a "
+"%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
@@ -1387,7 +1387,7 @@ msgstr "Comentario"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1535,8 +1535,8 @@ msgstr "Reciba a benvida a %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Isto débese, posibelmente, a que non se creou un ficheiro de configuración. "
"Tal vez queira utilizar %1$ssetup script%2$s para crear un."
@@ -2117,8 +2117,8 @@ msgstr "nome da táboa"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
"utilizar cadeas de formato de hora. Produciranse transformacións en "
@@ -2331,8 +2331,8 @@ msgstr "Ordenar pola chave"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3114,42 +3114,42 @@ msgstr "Xerado por"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Ir á base de datos"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "opcións"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Ir á táboa"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "estrutura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Ir á vista"
@@ -3953,7 +3953,7 @@ msgstr "Definición da PARTICIÓN"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Gardar"
@@ -4170,7 +4170,7 @@ msgid "Custom color"
msgstr "Cor personalizada"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Reiniciar"
@@ -4294,8 +4294,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %"
-"sdocumentation%s."
+"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na "
+"%sdocumentation%s."
#: navigation.php:66 navigation.php:67 navigation.php:70
#, fuzzy
@@ -4971,8 +4971,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas "
"de privilexios do MySQL. O contido destas táboas pode diferir dos "
@@ -8129,43 +8129,43 @@ msgstr " Binario - non editar "
msgid "Upload to BLOB repository"
msgstr "Enviar ao repositorio de BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Inserir unha columna nova"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Mostrar procura SQL"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Voltar"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Inserir un rexistro novo"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Voltar para esta páxina"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Modificar a fileira seguinte"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Reiniciar a inserción con %s fileiras"
diff --git a/po/he.po b/po/he.po
index f8d32ddf9..4c7270c91 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -60,8 +60,8 @@ msgstr "חיפוש"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -228,7 +228,7 @@ msgstr "שינוי שם מאגר נתונים אל"
msgid "Command"
msgstr "פקודה"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "ואז"
@@ -571,7 +571,7 @@ msgstr "הכנסה"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -621,8 +621,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -816,8 +816,8 @@ msgstr "הוצאה נשמרה אל קובץ %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1369,7 +1369,7 @@ msgstr "הערות"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1512,8 +1512,8 @@ msgstr "ברוך הבא אל %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2077,8 +2077,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2277,8 +2277,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3013,43 +3013,43 @@ msgstr "נוצר ע\"י"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "אין מאגרי נתונים"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "מבנה"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3827,7 +3827,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "שמירה"
@@ -3966,7 +3966,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "איפוס"
@@ -4740,8 +4740,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של "
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "
@@ -7507,40 +7507,40 @@ msgstr "בינארי - אין לערוך"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "הכנסה כשורה חדשה"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "חזרה לעמוד הקודם"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "הוספה נוספת של שורה חדשה"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "חזרה אחורה לעמוד זה"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "עריכת השורה הבאה"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index b02267f7c..26a4f0448 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-21 05:48+0200\n"
"Last-Translator: \n"
"Language-Team: hindi \n"
+"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -63,8 +63,8 @@ msgstr "खोजें"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "डेटाबेस का नाम बदल कर ____ रखे
msgid "Command"
msgstr "आदेश"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "और फिर"
@@ -568,7 +568,7 @@ msgstr "इनसर्ट"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -618,8 +618,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "इस द्रश्य में कम से कम इतनी पंक्तियाँ हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -808,8 +808,8 @@ msgstr "डंप को %s फाइल में सेव किया गय
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
"दोकुमेंताशन%s पढ़ें."
@@ -1321,7 +1321,7 @@ msgstr "टिप्पणी"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1462,11 +1462,11 @@ msgstr " %s मे स्वागत है"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
-"$s का उपयोग करें."
+"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script"
+"%2$s का उपयोग करें."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -2013,8 +2013,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2214,8 +2214,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2939,41 +2939,41 @@ msgstr ""
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3729,7 +3729,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr ""
@@ -3866,7 +3866,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr ""
@@ -4623,8 +4623,8 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7341,40 +7341,40 @@ msgstr "बइनरी - एडिट मत करिये"
msgid "Upload to BLOB repository"
msgstr "BLOB भण्डार में अपलोड करें"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "इसको नया रौ में जोडे "
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "पिछले पृष्ट पर वापस जाएँ"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "एक और नई रो सम्मिलित करें"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "इस पृष्ठ पर वापस जाएँ"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "अगली रो को संपादित करें"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index c037d7fb2..76e51b15c 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Traži"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Preimenuj bazu podataka u"
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "i potom"
@@ -576,7 +576,7 @@ msgstr "Umetni"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -626,8 +626,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
@@ -826,11 +826,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
-"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
+"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte "
+"%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
@@ -1395,7 +1395,7 @@ msgstr "Komentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1540,8 +1540,8 @@ msgstr "Dobro došli u %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete "
"upotrijebiti naredbu %1$ssetup script%2$s"
@@ -2120,8 +2120,8 @@ msgstr "naziv tablice"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti "
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
@@ -2329,8 +2329,8 @@ msgstr "Presloži po ključu"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3111,44 +3111,44 @@ msgstr "Generirano s"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Nema baza podataka"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Nema baza podataka"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Strukturu"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3946,7 +3946,7 @@ msgstr "Definicija PARTICIJE"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Spremi"
@@ -4165,7 +4165,7 @@ msgid "Custom color"
msgstr "Prilagođena boja"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Povrat"
@@ -4960,8 +4960,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL "
"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica "
@@ -7882,43 +7882,43 @@ msgstr "Binarno - ne uređuj"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Umetni kao novi redak"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Prikazivanje SQL upita"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Kreni nazad na prethodnu stranicu"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Umetni dodatni novi redak"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Kreni nazad na ovu stranicu"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Uredi sljedeći redak"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Ponovno pokreni umetanje s %s redaka"
@@ -8616,8 +8616,8 @@ msgstr "Preimenuj tablicu u"
#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
#~ "Please check your PHP configuration."
#~ msgstr ""
-#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1"
-#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
+#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]"
+#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#, fuzzy
#~ msgid "(or the local MySQL server"
diff --git a/po/hu.po b/po/hu.po
index d2d5aa78a..857fcbf7d 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Keresés"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Adatbázis átnevezése"
msgid "Command"
msgstr "Parancs"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "és utána"
@@ -574,7 +574,7 @@ msgstr "Beszúrás"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -624,11 +624,11 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %"
-"sdokumentációban%s."
+"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a "
+"%sdokumentációban%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -824,11 +824,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %"
-"sdokumentációban%s a korlátozás feloldásának."
+"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a "
+"%sdokumentációban%s a korlátozás feloldásának."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1394,7 +1394,7 @@ msgstr "Megjegyzés"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1541,11 +1541,11 @@ msgstr "Üdvözli a %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1"
-"$stelepítőszkripttel%2$s el tudja készíteni."
+"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A "
+"%1$stelepítőszkripttel%2$s el tudja készíteni."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -2125,8 +2125,8 @@ msgstr "tábla neve"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, "
"vagyis időformázó karakterláncokat használhat. A következő átalakításokra "
@@ -2336,8 +2336,8 @@ msgstr "Kulcs szerinti rendezés"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3119,43 +3119,43 @@ msgstr "Készítette"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Nincs adatbázis"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Szerkezet"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3856,8 +3856,8 @@ 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 ""
-"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %"
-"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
+"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a "
+"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
"kiterjesztést."
#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
@@ -3961,7 +3961,7 @@ msgstr "PARTITION definíció"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Mentés"
@@ -4185,7 +4185,7 @@ msgid "Custom color"
msgstr "Egyéni szín"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Törlés"
@@ -4993,13 +4993,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL "
"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által "
-"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."
+"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben "
+"%stöltse be újra a jogokat%s a folytatás előtt."
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -8114,43 +8114,43 @@ msgstr "Bináris - nem szerkeszthető"
msgid "Upload to BLOB repository"
msgstr "Feltöltés a BLOB-raktárba"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Beszúrás új sorként"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Megjelenítés SQL lekérdezésként"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Vissza az előző oldalra"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Új sor beszúrása"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Visszatérés erre az oldalra"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Következő sor szerkesztése"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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."
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Beszúrás újrakezdése %s sorral"
diff --git a/po/id.po b/po/id.po
index 8323c194c..87f1dee28 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-16 01:45+0200\n"
"Last-Translator: \n"
"Language-Team: indonesian \n"
+"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Cari"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Ubah nama database menjadi"
msgid "Command"
msgstr "Perintah"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "selanjutnya"
@@ -560,7 +560,7 @@ msgstr "Sisipkan"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -610,11 +610,11 @@ msgstr "Pelacakan tidak aktif."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %"
-"sdokumentasi%s"
+"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat "
+"%sdokumentasi%s"
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -803,11 +803,11 @@ msgstr "Dump (Skema) disimpan pada file %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
-"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
+"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat "
+"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1365,7 +1365,7 @@ msgstr "Komentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1506,8 +1506,8 @@ msgstr "Selamat Datang di %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2078,8 +2078,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2278,8 +2278,8 @@ msgstr "Urut berdasarkan kunci"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3033,43 +3033,43 @@ msgstr "Diciptakan oleh"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Database tidak ditemukan"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktur"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3867,7 +3867,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Simpan"
@@ -4068,7 +4068,7 @@ msgid "Custom color"
msgstr "Warna kustom"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Reset"
@@ -4866,8 +4866,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari "
"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil "
@@ -7648,42 +7648,42 @@ msgstr "Binari - jangan di-edit"
msgid "Upload to BLOB repository"
msgstr "Upload ke repositori BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Sisipkan sebagai baris baru"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "kembali"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "sisipkan baris baru berikutnya"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Kembali ke halaman ini"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Edit baris berikut"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/it.po b/po/it.po
index e4af5b791..d15e42f25 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-24 21:25+0200\n"
"Last-Translator: Fabio \n"
"Language-Team: italian \n"
+"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -65,8 +65,8 @@ msgstr "Cerca"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -233,7 +233,7 @@ msgstr "Rinomina il DataBase in"
msgid "Command"
msgstr "Comando"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "e quindi"
@@ -570,7 +570,7 @@ msgstr "Inserisci"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -620,8 +620,8 @@ msgstr "Il tracking non è attivo."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Questa visuale ha, come minimo, questo numero di righe. Per informazioni "
"controlla la %sdocumentazione%s."
@@ -816,8 +816,8 @@ msgstr "Il dump è stato salvato sul file %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Stai probabilmente cercando di caricare sul server un file troppo grosso. "
"Fai riferimento alla documentazione %sdocumentation%s Per i modi di aggirare "
@@ -1337,7 +1337,7 @@ msgstr "Commenti"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1482,8 +1482,8 @@ msgstr "Benvenuto in %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La ragione di questo è che probabilmente non hai creato alcun file di "
"configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno."
@@ -2057,8 +2057,8 @@ msgstr "nome tabella"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi "
"usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte "
@@ -2273,8 +2273,8 @@ msgstr "Ordina per chiave"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3053,42 +3053,42 @@ msgstr "Generato da"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Modifica la sua struttura seguendo il link \"Struttura\""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Vai al database"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "impostazioni"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Vai alla tabella"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "struttura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Vai alla visualizzazione"
@@ -3891,7 +3891,7 @@ msgstr "Definizione Partizioni"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Salva"
@@ -4112,7 +4112,7 @@ msgid "Custom color"
msgstr "Colore definito dall'utente"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Riavvia"
@@ -4236,8 +4236,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
-"sdocumentation%s per possibili problemi."
+"Sul server è in esecuzione Suhosin. Controlla la documentazione: "
+"%sdocumentation%s per possibili problemi."
#: navigation.php:66 navigation.php:67 navigation.php:70
#, fuzzy
@@ -4920,8 +4920,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella "
"dei privilegi di MySQL. Il contenuto di questa tabella può differire dai "
@@ -7857,43 +7857,43 @@ msgstr "Tipo di dato Binario - non modificare"
msgid "Upload to BLOB repository"
msgstr "Carica nella repository BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Inserisci come nuova riga"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Inserisci come nuova riga e ignora gli errori"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Mostrando la query SQL"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Indietro"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Inserisci un nuovo record"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Torna a questa pagina"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Modifica il record successivo"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Riprendi inserimento con la riga %s"
diff --git a/po/ja.po b/po/ja.po
index 284b239f4..a20de5c7c 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal \n"
"Language-Team: japanese \n"
+"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "検索"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "新しいデータベース名"
msgid "Command"
msgstr "コマンド"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "続いて"
@@ -574,7 +574,7 @@ msgstr "挿入"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -624,8 +624,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -815,8 +815,8 @@ msgstr "ダンプをファイル %s に保存しました"
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
"メント%s をご覧ください"
@@ -1380,7 +1380,7 @@ msgstr "コメント"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1523,11 +1523,11 @@ msgstr "%s へようこそ"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2"
-"$s を利用して設定ファイルを作成してください"
+"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ"
+"ト%2$s を利用して設定ファイルを作成してください"
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -2096,8 +2096,8 @@ msgstr "テーブル名"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"このテンプレートは %1$sstrftime%2$s を使って解釈されます。そのため、時間の書"
"式文字列を利用できます。また、次の変換も行われます。%3$s それ以外のテキストは"
@@ -2304,8 +2304,8 @@ msgstr "キーでソート"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3075,41 +3075,41 @@ msgstr "生成環境"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "返り値が空でした(行数0)"
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3899,7 +3899,7 @@ msgstr "パーティションの定義"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "保存する"
@@ -4114,7 +4114,7 @@ msgid "Custom color"
msgstr "カスタムカラー"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "リセット"
@@ -4900,8 +4900,8 @@ msgstr "ユーザと同名のデータベースを削除する"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手"
"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの"
@@ -7731,42 +7731,42 @@ msgstr " バイナリ - 編集不可"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "新しい行として挿入する"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "前のページに戻る"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "新しいレコードを追加する"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "このページに戻る"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "次の行を編集する"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自"
"由に移動できます"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "%s 行から挿入を再開する"
diff --git a/po/ka.po b/po/ka.po
index 686e6e817..b97413306 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "ძებნა"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Rename database to"
msgid "Command"
msgstr "ბრძანება"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "და შემდეგ"
@@ -574,7 +574,7 @@ msgstr "ჩასმა"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -624,11 +624,11 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -824,11 +824,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1391,7 +1391,7 @@ msgstr "კომენტარი"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1538,11 +1538,11 @@ msgstr "მოგესალმებათ %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -2113,12 +2113,12 @@ msgstr "ცხრილის სახელი"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:202
msgid "remember template"
@@ -2321,8 +2321,8 @@ msgstr "Sort by key"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3101,44 +3101,44 @@ msgstr "Generated by"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "მონაცემთა ბაზები არაა"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "მონაცემთა ბაზები არაა"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "სტრუქტურა"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3938,7 +3938,7 @@ msgstr "PARTITION definition"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "შენახვა"
@@ -4156,7 +4156,7 @@ msgid "Custom color"
msgstr "Custom color"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "დაბრუნება"
@@ -4954,13 +4954,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -8009,42 +8009,42 @@ msgstr "Binary - do not edit"
msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "ახალი სტრიქონის ჩამატება"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Showing SQL query"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "წინა გვერდზე დაბრუნება"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "სხვა ახალი სტრიქონის დამატება"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "ამ გვერდზე დაბრუნება"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "შემდეგი სტრიქონის რედაქტირება"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Restart insertion with %s rows"
diff --git a/po/ko.po b/po/ko.po
index 59accde3a..a45d9302c 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: \n"
"Language-Team: korean \n"
+"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -63,8 +63,8 @@ msgstr "검색"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -229,7 +229,7 @@ msgstr "데이터베이스 이름 변경"
msgid "Command"
msgstr "커맨드"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "이어서"
@@ -325,8 +325,8 @@ msgid ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
-"s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
+"%s여기를 클릭%s하십시오."
#: db_operations.php:648
msgid "Edit PDF Pages"
@@ -558,7 +558,7 @@ msgstr "삽입"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -608,8 +608,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -804,8 +804,8 @@ msgstr ""
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1316,7 +1316,7 @@ msgstr "설명(코멘트)"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1457,8 +1457,8 @@ msgstr "%s에 오셨습니다"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파"
"일을 생성할 수 있습니다."
@@ -2012,8 +2012,8 @@ msgstr "테이블명"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2212,8 +2212,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2949,43 +2949,43 @@ msgstr ""
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "결과값이 없습니다. (빈 레코드 리턴.)"
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "데이터베이스가 없습니다"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "구조"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3766,7 +3766,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "저장"
@@ -3904,7 +3904,7 @@ msgid "Custom color"
msgstr "사용자 지정 색상"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "리세트"
@@ -4675,8 +4675,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7440,41 +7440,41 @@ msgstr " 바이너리 - 편집 금지 "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "새 열을 삽입합니다"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "되돌아가기"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "새 행(레코드) 삽입하기"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
#, fuzzy
msgid "Go back to this page"
msgstr "되돌아가기"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 3b6b85bd8..7d3f7293f 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,16 +3,16 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis \n"
"Language-Team: lithuanian \n"
+"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
-"100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
+"%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -64,8 +64,8 @@ msgstr "Paieška"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Pervadinti duombazę į"
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "ir tada"
@@ -334,8 +334,8 @@ msgid ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
msgstr ""
-"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. %"
-"sPaaiškinimas%s."
+"Nėra PMA lentelių, kurios leidžia dirbti su jungtinėmis MySQL lentelėmis. "
+"%sPaaiškinimas%s."
#: db_operations.php:648
msgid "Edit PDF Pages"
@@ -576,7 +576,7 @@ msgstr "Įterpti"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -626,8 +626,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -822,8 +822,8 @@ msgstr "Duombazės atvaizdis išsaugotas faile %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1377,7 +1377,7 @@ msgstr "Komentaras"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1522,8 +1522,8 @@ msgstr "Jūs naudojate %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Turbūt dar nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų "
"skriptu%2$s, kad sukurtumėte failą."
@@ -2094,8 +2094,8 @@ msgstr "lentelės vardas"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi, galite naudoti "
"laiko formatavimo eilutes. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
@@ -2301,8 +2301,8 @@ msgstr "Rūšiuoti pagal raktą"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3049,42 +3049,42 @@ msgstr "Generavo:"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Eiti į duomenų bazę"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "nustatymai"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Eiti į lentelę"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktūra"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3880,7 +3880,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Išsaugoti"
@@ -4077,7 +4077,7 @@ msgid "Custom color"
msgstr "Pasirinkta spalva"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Atstatyti į pradinę būseną"
@@ -4865,8 +4865,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų "
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
@@ -7679,42 +7679,42 @@ msgstr "Dvejetainis - nekeisti"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Įterpti naują įrašą"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Įterpti kaip naują eilutę ir ignoruoti klaidas"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Rodoma SQL užklausa"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Sugrįžti į buvusį puslapį"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Įterpti kitą naują eilutę"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Grįžti atgal į šį puslapį"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Redaguoti kitą įrašą"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/lv.po b/po/lv.po
index 1bf3c2ac1..fcd8f451d 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Meklēt"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Pārsaukt datubāzi par"
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -575,7 +575,7 @@ msgstr "Pievienot"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -822,8 +822,8 @@ msgstr "Damps tika saglabāts failā %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1376,7 +1376,7 @@ msgstr "Komentāri"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1519,8 +1519,8 @@ msgstr "Laipni lūgti %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2090,8 +2090,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2289,8 +2289,8 @@ msgstr "Kārtot pēc atslēgas"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3029,43 +3029,43 @@ msgstr "Uzģenerēja"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Nav datubāzu"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktūra"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3858,7 +3858,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Saglabāt"
@@ -4054,7 +4054,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Atcelt"
@@ -4835,13 +4835,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL "
"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko "
-"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."
+"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams "
+"%spārlādēt privilēģijas%s pirms Jūs turpināt."
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -7613,42 +7613,42 @@ msgstr "Binārais - netiek labots"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Ievietot kā jaunu rindu"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Atgriezties atpakaļ iepriekšējā lapā"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Ievietot vēl vienu rindu"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Atgriezties šajā lapā"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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ā"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/mk.po b/po/mk.po
index 34745fd3a..d0986a253 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Пребарување"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Преименувај ја базата на податоци во"
msgid "Command"
msgstr "Наредба"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -575,7 +575,7 @@ msgstr "Нов запис"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -822,8 +822,8 @@ msgstr "Содржината на базата на податоци е сочу
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1377,7 +1377,7 @@ msgstr "Коментари"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1520,8 +1520,8 @@ msgstr "%s Добредојдовте"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2097,8 +2097,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2296,8 +2296,8 @@ msgstr "Подредување по клуч"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3055,43 +3055,43 @@ msgstr "Генерирал"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL врати празен резултат (нула записи)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Базата на податоци не постои"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Структура"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3886,7 +3886,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Сочувај"
@@ -4098,7 +4098,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Поништи"
@@ -4890,8 +4890,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL "
"табелата на привилегии. Содржината на оваа табела табела може да се "
@@ -7670,42 +7670,42 @@ msgstr "Бинарен - не менувај"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Внеси како нов запис"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Назад на претходната страница"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Додади уште еден нов запис"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Врати се на оваа страница"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Ажурирање на следниот запис"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за "
"слободно движење"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 8283b8467..c7dba42b6 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -62,8 +62,8 @@ msgstr "Хайх"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Өгөгдлийн санг д.нэрлэх нь"
msgid "Command"
msgstr "Команд"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "ба тэгээд"
@@ -573,7 +573,7 @@ msgstr "Оруулах"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -623,8 +623,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -813,8 +813,8 @@ msgstr "Асгалт %s файлд хадгалагдсан."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1362,7 +1362,7 @@ msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1505,11 +1505,11 @@ msgstr "%s-д тавтай морилно уу"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1"
-"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
+"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та "
+"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -2071,12 +2071,12 @@ msgstr "хүснэгтийн нэр"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны "
-"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %"
-"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
+"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
+"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
#: libraries/display_export.lib.php:202
msgid "remember template"
@@ -2276,8 +2276,8 @@ msgstr "Түлхүүрээр эрэмбэлэх"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3022,41 +3022,41 @@ msgstr "Үүсгэгч"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3845,7 +3845,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Хадгалах"
@@ -4041,7 +4041,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Да.эхлэх"
@@ -4814,8 +4814,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн "
"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн "
@@ -7597,42 +7597,42 @@ msgstr " Хоёртын өгөгдөл - засагдахгүй "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Шинэ мөр оруулаад"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Буцах"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Өөр шинэ мөр оруулах"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Энэ хуудас руу буцах"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Дараагийн мөрийг засах"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар "
"зөөгдөнө"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/ms.po b/po/ms.po
index 7d6ea39ff..af6c4e49b 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -60,8 +60,8 @@ msgstr "Cari"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Tukarnama jadual ke"
msgid "Command"
msgstr "Arahan"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -578,7 +578,7 @@ msgstr "Selit"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -628,8 +628,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -822,8 +822,8 @@ msgstr ""
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1376,7 +1376,7 @@ msgstr "Komen"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1517,8 +1517,8 @@ msgstr "Selamat Datang ke %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2079,8 +2079,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2278,8 +2278,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3018,43 +3018,43 @@ msgstr "Dijana oleh"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Tiada pangkalan data"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktur"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3846,7 +3846,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Simpan"
@@ -3984,7 +3984,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Ulangtetap"
@@ -4754,8 +4754,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7512,41 +7512,41 @@ msgstr "Binari - jgn diubah"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Selitkan baris baru"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Kembali ke muka sebelumnya"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Tambah baris yang baru"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
#, fuzzy
msgid "Go back to this page"
msgstr "Kembali ke muka sebelumnya"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index fc5f673a9..ca950c2d6 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-09 14:17+0200\n"
"Last-Translator: \n"
"Language-Team: norwegian \n"
+"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -63,8 +63,8 @@ msgstr "Søk"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -229,7 +229,7 @@ msgstr "Endre databasens navn til"
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "og så"
@@ -559,7 +559,7 @@ msgstr "Sett inn"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -609,8 +609,8 @@ msgstr "Overvåkning er ikke aktiv."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -800,8 +800,8 @@ msgstr "Dump har blitt lagret til fila %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
"%s for måter å omgå denne begrensningen."
@@ -1318,7 +1318,7 @@ msgstr "Kommentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1462,8 +1462,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør "
"kanskje bruke %1$ssetup script%2$s for å opprette en."
@@ -2023,8 +2023,8 @@ msgstr "tabellnavn"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
@@ -2232,8 +2232,8 @@ msgstr "Sorter etter nøkkel"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2993,44 +2993,44 @@ msgstr "Generert av"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Endre dens struktur ved å følge \"Struktur\" linken"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Gå til database"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "innstillinger"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Gå til tabell"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "struktur"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Gå til visning"
@@ -3772,8 +3772,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"For en liste over tilgjengelige transformasjonsvalg, klikk på %"
-"stransformasjonsbeskrivelser%s"
+"For en liste over tilgjengelige transformasjonsvalg, klikk på "
+"%stransformasjonsbeskrivelser%s"
#: libraries/tbl_properties.inc.php:145
msgid "Transformation options"
@@ -3820,7 +3820,7 @@ msgstr "Partisjonsdefinisjon"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Lagre"
@@ -3994,7 +3994,7 @@ msgid "Custom color"
msgstr "Egendefinert farge"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Tilbakestill"
@@ -4773,8 +4773,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL "
"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de "
@@ -7229,8 +7229,8 @@ msgid ""
"to."
msgstr ""
"Hvis du føler at dette er nødvending, så bruk ekstra "
-"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
+"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. "
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
@@ -7815,42 +7815,42 @@ msgstr " Binær - må ikke redigeres "
msgid "Upload to BLOB repository"
msgstr "Last opp til BLOB lager"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Sett inn som ny rad"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Sett inn som ny rad og ignorer feil"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Viser SQL spørring"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Returner"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Sett inn en ny post"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Tilbake til denne siden"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Rediger neste rad"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Restarte innsettinga med %s rader"
diff --git a/po/nl.po b/po/nl.po
index b86a5970c..dd381c100 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-31 01:06+0200\n"
"Last-Translator: Bjorn \n"
"Language-Team: dutch \n"
+"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -63,8 +63,8 @@ msgstr "Zoeken"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Hernoem database naar"
msgid "Command"
msgstr "Commando"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "en dan"
@@ -572,7 +572,7 @@ msgstr "Invoegen"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -622,8 +622,8 @@ msgstr "Tracking is niet actief."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
@@ -815,11 +815,11 @@ msgstr "Dump is bewaard als %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %"
-"sdocumentatie%s voor mogelijkheden om dit te omzeilen."
+"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de "
+"%sdocumentatie%s voor mogelijkheden om dit te omzeilen."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1356,7 +1356,7 @@ msgstr "Opmerking"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1504,8 +1504,8 @@ msgstr "Welkom op %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u "
"%1$ssetup script%2$s gebruiken om een te maken."
@@ -2084,8 +2084,8 @@ msgstr "tabelnaam"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het "
"gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende "
@@ -2299,8 +2299,8 @@ msgstr "Sorteren op sleutel"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3082,41 +3082,41 @@ msgstr "Gegenereerd door"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
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:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Ga naar database"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "instellingen"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Ga naar tabel"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "structuur"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Ga naar view"
@@ -3924,7 +3924,7 @@ msgstr "PARTITION definitie"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Opslaan"
@@ -4146,7 +4146,7 @@ msgid "Custom color"
msgstr "Aangepaste kleur"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Herstel"
@@ -4957,8 +4957,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL "
"privileges tabel. De content van deze tabel kan verschillen met de rechten "
@@ -8100,43 +8100,43 @@ msgstr " Binair - niet aanpassen "
msgid "Upload to BLOB repository"
msgstr "Upload naar BLOB bewaarplaats"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Voeg toe als nieuwe rij"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Toont SQL-query"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Terug"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Voeg een nieuw record toe"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Ga terug naar deze pagina"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Bewerk volgende rij"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Herstart het invoegen met %s rijen"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
old mode 100755
new mode 100644
index 64bbdff31..503ebc566
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,21 +8,22 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
-#: libraries/display_tbl.lib.php:417 server_privileges.php:1530
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
msgid "Show all"
msgstr ""
-#: browse_foreigners.php:82 libraries/common.lib.php:2326
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
#: pdf_schema.php:1139
@@ -38,15 +39,15 @@ msgstr ""
#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
#: db_structure.php:91 db_structure.php:93 db_structure.php:104
-#: db_structure.php:106 libraries/common.lib.php:2850
-#: libraries/common.lib.php:2857 libraries/db_links.inc.php:75
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
#: libraries/tbl_links.inc.php:63
msgid "Search"
msgstr ""
-#: browse_foreigners.php:153 db_operations.php:396 db_operations.php:440
-#: db_operations.php:510 db_operations.php:620 db_search.php:374
-#: db_structure.php:565 js/messages.php:53 libraries/Config.class.php:1046
+#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429
+#: db_operations.php:499 db_operations.php:609 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
#: libraries/Theme_Manager.class.php:311
#: libraries/auth/cookie.auth.lib.php:290 libraries/common.lib.php:719
#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
@@ -60,12 +61,12 @@ msgstr ""
#: libraries/sql_query_form.lib.php:552 libraries/tbl_properties.inc.php:782
#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
-#: server_privileges.php:665 server_privileges.php:1641
-#: server_privileges.php:1993 server_privileges.php:2040
-#: server_privileges.php:2080 server_replication.php:235
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -94,7 +95,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:49 db_operations.php:389
+#: db_datadict.php:49 db_operations.php:378
msgid "Database comment: "
msgstr ""
@@ -135,7 +136,7 @@ msgstr ""
msgid "Null"
msgstr ""
-#: db_datadict.php:178 db_structure.php:499 libraries/export/htmlword.php:247
+#: 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/tbl_properties.inc.php:106
#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145
@@ -159,7 +160,7 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:267 js/messages.php:72 libraries/Index.class.php:359
+#: 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/mult_submits.inc.php:263
@@ -170,7 +171,7 @@ msgstr ""
msgid "No"
msgstr ""
-#: db_datadict.php:267 js/messages.php:71 libraries/Index.class.php:360
+#: 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/mult_submits.inc.php:45
@@ -200,37 +201,37 @@ msgstr ""
msgid "No tables found in database."
msgstr ""
-#: db_export.php:43 db_search.php:356 server_export.php:27
+#: db_export.php:43 db_search.php:344 server_export.php:27
msgid "Select All"
msgstr ""
-#: db_export.php:45 db_search.php:359 server_export.php:29
+#: db_export.php:45 db_search.php:347 server_export.php:29
msgid "Unselect All"
msgstr ""
-#: db_operations.php:43 tbl_create.php:54
+#: db_operations.php:38 tbl_create.php:54
msgid "The database name is empty!"
msgstr ""
-#: db_operations.php:241
+#: db_operations.php:236
#, possible-php-format
msgid "Database %s has been renamed to %s"
msgstr ""
-#: db_operations.php:245
+#: db_operations.php:240
#, possible-php-format
msgid "Database %s has been copied to %s"
msgstr ""
-#: db_operations.php:423
+#: db_operations.php:412
msgid "Rename database to"
msgstr ""
-#: db_operations.php:428 server_processlist.php:57
+#: db_operations.php:417 server_processlist.php:57
msgid "Command"
msgstr ""
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -238,80 +239,80 @@ msgstr ""
msgid "Copy database to"
msgstr ""
-#: db_operations.php:473 tbl_operations.php:528 tbl_tracking.php:388
+#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388
msgid "Structure only"
msgstr ""
-#: db_operations.php:474 tbl_operations.php:529 tbl_tracking.php:390
+#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390
msgid "Structure and data"
msgstr ""
-#: db_operations.php:475 tbl_operations.php:530 tbl_tracking.php:389
+#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389
msgid "Data only"
msgstr ""
-#: db_operations.php:483
+#: db_operations.php:472
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:486 libraries/export/sql.php:52
+#: db_operations.php:475 libraries/export/sql.php:52
#: libraries/export/sql.php:74 libraries/export/sql.php:76
#: libraries/export/sql.php:82 tbl_operations.php:536
#, possible-php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:490 libraries/export/sql.php:78 tbl_operations.php:299
+#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299
#: tbl_operations.php:538
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:494 tbl_operations.php:545
+#: db_operations.php:483 tbl_operations.php:545
msgid "Add constraints"
msgstr ""
-#: db_operations.php:507
+#: db_operations.php:496
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:548
+#: db_operations.php:537
msgid "BLOB Repository"
msgstr ""
-#: db_operations.php:551 db_tracking.php:76 libraries/common.lib.php:1361
-#: libraries/server_links.inc.php:50 server_processlist.php:59
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
+#: libraries/server_links.inc.php:49 server_processlist.php:59
#: tbl_tracking.php:596 test/theme.php:101
msgid "Status"
msgstr ""
-#: db_operations.php:559
+#: db_operations.php:548
msgctxt "BLOB repository"
msgid "Enabled"
msgstr ""
-#: db_operations.php:563
+#: db_operations.php:552
msgid "Disable"
msgstr ""
-#: db_operations.php:573
+#: db_operations.php:562
msgid "Damaged"
msgstr ""
-#: db_operations.php:577
+#: db_operations.php:566
msgctxt "BLOB repository"
msgid "Repair"
msgstr ""
-#: db_operations.php:585
+#: db_operations.php:574
msgctxt "BLOB repository"
msgid "Disabled"
msgstr ""
-#: db_operations.php:589
+#: db_operations.php:578
msgid "Enable"
msgstr ""
-#: db_operations.php:613 libraries/Index.class.php:448
+#: db_operations.php:602 libraries/Index.class.php:448
#: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107
#: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730
#: server_collations.php:54 server_collations.php:66 server_databases.php:111
@@ -320,21 +321,21 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:626 main.php:316 pdf_schema.php:34
+#: db_operations.php:615 main.php:316 pdf_schema.php:34
#, possible-php-format
msgid ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
msgstr ""
-#: db_operations.php:659
+#: db_operations.php:648
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:130 pdf_pages.php:424 server_privileges.php:1687
-#: server_privileges.php:1743 server_privileges.php:2007
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
#: test/theme.php:75
msgid "Table"
@@ -351,7 +352,7 @@ msgstr ""
msgid "Size"
msgstr ""
-#: db_printview.php:162 db_structure.php:455 libraries/export/sql.php:559
+#: db_printview.php:162 db_structure.php:457 libraries/export/sql.php:559
#: libraries/export/sql.php:899
msgid "in use"
msgstr ""
@@ -374,7 +375,7 @@ msgstr ""
msgid "Last check"
msgstr ""
-#: db_printview.php:222 db_structure.php:478
+#: db_printview.php:222 db_structure.php:480
#, possible-php-format
msgid "%s table"
msgid_plural "%s tables"
@@ -464,120 +465,120 @@ msgstr ""
msgid "SQL query on database %s:"
msgstr ""
-#: db_qbe.php:934 libraries/common.lib.php:1228
+#: db_qbe.php:934 libraries/common.lib.php:1225
msgid "Submit Query"
msgstr ""
-#: db_search.php:71 libraries/auth/config.auth.lib.php:84
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
#: libraries/auth/config.auth.lib.php:103
#: libraries/auth/cookie.auth.lib.php:671 libraries/auth/http.auth.lib.php:52
#: libraries/auth/signon.auth.lib.php:183
msgid "Access denied"
msgstr ""
-#: db_search.php:83 db_search.php:323
+#: db_search.php:80 db_search.php:311
msgid "at least one of the words"
msgstr ""
-#: db_search.php:84 db_search.php:324
+#: db_search.php:81 db_search.php:312
msgid "all words"
msgstr ""
-#: db_search.php:85 db_search.php:325
+#: db_search.php:82 db_search.php:313
msgid "the exact phrase"
msgstr ""
-#: db_search.php:86 db_search.php:326
+#: db_search.php:83 db_search.php:314
msgid "as regular expression"
msgstr ""
-#: db_search.php:248
+#: db_search.php:242
#, possible-php-format
msgid "Search results for \"%s\" %s:"
msgstr ""
-#: db_search.php:266
+#: db_search.php:260
#, possible-php-format
msgid "%s match(es) inside table %s"
msgstr ""
-#: db_search.php:273 db_structure.php:77 db_structure.php:78
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
#: db_structure.php:90 db_structure.php:92 db_structure.php:103
-#: db_structure.php:105 libraries/common.lib.php:2852
+#: db_structure.php:105 libraries/common.lib.php:2833
#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
-#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:465
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
msgid "Browse"
msgstr ""
-#: db_search.php:278 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:473
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
#: pdf_pages.php:286 pdf_pages.php:425 pdf_pages.php:461 pdf_pages.php:489
#: pmd_general.php:377 setup/frames/index.inc.php:125
#: setup/frames/index.inc.php:216 tbl_row_action.php:63
msgid "Delete"
msgstr ""
-#: db_search.php:291
+#: db_search.php:285
#, possible-php-format
msgid "Total: %s match(es)"
msgstr ""
-#: db_search.php:311
+#: db_search.php:299
msgid "Search in database"
msgstr ""
-#: db_search.php:314
+#: db_search.php:302
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgstr ""
-#: db_search.php:319
+#: db_search.php:307
msgid "Find:"
msgstr ""
-#: db_search.php:323 db_search.php:324
+#: db_search.php:311 db_search.php:312
msgid "Words are separated by a space character (\" \")."
msgstr ""
-#: db_search.php:337
+#: db_search.php:325
msgid "Inside table(s):"
msgstr ""
-#: db_search.php:367
+#: db_search.php:355
msgid "Inside column:"
msgstr ""
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
-#: libraries/common.lib.php:2851 libraries/sql_query_form.lib.php:337
-#: libraries/sql_query_form.lib.php:340 libraries/tbl_links.inc.php:76
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
+#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
msgid "Insert"
msgstr ""
#: db_structure.php:83 db_structure.php:96 db_structure.php:109
-#: libraries/common.lib.php:2848 libraries/common.lib.php:2855
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
-#: server_privileges.php:594 server_replication.php:315 tbl_tracking.php:269
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
msgstr ""
#: db_structure.php:84 db_structure.php:85 db_structure.php:97
#: db_structure.php:98 db_structure.php:110 db_structure.php:111
-#: db_structure.php:543 db_structure.php:544 db_tracking.php:91
-#: libraries/Index.class.php:483 libraries/common.lib.php:1666
+#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
-#: tbl_structure.php:152 tbl_structure.php:469
+#: tbl_structure.php:152 tbl_structure.php:471
msgid "Drop"
msgstr ""
#: db_structure.php:86 db_structure.php:87 db_structure.php:99
#: db_structure.php:100 db_structure.php:112 db_structure.php:113
-#: db_structure.php:541 db_structure.php:542 libraries/common.lib.php:1665
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
msgid "Empty"
msgstr ""
@@ -587,62 +588,62 @@ msgstr ""
msgid "Table %s has been emptied"
msgstr ""
-#: db_structure.php:325 libraries/tbl_links.inc.php:133
+#: db_structure.php:326 libraries/tbl_links.inc.php:133
#, possible-php-format
msgid "View %s has been dropped"
msgstr ""
-#: db_structure.php:325 libraries/tbl_links.inc.php:133
+#: db_structure.php:326 libraries/tbl_links.inc.php:133
#, possible-php-format
msgid "Table %s has been dropped"
msgstr ""
-#: db_structure.php:332
+#: db_structure.php:333
msgid "Tracking is active."
msgstr ""
-#: db_structure.php:334
+#: db_structure.php:335
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:418 libraries/display_tbl.lib.php:1944
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, possible-php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-#: db_structure.php:432 db_structure.php:446 libraries/header.inc.php:130
+#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
msgid "View"
msgstr ""
-#: db_structure.php:483 libraries/db_structure.lib.php:49
-#: libraries/server_links.inc.php:71 server_replication.php:33
+#: db_structure.php:485 libraries/db_structure.lib.php:49
+#: libraries/server_links.inc.php:70 server_replication.php:33
#: server_replication.php:164 server_status.php:369
msgid "Replication"
msgstr ""
-#: db_structure.php:487
+#: db_structure.php:489
msgid "Sum"
msgstr ""
-#: db_structure.php:494 libraries/StorageEngine.class.php:356
+#: db_structure.php:496 libraries/StorageEngine.class.php:356
#, possible-php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
-#: db_structure.php:522 db_structure.php:539 db_structure.php:540
+#: db_structure.php:524 db_structure.php:541 db_structure.php:542
#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/mult_submits.inc.php:16 server_databases.php:346
-#: server_databases.php:351 server_privileges.php:1613 tbl_structure.php:453
-#: tbl_structure.php:462
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
+#: tbl_structure.php:464
msgid "With selected:"
msgstr ""
-#: db_structure.php:525 libraries/display_tbl.lib.php:2076
-#: server_databases.php:348 server_privileges.php:570
-#: server_privileges.php:1616 tbl_structure.php:456
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
msgid "Check All"
msgstr ""
@@ -652,46 +653,46 @@ msgstr ""
msgid "Uncheck All"
msgstr ""
-#: db_structure.php:534
+#: db_structure.php:536
msgid "Check tables having overhead"
msgstr ""
-#: db_structure.php:545 db_structure.php:546 db_structure.php:597
+#: db_structure.php:547 db_structure.php:548 db_structure.php:599
#: libraries/display_tbl.lib.php:2180 libraries/mult_submits.inc.php:28
-#: tbl_structure.php:490 tbl_structure.php:492
+#: tbl_structure.php:492 tbl_structure.php:494
msgid "Print view"
msgstr ""
-#: db_structure.php:547 db_structure.php:548 libraries/mult_submits.inc.php:42
+#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42
#: tbl_operations.php:581
msgid "Check table"
msgstr ""
-#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:47
-#: tbl_operations.php:621 tbl_structure.php:707 tbl_structure.php:709
+#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47
+#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711
msgid "Optimize table"
msgstr ""
-#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:52
+#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52
#: tbl_operations.php:611
msgid "Repair table"
msgstr ""
-#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:57
+#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57
#: tbl_operations.php:601
msgid "Analyze table"
msgstr ""
-#: db_structure.php:555 db_structure.php:556 libraries/db_links.inc.php:71
+#: 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/mult_submits.inc.php:62
-#: libraries/server_links.inc.php:85 libraries/tbl_links.inc.php:82
-#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1391
+#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
msgid "Export"
msgstr ""
-#: db_structure.php:604 libraries/display_pdf_schema.lib.php:44
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
msgid "Data Dictionary"
msgstr ""
@@ -702,10 +703,10 @@ msgstr ""
#: db_tracking.php:71 libraries/export/htmlword.php:86
#: libraries/export/latex.php:148 libraries/export/odt.php:113
#: libraries/export/sql.php:342 libraries/export/texytext.php:84
-#: libraries/export/xml.php:255 libraries/header.inc.php:110
+#: libraries/export/xml.php:255 libraries/header.inc.php:106
#: libraries/header_printview.inc.php:58 server_databases.php:169
-#: server_privileges.php:1682 server_privileges.php:1743
-#: server_privileges.php:2001 server_processlist.php:56
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
#: server_synchronize.php:1179 server_synchronize.php:1183
#: tbl_tracking.php:591 test/theme.php:65
msgid "Database"
@@ -725,8 +726,8 @@ msgstr ""
#: db_tracking.php:77 libraries/Index.class.php:440
#: libraries/db_structure.lib.php:53 server_databases.php:203
-#: server_privileges.php:1559 server_privileges.php:1747
-#: server_privileges.php:2096 tbl_structure.php:187
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
msgid "Action"
msgstr ""
@@ -760,8 +761,8 @@ msgstr ""
msgid "Untracked tables"
msgstr ""
-#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:526
-#: tbl_structure.php:528
+#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528
+#: tbl_structure.php:530
msgid "Track table"
msgstr ""
@@ -797,8 +798,8 @@ msgstr ""
#: import.php:60
#, possible-php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -834,7 +835,7 @@ msgstr ""
msgid "Showing bookmark"
msgstr ""
-#: import.php:403 sql.php:654
+#: import.php:403 sql.php:626
#, possible-php-format
msgid "Bookmark %s created"
msgstr ""
@@ -913,155 +914,79 @@ msgstr ""
msgid "The user name is empty!"
msgstr ""
-#: js/messages.php:44 server_privileges.php:1237 user_password.php:70
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
msgid "The password is empty!"
msgstr ""
-#: js/messages.php:45 server_privileges.php:1235 user_password.php:73
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
msgid "The passwords aren't the same!"
msgstr ""
-#: js/messages.php:46
-msgid "Add a New User"
-msgstr ""
-
-#: js/messages.php:47
-msgid "Create User"
-msgstr ""
-
-#: js/messages.php:48
-msgid "Reloading Privileges"
-msgstr ""
-
-#: js/messages.php:49
-msgid "Removing Selected Users"
-msgstr ""
-
-#: js/messages.php:50 tbl_tracking.php:251 tbl_tracking.php:379
-msgid "Close"
-msgstr ""
-
-#: js/messages.php:54 pmd_general.php:342 pmd_general.php:379
+#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379
msgid "Cancel"
msgstr ""
-#: js/messages.php:57
-msgid "Loading"
-msgstr ""
-
-#: js/messages.php:58
-msgid "Processing Request"
-msgstr ""
-
-#: js/messages.php:59
-msgid "Error in Processing Request"
-msgstr ""
-
-#: js/messages.php:60
-msgid "Dropping Column"
-msgstr ""
-
-#: js/messages.php:61
-msgid "Adding Primary Key"
-msgstr ""
-
-#: js/messages.php:62 libraries/relation.lib.php:99 pmd_general.php:340
-msgid "OK"
-msgstr ""
-
-#: js/messages.php:65
-msgid "Renaming Databases"
-msgstr ""
-
-#: js/messages.php:66
-msgid "Reload Database"
-msgstr ""
-
-#: js/messages.php:67
-msgid "Copying Database"
-msgstr ""
-
-#: js/messages.php:68
-msgid "Changing Charset"
-msgstr ""
-
-#: js/messages.php:69
-msgid "Table must have atleast 1 column"
-msgstr ""
-
-#: js/messages.php:70
-msgid "Create Table"
-msgstr ""
-
-#: js/messages.php:75
-msgid "Searching"
-msgstr ""
-
-#: js/messages.php:78
-msgid "Toggle Query Box Visibility"
-msgstr ""
-
-#: js/messages.php:81 pmd_save_pos.php:54
+#: js/messages.php:52 pmd_save_pos.php:54
msgid "Modifications have been saved"
msgstr ""
-#: js/messages.php:82 pmd_relation_upd.php:49
+#: js/messages.php:53 pmd_relation_upd.php:49
msgid "Relation deleted"
msgstr ""
-#: js/messages.php:83 pmd_relation_new.php:64
+#: js/messages.php:54 pmd_relation_new.php:64
msgid "FOREIGN KEY relation added"
msgstr ""
-#: js/messages.php:84 pmd_relation_new.php:86
+#: js/messages.php:55 pmd_relation_new.php:86
msgid "Internal relation added"
msgstr ""
-#: js/messages.php:85 pmd_relation_new.php:63 pmd_relation_new.php:88
+#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88
msgid "Error: Relation not added."
msgstr ""
-#: js/messages.php:86 pmd_relation_new.php:31
+#: js/messages.php:57 pmd_relation_new.php:31
msgid "Error: relation already exists."
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:58
msgid "Error saving coordinates for Designer."
msgstr ""
-#: js/messages.php:88 libraries/relation.lib.php:107
+#: js/messages.php:59 libraries/relation.lib.php:107
#: libraries/relation.lib.php:119
msgid "General relation features"
msgstr ""
-#: js/messages.php:88 libraries/relation.lib.php:101
+#: js/messages.php:59 libraries/relation.lib.php:101
#: libraries/relation.lib.php:108
msgid "Disabled"
msgstr ""
-#: js/messages.php:89
+#: js/messages.php:60
msgid "Select referenced key"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:61
msgid "Select Foreign Key"
msgstr ""
-#: js/messages.php:91
+#: js/messages.php:62
msgid "Please select the primary key or a unique key"
msgstr ""
-#: js/messages.php:92 pmd_general.php:77 tbl_relation.php:548
+#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548
msgid "Choose column to display"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:102
+#: js/messages.php:73
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:104
+#: js/messages.php:75
msgid "Prev"
msgstr ""
@@ -1074,231 +999,231 @@ msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:108
+#: js/messages.php:79
msgid "Today"
msgstr ""
-#: js/messages.php:111
+#: js/messages.php:82
msgid "January"
msgstr ""
-#: js/messages.php:112
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:113
+#: js/messages.php:84
msgid "March"
msgstr ""
-#: js/messages.php:114
+#: js/messages.php:85
msgid "April"
msgstr ""
-#: js/messages.php:115
+#: js/messages.php:86
msgid "May"
msgstr ""
-#: js/messages.php:116
+#: js/messages.php:87
msgid "June"
msgstr ""
-#: js/messages.php:117
+#: js/messages.php:88
msgid "July"
msgstr ""
-#: js/messages.php:118
+#: js/messages.php:89
msgid "August"
msgstr ""
-#: js/messages.php:119
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:120
+#: js/messages.php:91
msgid "October"
msgstr ""
-#: js/messages.php:121
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:126 libraries/common.lib.php:1566
+#: js/messages.php:97 libraries/common.lib.php:1557
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:128 libraries/common.lib.php:1568
+#: js/messages.php:99 libraries/common.lib.php:1559
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:130 libraries/common.lib.php:1570
+#: js/messages.php:101 libraries/common.lib.php:1561
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:132 libraries/common.lib.php:1572
+#: js/messages.php:103 libraries/common.lib.php:1563
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:134 libraries/common.lib.php:1574
+#: js/messages.php:105 libraries/common.lib.php:1565
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:136 libraries/common.lib.php:1576
+#: js/messages.php:107 libraries/common.lib.php:1567
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:138 libraries/common.lib.php:1578
+#: js/messages.php:109 libraries/common.lib.php:1569
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:140 libraries/common.lib.php:1580
+#: js/messages.php:111 libraries/common.lib.php:1571
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:142 libraries/common.lib.php:1582
+#: js/messages.php:113 libraries/common.lib.php:1573
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:144 libraries/common.lib.php:1584
+#: js/messages.php:115 libraries/common.lib.php:1575
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:146 libraries/common.lib.php:1586
+#: js/messages.php:117 libraries/common.lib.php:1577
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:148 libraries/common.lib.php:1588
+#: js/messages.php:119 libraries/common.lib.php:1579
msgid "Dec"
msgstr ""
-#: js/messages.php:151
+#: js/messages.php:122
msgid "Sunday"
msgstr ""
-#: js/messages.php:152
+#: js/messages.php:123
msgid "Monday"
msgstr ""
-#: js/messages.php:153
+#: js/messages.php:124
msgid "Tuesday"
msgstr ""
-#: js/messages.php:154
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:155
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:156
+#: js/messages.php:127
msgid "Friday"
msgstr ""
-#: js/messages.php:157
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:161 libraries/common.lib.php:1591
+#: js/messages.php:132 libraries/common.lib.php:1582
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:163 libraries/common.lib.php:1593
+#: js/messages.php:134 libraries/common.lib.php:1584
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:165 libraries/common.lib.php:1595
+#: js/messages.php:136 libraries/common.lib.php:1586
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:167 libraries/common.lib.php:1597
+#: js/messages.php:138 libraries/common.lib.php:1588
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:169 libraries/common.lib.php:1599
+#: js/messages.php:140 libraries/common.lib.php:1590
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:171 libraries/common.lib.php:1601
+#: js/messages.php:142 libraries/common.lib.php:1592
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:173 libraries/common.lib.php:1603
+#: js/messages.php:144 libraries/common.lib.php:1594
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:177
+#: js/messages.php:148
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:179
+#: js/messages.php:150
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:181
+#: js/messages.php:152
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:183
+#: js/messages.php:154
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:185
+#: js/messages.php:156
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:187
+#: js/messages.php:158
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:189
+#: js/messages.php:160
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:191
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:193
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:194
+#: js/messages.php:165
msgid "Minute"
msgstr ""
-#: js/messages.php:195
+#: js/messages.php:166
msgid "Second"
msgstr ""
@@ -1353,7 +1278,7 @@ msgstr ""
#: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103
#: libraries/tbl_properties.inc.php:519 tbl_structure.php:33
-#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:472
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474
#: tbl_tracking.php:322
msgid "Unique"
msgstr ""
@@ -1371,8 +1296,8 @@ msgid "Comment"
msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
-#: libraries/common.lib.php:1204 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1394,8 +1319,8 @@ msgid ""
"removed."
msgstr ""
-#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:42
-#: server_databases.php:88 server_privileges.php:1682
+#: libraries/List_Database.class.php:431 libraries/server_links.inc.php:41
+#: server_databases.php:88 server_privileges.php:1660
#: setup/lib/messages.inc.php:110 test/theme.php:93
msgid "Databases"
msgstr ""
@@ -1513,8 +1438,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:107
#, possible-php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -1699,7 +1624,7 @@ msgstr ""
#: 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/relation.lib.php:97
-#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:457
+#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
#: main.php:229 setup/lib/FormDisplay.tpl.php:124
msgid "Documentation"
msgstr ""
@@ -1713,136 +1638,136 @@ msgstr ""
msgid "MySQL said: "
msgstr ""
-#: libraries/common.lib.php:1180 setup/lib/messages.inc.php:353
+#: libraries/common.lib.php:1177 setup/lib/messages.inc.php:353
msgid "Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1183
+#: libraries/common.lib.php:1180
msgid "Skip Explain SQL"
msgstr ""
-#: libraries/common.lib.php:1217
+#: libraries/common.lib.php:1214
msgid "Without PHP Code"
msgstr ""
-#: libraries/common.lib.php:1220 setup/lib/messages.inc.php:355
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
msgid "Create PHP Code"
msgstr ""
-#: libraries/common.lib.php:1238 server_status.php:452
+#: libraries/common.lib.php:1235 server_status.php:452
#: setup/lib/messages.inc.php:354
msgid "Refresh"
msgstr ""
-#: libraries/common.lib.php:1247
+#: libraries/common.lib.php:1244
msgid "Skip Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1250 setup/lib/messages.inc.php:356 sql.php:527
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
msgid "Validate SQL"
msgstr ""
-#: libraries/common.lib.php:1281
+#: libraries/common.lib.php:1278
msgid "Inline edit of this query"
msgstr ""
-#: libraries/common.lib.php:1283
+#: libraries/common.lib.php:1280
msgid "Inline"
msgstr ""
-#: libraries/common.lib.php:1343 libraries/common.lib.php:1358
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
msgid "Profiling"
msgstr ""
-#: libraries/common.lib.php:1362 libraries/tbl_triggers.lib.php:28
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
#: server_processlist.php:58
msgid "Time"
msgstr ""
#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
-#: libraries/common.lib.php:1390
+#: libraries/common.lib.php:1381
msgid "B"
msgstr ""
-#: libraries/common.lib.php:1390
+#: libraries/common.lib.php:1381
msgid "KiB"
msgstr ""
-#: libraries/common.lib.php:1390
+#: libraries/common.lib.php:1381
msgid "MiB"
msgstr ""
-#: libraries/common.lib.php:1390
+#: libraries/common.lib.php:1381
msgid "GiB"
msgstr ""
-#: libraries/common.lib.php:1390
+#: libraries/common.lib.php:1381
msgid "TiB"
msgstr ""
-#: libraries/common.lib.php:1390
+#: libraries/common.lib.php:1381
msgid "PiB"
msgstr ""
-#: libraries/common.lib.php:1390
+#: libraries/common.lib.php:1381
msgid "EiB"
msgstr ""
#. l10n: Thousands separator
-#: libraries/common.lib.php:1428
+#: libraries/common.lib.php:1419
msgid ","
msgstr ""
#. l10n: Decimal separator
-#: libraries/common.lib.php:1430
+#: libraries/common.lib.php:1421
msgid "."
msgstr ""
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
-#: libraries/common.lib.php:1607
+#: libraries/common.lib.php:1598
#: libraries/transformations/text_plain__dateformat.inc.php:34
msgid "%B %d, %Y at %I:%M %p"
msgstr ""
-#: libraries/common.lib.php:1920
+#: libraries/common.lib.php:1907
#, possible-php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
-#: libraries/common.lib.php:2335 libraries/common.lib.php:2338
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
#: libraries/display_tbl.lib.php:290 server_status.php:719
msgid "Begin"
msgstr ""
-#: libraries/common.lib.php:2336 libraries/common.lib.php:2339
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
#: libraries/display_tbl.lib.php:291 server_binlog.php:168
#: server_binlog.php:170
msgid "Previous"
msgstr ""
-#: libraries/common.lib.php:2367 libraries/common.lib.php:2370
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
#: libraries/display_tbl.lib.php:353
msgid "End"
msgstr ""
-#: libraries/common.lib.php:2443
+#: libraries/common.lib.php:2430
#, possible-php-format
msgid "Jump to database "%s"."
msgstr ""
-#: libraries/common.lib.php:2463
+#: libraries/common.lib.php:2450
#, possible-php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
-#: libraries/common.lib.php:2849 libraries/common.lib.php:2856
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
-#: libraries/import/sql.php:18 libraries/server_links.inc.php:46
+#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
-#: libraries/common.lib.php:2858 libraries/db_links.inc.php:104
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
#: view_operations.php:89
msgid "Operations"
@@ -1861,7 +1786,7 @@ msgid "Events"
msgstr ""
#: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41
-#: libraries/display_create_table.lib.php:52 libraries/tbl_triggers.lib.php:27
+#: libraries/display_create_table.lib.php:53 libraries/tbl_triggers.lib.php:27
#: setup/frames/index.inc.php:112
msgid "Name"
msgstr ""
@@ -1889,15 +1814,15 @@ msgstr ""
msgid "Designer"
msgstr ""
-#: libraries/db_links.inc.php:98 libraries/server_links.inc.php:89
+#: libraries/db_links.inc.php:98 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:111 libraries/server_links.inc.php:67
-#: server_privileges.php:112 server_privileges.php:1744
-#: server_privileges.php:2094 test/theme.php:117
+#: libraries/db_links.inc.php:111 libraries/server_links.inc.php:66
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1933,7 +1858,7 @@ msgstr ""
msgid "(or the local MySQL server's socket is not correctly configured)"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:606
+#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608
msgid "Details..."
msgstr ""
@@ -1989,17 +1914,21 @@ msgstr ""
msgid "Create"
msgstr ""
-#: libraries/display_create_database.lib.php:40 server_privileges.php:114
-#: server_privileges.php:1441 server_replication.php:35
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
msgid "No Privileges"
msgstr ""
-#: libraries/display_create_table.lib.php:47
+#: libraries/display_create_table.lib.php:41
+msgid "Table must have at least one column."
+msgstr ""
+
+#: libraries/display_create_table.lib.php:48
#, possible-php-format
msgid "Create table on database %s"
msgstr ""
-#: libraries/display_create_table.lib.php:56
+#: libraries/display_create_table.lib.php:57
msgid "Number of columns"
msgstr ""
@@ -2049,8 +1978,8 @@ msgstr ""
#, possible-php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2069,7 +1998,7 @@ msgstr ""
#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196
#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:530
#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
-#: server_privileges.php:1897 server_processlist.php:75
+#: server_privileges.php:1875 server_processlist.php:75
msgid "None"
msgstr ""
@@ -2246,8 +2175,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2319,14 +2248,14 @@ msgstr ""
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:1970 sql.php:533
+#: libraries/display_tbl.lib.php:1970 sql.php:524
#, possible-php-format
msgid "Query took %01.4f sec"
msgstr ""
#: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113
#: querywindow.php:125 querywindow.php:129 querywindow.php:132
-#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:468
+#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470
msgid "Change"
msgstr ""
@@ -2946,7 +2875,7 @@ msgstr ""
msgid "Open new phpMyAdmin window"
msgstr ""
-#: libraries/header.inc.php:119
+#: libraries/header.inc.php:115
msgid "New table"
msgstr ""
@@ -2958,46 +2887,46 @@ msgstr ""
msgid "Generated by"
msgstr ""
-#: libraries/import.lib.php:152 sql.php:529 tbl_change.php:181
+#: libraries/import.lib.php:152 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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3101,20 +3030,20 @@ msgstr ""
#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
-#: tbl_structure.php:471
+#: tbl_structure.php:473
msgid "Primary"
msgstr ""
#: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116
#: libraries/tbl_properties.inc.php:525 tbl_printview.php:325
#: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158
-#: tbl_structure.php:473 tbl_structure.php:671
+#: tbl_structure.php:475 tbl_structure.php:673
msgid "Index"
msgstr ""
#: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531
#: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160
-#: tbl_structure.php:476
+#: tbl_structure.php:478
msgid "Fulltext"
msgstr ""
@@ -3339,6 +3268,10 @@ msgstr ""
msgid "not OK"
msgstr ""
+#: libraries/relation.lib.php:99 pmd_general.php:340
+msgid "OK"
+msgstr ""
+
#: libraries/relation.lib.php:100
msgid "Enabled"
msgstr ""
@@ -3360,7 +3293,7 @@ msgid ""
"Please see the documentation on how to update your column_comments table"
msgstr ""
-#: libraries/relation.lib.php:143 libraries/sql_query_form.lib.php:436
+#: libraries/relation.lib.php:143 libraries/sql_query_form.lib.php:433
msgid "Bookmarked SQL query"
msgstr ""
@@ -3515,29 +3448,29 @@ msgstr ""
msgid "Servers"
msgstr ""
-#: libraries/server_links.inc.php:54 server_engines.php:112
+#: libraries/server_links.inc.php:53 server_engines.php:112
#: server_engines.php:116 server_status.php:415 test/theme.php:105
msgid "Variables"
msgstr ""
-#: libraries/server_links.inc.php:58 test/theme.php:109
+#: libraries/server_links.inc.php:57 test/theme.php:109
msgid "Charsets"
msgstr ""
-#: libraries/server_links.inc.php:62 test/theme.php:113
+#: libraries/server_links.inc.php:61 test/theme.php:113
msgid "Engines"
msgstr ""
-#: libraries/server_links.inc.php:77 server_binlog.php:110
+#: libraries/server_links.inc.php:76 server_binlog.php:110
#: server_status.php:364 test/theme.php:121
msgid "Binary log"
msgstr ""
-#: libraries/server_links.inc.php:81
+#: libraries/server_links.inc.php:80
msgid "Processes"
msgstr ""
-#: libraries/server_links.inc.php:93 server_synchronize.php:1092
+#: libraries/server_links.inc.php:92 server_synchronize.php:1092
#: server_synchronize.php:1100
msgid "Synchronize"
msgstr ""
@@ -3564,49 +3497,49 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sql_query_form.lib.php:226
+#: libraries/sql_query_form.lib.php:223
#, possible-php-format
msgid "Run SQL query/queries on server %s"
msgstr ""
-#: libraries/sql_query_form.lib.php:243 libraries/sql_query_form.lib.php:268
+#: 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/sql_query_form.lib.php:320
+#: libraries/sql_query_form.lib.php:317
msgid "Columns"
msgstr ""
-#: libraries/sql_query_form.lib.php:355 sql.php:693 sql.php:694 sql.php:711
+#: libraries/sql_query_form.lib.php:352 sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr ""
-#: libraries/sql_query_form.lib.php:362 sql.php:705
+#: libraries/sql_query_form.lib.php:359 sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
-#: libraries/sql_query_form.lib.php:368
+#: libraries/sql_query_form.lib.php:365
msgid "Replace existing bookmark of same name"
msgstr ""
-#: libraries/sql_query_form.lib.php:384
+#: libraries/sql_query_form.lib.php:381
msgid "Do not overwrite this query from outside the window"
msgstr ""
-#: libraries/sql_query_form.lib.php:391
+#: libraries/sql_query_form.lib.php:388
msgid "Delimiter"
msgstr ""
-#: libraries/sql_query_form.lib.php:399
+#: libraries/sql_query_form.lib.php:396
msgid " Show this query here again "
msgstr ""
-#: libraries/sql_query_form.lib.php:465
+#: libraries/sql_query_form.lib.php:462
msgid "Submit"
msgstr ""
-#: libraries/sql_query_form.lib.php:469
+#: libraries/sql_query_form.lib.php:466
msgid "View only"
msgstr ""
@@ -3743,17 +3676,17 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr ""
-#: libraries/tbl_properties.inc.php:780 tbl_structure.php:540
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542
#, possible-php-format
msgid "Add %s column(s)"
msgstr ""
-#: libraries/tbl_properties.inc.php:784 tbl_structure.php:534
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536
msgid "You have to add at least one column."
msgstr ""
@@ -3877,7 +3810,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr ""
@@ -3885,8 +3818,8 @@ msgstr ""
msgid "Protocol version"
msgstr ""
-#: main.php:189 server_privileges.php:1400 server_privileges.php:1553
-#: server_privileges.php:1672 server_privileges.php:2091
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
#: server_processlist.php:54
msgid "User"
msgstr ""
@@ -4297,411 +4230,411 @@ msgstr ""
msgid "View dump (schema) of databases"
msgstr ""
-#: server_privileges.php:25 server_privileges.php:267
+#: server_privileges.php:24 server_privileges.php:266
msgid "Includes all privileges except GRANT."
msgstr ""
-#: server_privileges.php:26 server_privileges.php:193
-#: server_privileges.php:516
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
msgid "Allows altering the structure of existing tables."
msgstr ""
-#: server_privileges.php:27 server_privileges.php:209
-#: server_privileges.php:522
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
msgid "Allows altering and dropping stored routines."
msgstr ""
-#: server_privileges.php:28 server_privileges.php:185
-#: server_privileges.php:515
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
msgid "Allows creating new databases and tables."
msgstr ""
-#: server_privileges.php:29 server_privileges.php:208
-#: server_privileges.php:521
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
msgid "Allows creating stored routines."
msgstr ""
-#: server_privileges.php:30 server_privileges.php:515
+#: server_privileges.php:29 server_privileges.php:514
msgid "Allows creating new tables."
msgstr ""
-#: server_privileges.php:31 server_privileges.php:196
-#: server_privileges.php:519
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
msgid "Allows creating temporary tables."
msgstr ""
-#: server_privileges.php:32 server_privileges.php:210
-#: server_privileges.php:555
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
msgid "Allows creating, dropping and renaming user accounts."
msgstr ""
-#: server_privileges.php:33 server_privileges.php:200
-#: server_privileges.php:204 server_privileges.php:527
-#: server_privileges.php:531
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
msgid "Allows creating new views."
msgstr ""
-#: server_privileges.php:34 server_privileges.php:184
-#: server_privileges.php:507
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
msgid "Allows deleting data."
msgstr ""
-#: server_privileges.php:35 server_privileges.php:186
-#: server_privileges.php:518
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
msgid "Allows dropping databases and tables."
msgstr ""
-#: server_privileges.php:36 server_privileges.php:518
+#: server_privileges.php:35 server_privileges.php:517
msgid "Allows dropping tables."
msgstr ""
-#: server_privileges.php:37 server_privileges.php:201
-#: server_privileges.php:535
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
msgid "Allows to set up events for the event scheduler"
msgstr ""
-#: server_privileges.php:38 server_privileges.php:211
-#: server_privileges.php:523
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
msgid "Allows executing stored routines."
msgstr ""
-#: server_privileges.php:39 server_privileges.php:190
-#: server_privileges.php:510
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
msgid "Allows importing data from and exporting data into files."
msgstr ""
-#: server_privileges.php:40 server_privileges.php:541
+#: server_privileges.php:39 server_privileges.php:540
msgid ""
"Allows adding users and privileges without reloading the privilege tables."
msgstr ""
-#: server_privileges.php:41 server_privileges.php:192
-#: server_privileges.php:517
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
msgid "Allows creating and dropping indexes."
msgstr ""
-#: server_privileges.php:42 server_privileges.php:182
-#: server_privileges.php:443 server_privileges.php:505
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
msgid "Allows inserting and replacing data."
msgstr ""
-#: server_privileges.php:43 server_privileges.php:197
-#: server_privileges.php:550
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
msgid "Allows locking tables for the current thread."
msgstr ""
-#: server_privileges.php:44 server_privileges.php:647
-#: server_privileges.php:649
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
msgid "Limits the number of new connections the user may open per hour."
msgstr ""
-#: server_privileges.php:45 server_privileges.php:635
-#: server_privileges.php:637
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
msgid "Limits the number of queries the user may send to the server per hour."
msgstr ""
-#: server_privileges.php:46 server_privileges.php:641
-#: server_privileges.php:643
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
msgid ""
"Limits the number of commands that change any table or database the user may "
"execute per hour."
msgstr ""
-#: server_privileges.php:47 server_privileges.php:653
-#: server_privileges.php:655
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
msgid "Limits the number of simultaneous connections the user may have."
msgstr ""
-#: server_privileges.php:48 server_privileges.php:189
-#: server_privileges.php:545
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
msgid "Allows viewing processes of all users"
msgstr ""
-#: server_privileges.php:49 server_privileges.php:191
-#: server_privileges.php:449 server_privileges.php:551
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
msgid "Has no effect in this MySQL version."
msgstr ""
-#: server_privileges.php:50 server_privileges.php:187
-#: server_privileges.php:546
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
msgid "Allows reloading server settings and flushing the server's caches."
msgstr ""
-#: server_privileges.php:51 server_privileges.php:199
-#: server_privileges.php:553
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
msgid "Allows the user to ask where the slaves / masters are."
msgstr ""
-#: server_privileges.php:52 server_privileges.php:198
-#: server_privileges.php:554
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
msgid "Needed for the replication slaves."
msgstr ""
-#: server_privileges.php:53 server_privileges.php:181
-#: server_privileges.php:440 server_privileges.php:504
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
msgid "Allows reading data."
msgstr ""
-#: server_privileges.php:54 server_privileges.php:194
-#: server_privileges.php:548
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
msgid "Gives access to the complete list of databases."
msgstr ""
-#: server_privileges.php:55 server_privileges.php:205
-#: server_privileges.php:207 server_privileges.php:520
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
msgid "Allows performing SHOW CREATE VIEW queries."
msgstr ""
-#: server_privileges.php:56 server_privileges.php:188
-#: server_privileges.php:547
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
msgid "Allows shutting down the server."
msgstr ""
-#: server_privileges.php:57 server_privileges.php:195
-#: server_privileges.php:544
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
msgid ""
"Allows connecting, even if maximum number of connections is reached; "
"required for most administrative operations like setting global variables or "
"killing threads of other users."
msgstr ""
-#: server_privileges.php:58 server_privileges.php:202
-#: server_privileges.php:536
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
msgid "Allows creating and dropping triggers"
msgstr ""
-#: server_privileges.php:59 server_privileges.php:183
-#: server_privileges.php:446 server_privileges.php:506
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
msgid "Allows changing data."
msgstr ""
-#: server_privileges.php:60 server_privileges.php:261
+#: server_privileges.php:59 server_privileges.php:260
msgid "No privileges."
msgstr ""
-#: server_privileges.php:303 server_privileges.php:304
+#: server_privileges.php:302 server_privileges.php:303
msgctxt "None privileges"
msgid "None"
msgstr ""
-#: server_privileges.php:432 server_privileges.php:567
-#: server_privileges.php:1740 server_privileges.php:1746
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
msgid "Table-specific privileges"
msgstr ""
-#: server_privileges.php:433 server_privileges.php:575
-#: server_privileges.php:1557
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
msgid " Note: MySQL privilege names are expressed in English "
msgstr ""
-#: server_privileges.php:564 server_privileges.php:1556
+#: server_privileges.php:563 server_privileges.php:1539
msgid "Global privileges"
msgstr ""
-#: server_privileges.php:566 server_privileges.php:1740
+#: server_privileges.php:565 server_privileges.php:1718
msgid "Database-specific privileges"
msgstr ""
-#: server_privileges.php:611
+#: server_privileges.php:610
msgid "Administration"
msgstr ""
-#: server_privileges.php:631
+#: server_privileges.php:630
msgid "Resource limits"
msgstr ""
-#: server_privileges.php:632
+#: server_privileges.php:631
msgid "Note: Setting these options to 0 (zero) removes the limit."
msgstr ""
-#: server_privileges.php:709
+#: server_privileges.php:708
msgid "Login Information"
msgstr ""
-#: server_privileges.php:803
+#: server_privileges.php:802
msgid "Do not change the password"
msgstr ""
-#: server_privileges.php:844 server_privileges.php:2228
+#: server_privileges.php:843 server_privileges.php:2205
msgid "No user found."
msgstr ""
-#: server_privileges.php:888
+#: server_privileges.php:887
#, possible-php-format
msgid "The user %s already exists!"
msgstr ""
-#: server_privileges.php:971
+#: server_privileges.php:970
msgid "You have added a new user."
msgstr ""
-#: server_privileges.php:1192
+#: server_privileges.php:1191
#, possible-php-format
msgid "You have updated the privileges for %s."
msgstr ""
-#: server_privileges.php:1216
+#: server_privileges.php:1215
#, possible-php-format
msgid "You have revoked the privileges for %s"
msgstr ""
-#: server_privileges.php:1252
+#: server_privileges.php:1251
#, possible-php-format
msgid "The password for %s was changed successfully."
msgstr ""
-#: server_privileges.php:1272
+#: server_privileges.php:1271
#, possible-php-format
msgid "Deleting %s"
msgstr ""
-#: server_privileges.php:1283
+#: server_privileges.php:1282
msgid "No users selected for deleting!"
msgstr ""
-#: server_privileges.php:1286
+#: server_privileges.php:1285
msgid "Reloading the privileges"
msgstr ""
-#: server_privileges.php:1301
+#: server_privileges.php:1300
msgid "The selected users have been deleted successfully."
msgstr ""
-#: server_privileges.php:1336
+#: server_privileges.php:1335
msgid "The privileges were reloaded successfully."
msgstr ""
-#: server_privileges.php:1374 server_privileges.php:1671
+#: server_privileges.php:1363 server_privileges.php:1649
msgid "Edit Privileges"
msgstr ""
-#: server_privileges.php:1383
+#: server_privileges.php:1372
msgid "Revoke"
msgstr ""
-#: server_privileges.php:1418
+#: server_privileges.php:1404
msgid "User overview"
msgstr ""
-#: server_privileges.php:1558 server_privileges.php:1745
-#: server_privileges.php:2095
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
msgid "Grant"
msgstr ""
-#: server_privileges.php:1577 server_privileges.php:2185
+#: server_privileges.php:1560 server_privileges.php:2162
msgid "Any"
msgstr ""
-#: server_privileges.php:1626 server_privileges.php:1650
-#: server_privileges.php:2050 server_privileges.php:2239
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
msgid "Add a new User"
msgstr ""
-#: server_privileges.php:1631
+#: server_privileges.php:1614
msgid "Remove selected users"
msgstr ""
-#: server_privileges.php:1634
+#: server_privileges.php:1617
msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
-#: server_privileges.php:1635 server_privileges.php:1636
-#: server_privileges.php:1637
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: server_privileges.php:1658
+#: server_privileges.php:1636
#, possible-php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
-#: server_privileges.php:1706
+#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
msgstr ""
-#: server_privileges.php:1746
+#: server_privileges.php:1724
msgid "Column-specific privileges"
msgstr ""
-#: server_privileges.php:1947
+#: server_privileges.php:1925
msgid "Add privileges on the following database"
msgstr ""
-#: server_privileges.php:1965
+#: server_privileges.php:1943
msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr ""
-#: server_privileges.php:1968
+#: server_privileges.php:1946
msgid "Add privileges on the following table"
msgstr ""
-#: server_privileges.php:2025
+#: server_privileges.php:2003
msgid "Change Login Information / Copy User"
msgstr ""
-#: server_privileges.php:2028
+#: server_privileges.php:2006
msgid "Create a new user with the same privileges and ..."
msgstr ""
-#: server_privileges.php:2030
+#: server_privileges.php:2008
msgid "... keep the old one."
msgstr ""
-#: server_privileges.php:2031
+#: server_privileges.php:2009
msgid " ... delete the old one from the user tables."
msgstr ""
-#: server_privileges.php:2032
+#: server_privileges.php:2010
msgid ""
" ... revoke all active privileges from the old one and delete it afterwards."
msgstr ""
-#: server_privileges.php:2033
+#: server_privileges.php:2011
msgid ""
" ... delete the old one from the user tables and reload the privileges "
"afterwards."
msgstr ""
-#: server_privileges.php:2056
+#: server_privileges.php:2033
msgid "Database for user"
msgstr ""
-#: server_privileges.php:2060
+#: server_privileges.php:2037
msgctxt "Create none database for user"
msgid "None"
msgstr ""
-#: server_privileges.php:2061
+#: server_privileges.php:2038
msgid "Create database with same name and grant all privileges"
msgstr ""
-#: server_privileges.php:2062
+#: server_privileges.php:2039
msgid "Grant all privileges on wildcard name (username\\_%)"
msgstr ""
-#: server_privileges.php:2065
+#: server_privileges.php:2042
#, possible-php-format
msgid "Grant all privileges on database "%s""
msgstr ""
-#: server_privileges.php:2088
+#: server_privileges.php:2065
#, possible-php-format
msgid "Users having access to "%s""
msgstr ""
-#: server_privileges.php:2196
+#: server_privileges.php:2173
msgid "global"
msgstr ""
-#: server_privileges.php:2198
+#: server_privileges.php:2175
msgid "database-specific"
msgstr ""
-#: server_privileges.php:2200
+#: server_privileges.php:2177
msgid "wildcard"
msgstr ""
@@ -7271,25 +7204,25 @@ msgstr ""
msgid "ZIP"
msgstr ""
-#: sql.php:505 tbl_replace.php:386
+#: sql.php:496 tbl_replace.php:386
#, possible-php-format
msgid "Inserted row id: %1$d"
msgstr ""
-#: sql.php:522
+#: sql.php:513
msgid "Showing as PHP code"
msgstr ""
-#: sql.php:525 tbl_replace.php:360
+#: sql.php:516 tbl_replace.php:360
msgid "Showing SQL query"
msgstr ""
-#: sql.php:667
+#: sql.php:639
#, possible-php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
-#: sql.php:699
+#: sql.php:671
msgid "Label"
msgstr ""
@@ -7327,40 +7260,40 @@ msgstr ""
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr ""
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr ""
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, possible-php-format
msgid "Restart insertion with %s rows"
msgstr ""
@@ -7417,7 +7350,7 @@ msgstr ""
msgid "Add to index %s column(s)"
msgstr ""
-#: tbl_indexes.php:256 tbl_structure.php:587 tbl_structure.php:598
+#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600
msgid "Column count has to be larger than zero."
msgstr ""
@@ -7626,47 +7559,47 @@ msgstr ""
msgid "Column %s has been dropped"
msgstr ""
-#: tbl_structure.php:384
+#: tbl_structure.php:385
#, possible-php-format
msgid "A primary key has been added on %s"
msgstr ""
-#: tbl_structure.php:398 tbl_structure.php:412 tbl_structure.php:426
+#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428
#, possible-php-format
msgid "An index has been added on %s"
msgstr ""
-#: tbl_structure.php:504 tbl_structure.php:506
+#: tbl_structure.php:506 tbl_structure.php:508
msgid "Relation view"
msgstr ""
-#: tbl_structure.php:513 tbl_structure.php:515
+#: tbl_structure.php:515 tbl_structure.php:517
msgid "Propose table structure"
msgstr ""
-#: tbl_structure.php:538
+#: tbl_structure.php:540
msgid "Add column"
msgstr ""
-#: tbl_structure.php:552
+#: tbl_structure.php:554
msgid "At End of Table"
msgstr ""
-#: tbl_structure.php:553
+#: tbl_structure.php:555
msgid "At Beginning of Table"
msgstr ""
-#: tbl_structure.php:554
+#: tbl_structure.php:556
#, possible-php-format
msgid "After %s"
msgstr ""
-#: tbl_structure.php:592
+#: tbl_structure.php:594
#, possible-php-format
msgid "Create an index on %s columns"
msgstr ""
-#: tbl_structure.php:754
+#: tbl_structure.php:756
msgid "partitioned"
msgstr ""
@@ -7708,6 +7641,10 @@ msgstr ""
msgid "SQL statements exported. Please copy the dump or execute it."
msgstr ""
+#: tbl_tracking.php:251 tbl_tracking.php:379
+msgid "Close"
+msgstr ""
+
#: tbl_tracking.php:262
#, possible-php-format
msgid "Version %s snapshot (SQL code)"
diff --git a/po/pl.po b/po/pl.po
index b871c10af..30df70779 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Szukaj"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Zmień nazwę bazy danych na"
msgid "Command"
msgstr "Polecenie"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "a następnie"
@@ -574,7 +574,7 @@ msgstr "Dodaj"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -624,11 +624,11 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %"
-"sdocumentation%s."
+"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w "
+"%sdocumentation%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -825,8 +825,8 @@ msgstr "Zrzut został zapisany do pliku %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
"limitu, proszę zapoznać się z %sdokumenacją%s."
@@ -1394,7 +1394,7 @@ msgstr "Komentarz"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1541,8 +1541,8 @@ msgstr "Witamy w %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego "
"stworzenia można użyć %1$sskryptu instalacyjnego%2$s."
@@ -2119,8 +2119,8 @@ msgstr "nazwa tabeli"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć "
"jej napisów formatujących. Dodatkowo zostaną zastosowane następujące "
@@ -2330,8 +2330,8 @@ msgstr "Sortuj wg klucza"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3104,44 +3104,44 @@ msgstr "Wygenerowany przez"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL zwrócił pusty wynik (zero rekordów)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Brak baz danych"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Brak baz danych"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3841,8 +3841,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy "
-"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %"
-"sdokumentacji%s."
+"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
+"%sdokumentacji%s."
#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
#: libraries/tbl_links.inc.php:141
@@ -3896,8 +3896,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %"
-"sopisy transformacji%s"
+"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
+"%sopisy transformacji%s"
#: libraries/tbl_properties.inc.php:145
msgid "Transformation options"
@@ -3944,7 +3944,7 @@ msgstr "Definicja partycji"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Zachowaj"
@@ -4160,7 +4160,7 @@ msgid "Custom color"
msgstr "Własny kolor"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Resetuj"
@@ -4276,8 +4276,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
-"s."
+"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja"
+"%s."
#: navigation.php:66 navigation.php:67 navigation.php:70
#, fuzzy
@@ -4950,8 +4950,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień "
"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, "
@@ -7395,8 +7395,8 @@ msgid ""
"to."
msgstr ""
"Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień "
-"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
+"bezpieczeństwa — [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
"page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/"
"a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli "
"używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników."
@@ -7958,43 +7958,43 @@ msgstr " Binarne - nie do edycji "
msgid "Upload to BLOB repository"
msgstr "Wrzuć do repozytorium BLOBów"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Dodaj jako nowy rekord"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Wyświetlane jest zapytanie SQL."
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Wróć"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Dodaj nowy rekord"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Powrót do tej strony"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Edytuj następny rekord"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Odśwież wstawianie z %s rekordami"
diff --git a/po/pt.po b/po/pt.po
index fde64802c..25f3166dc 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -60,8 +60,8 @@ msgstr "Pesquisar"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Renomeia a tabela para "
msgid "Command"
msgstr "Comando"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -577,7 +577,7 @@ msgstr "Insere"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -627,8 +627,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -827,8 +827,8 @@ msgstr "O Dump foi gravado para o ficheiro %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1381,7 +1381,7 @@ msgstr "Comentários"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1522,8 +1522,8 @@ msgstr "Bemvindo ao %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2095,8 +2095,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2294,8 +2294,8 @@ msgstr "Ordenar por chave"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3040,44 +3040,44 @@ msgstr "Gerado por"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL não retornou nenhum registo."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Sem bases de dados"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Sem bases de dados"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Estrutura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3875,7 +3875,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Guarda"
@@ -4019,7 +4019,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Limpa"
@@ -4799,8 +4799,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da "
"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos "
@@ -7588,41 +7588,41 @@ msgstr " Binário - não editar "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Insere como novo registo"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Voltar atrás"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Inserir novo registo"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
#, fuzzy
msgid "Go back to this page"
msgstr "Voltar atrás"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index fcca008b4..2a05e7862 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
-"PO-Revision-Date: 2010-03-21 05:17+0200\n"
-"Last-Translator: Maurício Meneghini Fauth \n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
+"PO-Revision-Date: 2010-07-13 23:58+0200\n"
+"Last-Translator: William Bachion \n"
"Language-Team: brazilian_portuguese \n"
+"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Procurar"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Renomear Banco de Dados para"
msgid "Command"
msgstr "Comando"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "e então"
@@ -575,7 +575,7 @@ msgstr "Inserir"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -824,8 +824,8 @@ msgstr "Dump foi salvo no arquivo %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentation%s para burlar esses limites."
@@ -1390,7 +1390,7 @@ msgstr "Cometário"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1538,8 +1538,8 @@ msgstr "Bem vindo ao %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"A provável razão para isso é que você não criou o arquivo de configuração. "
"Você deve usar o %1$ssetup script%2$s para criar um."
@@ -2111,8 +2111,8 @@ msgstr "nome da tabela"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as "
"strings de formatação de tempo. Adicionalmente a seguinte transformação "
@@ -2321,8 +2321,8 @@ msgstr "Ordenar pela chave"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3077,44 +3077,44 @@ msgstr "Gerado por"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou um conjunto vazio (ex. zero registros)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Sem bases"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Sem bases"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Estrutura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3911,7 +3911,7 @@ msgstr "Definição da PARTIÇÃO"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Salvar"
@@ -4127,7 +4127,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Restaurar"
@@ -4918,8 +4918,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela "
"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos "
@@ -7846,43 +7846,43 @@ msgstr " Binário - não edite "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Inserir como um novo registro"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Exibindo consulta SQL"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Retornar"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Inserir novo registro"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Voltar para esta página"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Editar próximo registro"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Reiniciar inserção com %s registros"
@@ -8246,7 +8246,7 @@ msgstr ""
#: tbl_tracking.php:251 tbl_tracking.php:379
msgid "Close"
-msgstr ""
+msgstr "Fechar"
#: tbl_tracking.php:262
#, php-format
@@ -8290,7 +8290,7 @@ msgstr ""
#: tbl_tracking.php:509
msgid "This option will replace your table and contained data."
-msgstr ""
+msgstr "Esta opção irá substituir sua tabela e os dados nela contidos."
#: tbl_tracking.php:509
msgid "SQL execution"
@@ -8303,7 +8303,7 @@ msgstr "Tipo de exportação"
#: tbl_tracking.php:561
msgid "Show versions"
-msgstr ""
+msgstr "Exibir versões"
#: tbl_tracking.php:593
#, fuzzy
@@ -8326,12 +8326,12 @@ msgstr ""
#: tbl_tracking.php:655
msgid "Activate now"
-msgstr ""
+msgstr "Ativar agora"
#: tbl_tracking.php:668
#, php-format
msgid "Create version %s of %s.%s"
-msgstr ""
+msgstr "Criar versão %s de %s.%s"
#: tbl_tracking.php:672
msgid "Track these data definition statements:"
@@ -8357,7 +8357,7 @@ msgstr ""
#: themes.php:42
msgid "Get more themes!"
-msgstr ""
+msgstr "Obter mais temas!"
#: transformation_overview.php:25
msgid "Available MIME types"
@@ -8395,316 +8395,3 @@ msgstr "Nome da VISÃO"
#, fuzzy
msgid "Rename view to"
msgstr "Renomear a tabela para "
-
-#, fuzzy
-#~| msgid "Add new field"
-#~ msgid "Add field"
-#~ msgstr "Adicionar novo campo"
-
-#~ msgid "Field"
-#~ msgstr "Campo"
-
-#~ msgid "Records"
-#~ msgstr "Registros"
-
-#~ msgid "Fields terminated by"
-#~ msgstr "Campos terminados por"
-
-#~ msgid "Fields"
-#~ msgstr "Campos"
-
-#~ msgid "Field %s has been dropped"
-#~ msgstr "Campo %s foi deletado"
-
-#~ msgid "See image/jpeg: inline"
-#~ msgstr "Ver imagem/jpeg: em linha"
-
-#, fuzzy
-#~| msgid "\"zipped\""
-#~ msgid "zipped"
-#~ msgstr "\"compactado com zip\""
-
-#, fuzzy
-#~| msgid "\"gzipped\""
-#~ msgid "gzipped"
-#~ msgstr "\"compactado com gzip\""
-
-#, fuzzy
-#~| msgid "\"bzipped\""
-#~ msgid "bzipped"
-#~ msgstr "\"compactado com bzip\""
-
-#, fuzzy
-#~| msgid "Add custom comment into header (\\n splits lines)"
-#~ msgid ""
-#~ "Add custom comment into header (\n"
-#~ " splits lines)"
-#~ msgstr "Adicionar comentário pessoal no cabeçalho (\\n quebra linhas)"
-
-#~ msgid "and"
-#~ msgstr "e"
-
-#~ msgctxt "$strBLOBRepositoryDisabled"
-#~ msgid "Disabled"
-#~ msgstr "Desabilitado"
-
-#~ msgctxt "$strBLOBRepositoryEnabled"
-#~ msgid "Enabled"
-#~ msgstr "Habilitado"
-
-#~ msgctxt "$strBLOBRepositoryRepair"
-#~ msgid "Repair"
-#~ msgstr "Reparar"
-
-#~ msgid "Calendar"
-#~ msgstr "Calendário"
-
-#~ msgid "MySQL 4.0 compatible"
-#~ msgstr "Compatível com MySQL 4.0"
-
-#~ msgid "Could not load default configuration from: \"%1$s\""
-#~ msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
-
-#~ msgid "Create an index on %s columns"
-#~ msgstr "Criar um índice em %s colunas"
-
-#~ msgctxt "$strCreateTableShort"
-#~ msgid "Create table"
-#~ msgstr "Criar tabela"
-
-#~ msgctxt "$strCreateUserDatabaseNone"
-#~ msgid "None"
-#~ msgstr "Nenhum"
-
-#~ msgid "Flush the table (\"FLUSH\")"
-#~ msgstr "Limpar a tabela (\"LIMPAR\")"
-
-#~ msgid "Invalid server index: \"%s\""
-#~ msgstr "Índice de servidor inválido: \"%s\""
-
-#~ msgctxt "$strMIME_description"
-#~ msgid "Description"
-#~ msgstr "Descrição"
-
-#~ msgctxt "$strNoneDefault"
-#~ msgid "None"
-#~ msgstr "Nenhum"
-
-#~ msgid "Schema of the \"%s\" database - Page %s"
-#~ msgstr "Esquema do Banco de Dados \"%s\" - Página %s"
-
-#~ msgid "The \"%s\" table doesn't exist!"
-#~ msgstr "A tabela \"%s\" não existe!"
-
-#~ msgid "running on %s"
-#~ msgstr "Rodando em %s"
-
-#~ 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"
-
-#~ 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 ""
-#~ "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."
-
-#, fuzzy
-#~| msgid ""
-#~| "However on last run no data has been parsed, this usually means "
-#~| "phpMyAdmin won't be able to finish this import unless you increase php "
-#~| "time limits."
-#~ msgid ""
-#~ "However on last run no data has been parsed, this usually means "
-#~ "phpMyAdmin won"
-#~ msgstr ""
-#~ "Entretanto na última vez nenhum dado foi passado, isso normalmente "
-#~ "significa que o phpMyAdmin não é capaz de finalizar essa importação à "
-#~ "menos que você aumente o tempo limite do PHP."
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt "None action"
-#~ msgid "None"
-#~ msgstr "Nenhum"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt ""
-#~ msgid "None"
-#~ msgstr "Nenhum"
-
-#, fuzzy
-#~| msgid "Grant all privileges on wildcard name (username\\_%)"
-#~ msgid "Grant all privileges on wildcard name (username_%)"
-#~ msgstr "Conceder todos os privilégios no nome coringa (nome_do_usuário_%)"
-
-#, fuzzy
-#~| msgid "The \"%s\" table doesn't exist!"
-#~ msgid "The %s table doesn"
-#~ msgstr "A tabela \"%s\" não existe!"
-
-#, fuzzy
-#~| msgid "Could not load default configuration from: \"%1$s\""
-#~ msgid "Could not load default configuration from: %1"
-#~ msgstr "Não foi possível carregar configuração padrão de: \"%1$s\""
-
-#, fuzzy
-#~| msgid "Invalid hostname for server %1$s. Please review your configuration."
-#~ msgid "Invalid hostname for server %1. Please review your configuration."
-#~ msgstr ""
-#~ "Nome de serivdor inválido para o servidor %1$s. Verifique suas "
-#~ "configurações."
-
-#, fuzzy
-#~| msgid "Error renaming table %1$s to %2$s"
-#~ msgid "Error renaming table %1 to %2"
-#~ msgstr "Erro ao renomear tabela %1$s para %2$s"
-
-#, fuzzy
-#~| msgid ""
-#~| "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
-#~| "extension. Please check your PHP configuration."
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
-#~ "Please check your PHP configuration."
-#~ msgstr "não carregou extensão %s, verifique a configurações do php"
-
-#, fuzzy
-#~ msgid "(or the local MySQL server"
-#~ msgstr "Não foi possível se logar no servidor MySQL"
-
-#, fuzzy
-#~| msgid ""
-#~| "There is a chance that you may have found a bug in the SQL parser. "
-#~| "Please examine your query closely, and check that the quotes are correct "
-#~| "and not mis-matched. Other possible failure causes may be that you are "
-#~| "uploading a file with binary outside of a quoted text area. You can also "
-#~| "try your query on the MySQL command line interface. The MySQL server "
-#~| "error output below, if there is any, may also help you in diagnosing the "
-#~| "problem. If you still have problems or if the parser fails where the "
-#~| "command line interface succeeds, please reduce your SQL query input to "
-#~| "the single query that causes problems, and submit a bug report with the "
-#~| "data chunk in the CUT section below:"
-#~ msgid ""
-#~ "There is a chance that you may have found a bug in the SQL parser. Please "
-#~ "examine your query closely, and check that the quotes are correct and not "
-#~ "mis-matched. Other possible failure causes may be that you are uploading "
-#~ "a file with binary outside of a quoted text area. You can also try your "
-#~ "query on the MySQL command line interface. The MySQL server error output "
-#~ "be . "
-#~ msgstr ""
-#~ "Talvez tenha encontrado um bug no analizador (parser) do SQL. Analise a "
-#~ "sua Consulta SQL com atenção, e verifique se as aspas estão corretas e "
-#~ "não estão desencontradas. Outra possibilidade de falha é o fato de estar "
-#~ "tentando subir um arquivo com saída binária de uma área de texto citada. "
-#~ "Pode também experimentar a sua consulta SQL no prompt de comandos do "
-#~ "MySQL. A saída de erro do MySQL, isto se existir alguma, também poderá "
-#~ "ajudar a diagnosticar o problema. Se continuar a ter problemas ou se o "
-#~ "analisador (parser) falhar onde a interface da linha de comandos tiver "
-#~ "sucesso, reduza por favor a 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:"
-
-#~ msgctxt "$strStrucCSV"
-#~ msgid "CSV"
-#~ msgstr "Dados CSV"
-
-#~ msgid "Copy"
-#~ msgstr "Copiar"
-
-#~ msgid "Delete the users and reload the privileges afterwards."
-#~ msgstr "Apagar usuário e depois recarregar os privilégios."
-
-#~ msgid ""
-#~ "This is the cleanest way, but reloading the privileges may take a while."
-#~ msgstr ""
-#~ "Esse é o caminho mais claro, mas recarregar os privilégios pode demorar "
-#~ "um pouco."
-
-#~ msgid "has been altered."
-#~ msgstr "foi alterado."
-
-#~ msgid "Microsoft Excel 2000"
-#~ msgstr "Microsoft Excel 2000"
-
-#~ msgid "Internet Explorer does not support this function."
-#~ msgstr "Internet Explorer não suporta esta função."
-
-#~ msgid ""
-#~ "The "deleted" users will still be able to access the server as "
-#~ "usual until the privileges are reloaded."
-#~ msgstr ""
-#~ "O usuário "apagado" ainda podera continuar acessando o servidor "
-#~ "normalmente até que os privilégios sejam recarregados."
-
-#~ msgid "Just delete the users from the privilege tables."
-#~ msgstr "Apenas apagar o usuário da tabela de privilégios"
-
-#~ msgid ""
-#~ "Allows running stored procedures; has no effect in this MySQL version."
-#~ msgstr ""
-#~ "Permitir rodar \"stored procedures\"; Sem efeitos nesta versão do MySQL."
-
-#~ msgid "Process list"
-#~ msgstr "Lista de processos"
-
-#~ msgid "Reload privileges"
-#~ msgstr "Recarregar privilégios"
-
-#~ msgid ""
-#~ "The users will still have the USAGE privilege until the privileges are "
-#~ "reloaded."
-#~ msgstr ""
-#~ "Os usuários manterão o privilégio de USAGE até que os privilégios sejam "
-#~ "recarregados."
-
-#~ msgid "Native MS Excel format"
-#~ msgstr "Dados nativos do MS Excel"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT * query"
-#~ msgid "Select all"
-#~ msgstr "Selecionar Todos"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT ... query"
-#~ msgid "Select"
-#~ msgstr "Selecionar Todos"
-
-#, fuzzy
-#~| msgid "Insert"
-#~ msgctxt "Create INSERT query"
-#~ msgid "Insert"
-#~ msgstr "Inserir"
-
-#, fuzzy
-#~| msgid "Update Query"
-#~ msgctxt "Create UPDATE query"
-#~ msgid "Update"
-#~ msgstr "Atualizar a consulta SQL"
-
-#, fuzzy
-#~| msgid "Delete"
-#~ msgctxt "Create DELETE query"
-#~ msgid "Delete"
-#~ msgstr "Remover"
-
-#~ msgid "%1$d row(s) affected."
-#~ msgstr "%1$d linha(s) afetadas."
-
-#~ msgid "utf-8"
-#~ msgstr "utf-8"
-
-#~ msgid "Jan0"
-#~ msgstr "Jan0"
-
-#~ msgid "Jan1"
-#~ msgstr "Jan1"
-
-#~ msgid "Jan2"
-#~ msgstr "Jan2"
diff --git a/po/ro.po b/po/ro.po
index afee73a18..fefa31ce1 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-16 01:40+0200\n"
"Last-Translator: \n"
"Language-Team: romanian \n"
+"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -65,8 +65,8 @@ msgstr "Caută"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -233,7 +233,7 @@ msgstr "Redenumire bază de date în"
msgid "Command"
msgstr "Comanda"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "și apoi"
@@ -573,7 +573,7 @@ msgstr "Inserare"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -623,8 +623,8 @@ msgstr "Monitorizarea nu este activată"
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
@@ -823,11 +823,11 @@ msgstr "Copia a fost salvată în fișierul %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %"
-"sdocumentație%s pentru căi de ocolire a acestei limite."
+"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la "
+"%sdocumentație%s pentru căi de ocolire a acestei limite."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1391,7 +1391,7 @@ msgstr "Comentariu"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1540,8 +1540,8 @@ msgstr "Bine ați venit la %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Motivul probabil pentru aceasta este că nu ați creat un fișier de "
"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un "
@@ -2120,12 +2120,12 @@ msgstr "nume tabel"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:202
msgid "remember template"
@@ -2328,8 +2328,8 @@ msgstr "Sortare după cheie"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3108,44 +3108,44 @@ msgstr "Generat de"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Nu sînt baze de date"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Nu sînt baze de date"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Structură"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3942,7 +3942,7 @@ msgstr "Definiție PARTIȚIE"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Salveaza"
@@ -4159,7 +4159,7 @@ msgid "Custom color"
msgstr "Culoare personalizată"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Resetare"
@@ -4962,8 +4962,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de "
"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. "
@@ -7873,43 +7873,43 @@ msgstr "Binar - a nu se edita"
msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Inserează ca o nouă linie"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Afișare interogare SQL"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Revenire"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Adaugă o nouă înregistrare"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Înapoi la această pagină"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Editează rîndul următor"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Repornește inserția cu %s rînduri"
diff --git a/po/ru.po b/po/ru.po
index 016bb2f7f..24511c6ad 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,16 +3,16 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal \n"
"Language-Team: russian \n"
+"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -65,8 +65,8 @@ msgstr "Поиск"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -233,7 +233,7 @@ msgstr "Переименовать базу данных в"
msgid "Command"
msgstr "Команда"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "и затем"
@@ -578,7 +578,7 @@ msgstr "Вставить"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -628,8 +628,8 @@ msgstr "Слежение выключено."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Данное представление имеет, по меньшей мере, указанное количество строк. "
"Пожалуйста, обратитесь к %sдокументации%s."
@@ -821,8 +821,8 @@ msgstr "Дамп был сохранен в файл %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s."
@@ -1394,7 +1394,7 @@ msgstr "Комментарий"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1539,8 +1539,8 @@ msgstr "Добро пожаловать в %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Возможная причина - отсутствие файла конфигурации. Для его создания вы "
"можете воспользоваться %1$sсценарием установки%2$s."
@@ -2121,8 +2121,8 @@ msgstr "имя таблицы"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна "
"вставка текущей даты и времени. Дополнительно могут быть использованы "
@@ -2332,8 +2332,8 @@ msgstr "Сортировать по индексу"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3115,41 +3115,41 @@ msgstr "Создан"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вернула пустой результат (т.е. ноль строк)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "Следующие структуры были созданы, либо изменены. Вы можете:"
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr "Просмотреть детали структуры нажав на её имя"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Изменить любой параметр нажав на соответствующую ссылку Параметр"
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Отредактировать структуру перейдя по ссылке Структура"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Перейти к базе данных"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "настройки"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Перейти к таблице"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "структура"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Перейти к отображению (VIEW)"
@@ -3950,7 +3950,7 @@ msgstr "Определение разделов (PARTITION)"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Сохранить"
@@ -4169,7 +4169,7 @@ msgid "Custom color"
msgstr "Выбрать цвет"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Сбросить"
@@ -4979,8 +4979,8 @@ msgstr "Удалить базы данных, имена которых совп
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях "
"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может "
@@ -6113,8 +6113,8 @@ msgid ""
"Query statistics: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
-"Статистика запросов: со времени запуска, на сервер было отослано запросов - %"
-"s."
+"Статистика запросов: со времени запуска, на сервер было отослано запросов - "
+"%s."
#: server_status.php:609
msgid "per minute"
@@ -7361,8 +7361,9 @@ msgstr ""
"Вы установили [kbd]config[/kbd] идентификацию и ввели имя полльзователя с "
"паролем для автоматического входа, что крайне не рекомендуется для рабочего "
"хоста. Любой, кто сможет узнать ссылку к phpMyAdmin сможет напрямую попасть "
-"в панель управления. Установите [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server]тип идентификации[/a] в [kbd]cookie[/kbd] или [kbd]http[/kbd]."
+"в панель управления. Установите [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server]тип идентификации[/a] в [kbd]cookie[/kbd] или [kbd]http[/"
+"kbd]."
#: setup/lib/messages.inc.php:239
msgid "You should use mysqli for performance reasons"
@@ -8146,43 +8147,43 @@ msgstr "Двоичные данные - не редактируются"
msgid "Upload to BLOB repository"
msgstr "Загрузить в хранилище BLOB данных"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Вставить запись"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Отображает SQL-запрос"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Вернуться на предыдущую страницу"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Добавить новую запись"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Вернуться к данной странице"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Редактировать следующую строку"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Для перемещения между полями значения, используйте клавишу TAB, либо CTRL"
"+клавиши со стрелками - для свободного перемещения"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Количество вставляемых строк: %s"
@@ -8653,8 +8654,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %"
-"s."
+"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге "
+"%s."
#: themes.php:42
msgid "Get more themes!"
@@ -8901,8 +8902,8 @@ msgstr "Переименовать таблицу в"
#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
#~ "Please check your PHP configuration."
#~ msgstr ""
-#~ "Невозможно загрузить расширение [a@http://php.net/%1$s@Documentation][em]%"
-#~ "1$s[/em][/a]! Проверьте настройки PHP."
+#~ "Невозможно загрузить расширение [a@http://php.net/%1$s@Documentation]"
+#~ "[em]%1$s[/em][/a]! Проверьте настройки PHP."
#, fuzzy
#~| msgid ""
diff --git a/po/si.po b/po/si.po
index 294300cc8..bafc1d957 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: sinhala \n"
+"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: si\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "සෙවීම"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "බවට දත්තගබඩාවේ නම වෙනස් කර
msgid "Command"
msgstr "විධානය"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "සහ එවිට"
@@ -575,7 +575,7 @@ msgstr "ඇතුල් කරන්න"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -823,11 +823,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සේව්
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1386,7 +1386,7 @@ msgstr "විස්තරය"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1530,8 +1530,8 @@ msgstr "%s වෙත ආයුබෝවන්"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Probably reason of this is that you did not create configuration file. You "
"might want to use %1$ssetup script%2$s to create one."
@@ -2103,12 +2103,12 @@ msgstr "වගුවේ නම"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:202
msgid "remember template"
@@ -2311,8 +2311,8 @@ msgstr "යතුර අනුව තෝරන්න"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3069,44 +3069,44 @@ msgstr "උත්පාදනය කරන ලද්දේ"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "දත්තගබඩා නොමැත"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "දත්තගබඩා නොමැත"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "සැකිල්ල"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3904,7 +3904,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "සේව් කරන්න"
@@ -4106,7 +4106,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "ප්රතිසකසන්න"
@@ -4890,13 +4890,13 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම්
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -7795,41 +7795,41 @@ msgstr "ද්වීමය - සංස්කරණය නොකරන්න"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Insert as new row"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "පෙර පිටුවට ආපසු යන්න"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "නව පේළියක් එක් කරන්න"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "මෙම පිටුව වෙත ආපසු යන්න"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "මීලඟ පේළිය එක් කරන්න"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index 46a0f363a..5989a844c 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: slovak \n"
+"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Hľadať"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Premenovať databázu na"
msgid "Command"
msgstr "Príkaz"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "a potom"
@@ -579,7 +579,7 @@ msgstr "Vložiť"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -629,8 +629,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -825,8 +825,8 @@ msgstr "Dump (schéma) bol uložený do súboru %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si "
"prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
@@ -1391,7 +1391,7 @@ msgstr "Komentár"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1536,8 +1536,8 @@ msgstr "Vitajte v %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho "
"vytvorenie môžete použiť %1$skonfiguračný skript%2$s."
@@ -2107,8 +2107,8 @@ msgstr "meno tabuľky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť "
"reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto "
@@ -2321,8 +2321,8 @@ msgstr "Zoradiť podľa kľúča"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3074,42 +3074,42 @@ msgstr "Vygenerované"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Prejsť do databázy"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "nastavenia"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Prejsť do tabuľky"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Štruktúra"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Prejsť na Prejsť na pohľad"
@@ -3804,8 +3804,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú "
-"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %"
-"sdocumentation%s."
+"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
+"%sdocumentation%s."
#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
#: libraries/tbl_links.inc.php:141
@@ -3908,7 +3908,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Uložiť"
@@ -4103,7 +4103,7 @@ msgid "Custom color"
msgstr "Vlastná farba"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Vynulovať"
@@ -4895,13 +4895,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. "
"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli "
-"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ť."
+"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať "
+"%sznovunačítanie práv%s predtým ako budete pokračovať."
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -7823,43 +7823,43 @@ msgstr "Binárny - neupravujte "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Vložiť ako nový riadok"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Zobrazujem SQL dotaz"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Späť"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Vložiť nový záznam"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Späť na túto stránku"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Upraviť nasledujúci riadok"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/sl.po b/po/sl.po
index 0a004c6fb..60a66d784 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-29 22:42+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
+"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Iskanje"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Preimenuj zbirko podatkov v"
msgid "Command"
msgstr "Ukaz"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "in potem"
@@ -562,7 +562,7 @@ msgstr "Vstavi"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -612,8 +612,8 @@ msgstr "Sledenje ni aktivno."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -803,8 +803,8 @@ msgstr "Dump je shranjen v datoteko %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
"%sdokumentacijo%s za načine, kako obiti to omejitev."
@@ -1321,7 +1321,7 @@ msgstr "Komentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1471,8 +1471,8 @@ msgstr "Dobrodošli v %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite "
"uporabiti %1$snastavitveni skript%2$s, da jo ustvarite."
@@ -2039,8 +2039,8 @@ msgstr "ime tabele"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate "
"nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. "
@@ -2249,8 +2249,8 @@ msgstr "Uredi po ključu"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3012,44 +3012,44 @@ msgstr "Ustvaril"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Pojdi v zbirko podatkov"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "nastavitve"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Pojdi v tabelo"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "struktura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Pojdi na pogled"
@@ -3839,7 +3839,7 @@ msgstr "Definicija PARTITION"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Shrani"
@@ -4011,7 +4011,7 @@ msgid "Custom color"
msgstr "Barva po meri"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Ponastavi"
@@ -4793,8 +4793,8 @@ msgstr "Izbriši podatkovne zbirke, ki imajo enako ime kot uporabniki."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel "
"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki "
@@ -7848,42 +7848,42 @@ msgstr "Dvojiško - ne urejaj"
msgid "Upload to BLOB repository"
msgstr "Naloži v shrambo BLOB"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Vstavi kot novo vrstico"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Vstavi kot novo vrstico in presliši napake"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Prikaži poizvedbo insert"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Nazaj na prejšnjo stran"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Vstavi še eno novo vrstico"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Pojdi nazaj na stran"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Uredi naslednjo vrstico"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Ponovno začni vstavljanje z %s vrsticami"
diff --git a/po/sq.po b/po/sq.po
index 58432b70b..c03ad8e29 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-19 13:02+0200\n"
"Last-Translator: Laurent \n"
"Language-Team: albanian \n"
+"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Kërko"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Ndysho emrin e databazës në"
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -569,7 +569,7 @@ msgstr "Shto"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -619,8 +619,8 @@ msgstr "Gjurmimi nuk është aktiv."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -817,8 +817,8 @@ msgstr "Dump u ruajt tek file %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1369,7 +1369,7 @@ msgstr "Komente"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1512,8 +1512,8 @@ msgstr "Mirësevini tek %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2078,8 +2078,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2277,8 +2277,8 @@ msgstr "Rendit sipas kyçit"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3017,43 +3017,43 @@ msgstr "Gjeneruar nga"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Asnjë databazë"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3853,7 +3853,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Ruaj"
@@ -4051,7 +4051,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Rinis"
@@ -4840,8 +4840,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e "
"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të "
@@ -7614,40 +7614,40 @@ msgstr "Të dhëna të tipit binar - mos ndrysho"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Shto një rresht të ri"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Mbrapa"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Shto një regjistrim të ri"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Kthehu mbrapa tek kjo faqe"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index e38dd0168..19c04d55a 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,16 +3,16 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: serbian_cyrillic \n"
+"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sr\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -65,8 +65,8 @@ msgstr "Претраживање"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -233,7 +233,7 @@ msgstr "Преименуј базу у"
msgid "Command"
msgstr "Наредба"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "и онда"
@@ -578,7 +578,7 @@ msgstr "Нови запис"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -628,8 +628,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -827,11 +827,11 @@ msgstr "Садржај базе је сачуван у датотеку %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
-"sдокументацију%s за начине превазилажења овог ограничења."
+"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
+"%sдокументацију%s за начине превазилажења овог ограничења."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1392,7 +1392,7 @@ msgstr "Коментари"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1535,8 +1535,8 @@ msgstr "Добродошли на %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Вероватан разлог за ово је да нисте направили конфигурациону датотеку. "
"Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили."
@@ -2110,8 +2110,8 @@ msgstr "назив табеле"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да "
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
@@ -2319,8 +2319,8 @@ msgstr "Сортирај по кључу"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3075,44 +3075,44 @@ msgstr "Генерисао"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL је вратио празан резултат (нула редова)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "База не постоји"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "База не постоји"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Структура"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3908,7 +3908,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Сачувај"
@@ -4122,7 +4122,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Поништи"
@@ -4911,8 +4911,8 @@ msgstr "Одбаци базе које се зову исто као корис
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела "
"привилегија. Садржај ове табеле може се разликовати од привилегија које "
@@ -7814,43 +7814,43 @@ msgstr "Бинарни - не мењај"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Унеси као нови ред"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Приказ као SQL упит"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Назад на претходну страну"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Додај још један нови ред"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Врати се на ову страну"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Уреди следећи ред"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за "
"слободно померање"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Поново покрени уношење са %s редова"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 1caa724df..8137098c4 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,16 +3,16 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: serbian_latin \n"
+"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sr@latin\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -65,8 +65,8 @@ msgstr "Pretraživanje"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -233,7 +233,7 @@ msgstr "Preimenuj bazu u"
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "i onda"
@@ -578,7 +578,7 @@ msgstr "Novi zapis"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -628,8 +628,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -827,11 +827,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
-"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
+"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte "
+"%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
@@ -1392,7 +1392,7 @@ msgstr "Komentari"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1535,8 +1535,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. "
"Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili."
@@ -2110,8 +2110,8 @@ msgstr "naziv tabele"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da "
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
@@ -2319,8 +2319,8 @@ msgstr "Sortiraj po ključu"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3075,44 +3075,44 @@ msgstr "Generisao"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Baza ne postoji"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Baza ne postoji"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktura"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3908,7 +3908,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Sačuvaj"
@@ -4123,7 +4123,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Poništi"
@@ -4913,8 +4913,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
@@ -7819,43 +7819,43 @@ msgstr "Binarni - ne menjaj"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Unesi kao novi red"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Prikaz kao SQL upit"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Nazad na prethodnu stranu"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Dodaj još jedan novi red"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Vrati se na ovu stranu"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Uredi sledeći red"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Ponovo pokreni unošenje sa %s redova"
diff --git a/po/sv.po b/po/sv.po
index 43093bb94..b00410064 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Sök"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Döp om databasen till"
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "och sedan"
@@ -574,7 +574,7 @@ msgstr "Lägg till"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -624,8 +624,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentation%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -823,8 +823,8 @@ msgstr "SQL-satserna har sparats till filen %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s "
"för metoder att gå runt denna begränsning."
@@ -1389,7 +1389,7 @@ msgstr "Kommentar"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1537,8 +1537,8 @@ msgstr "Välkommen till %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Trolig orsak till detta är att du inte skapade en konfigurationsfil. Du vill "
"kanske använda %1$suppsättningsskript%2$s för att skapa en."
@@ -2112,8 +2112,8 @@ msgstr "tabellnamn"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Detta värde tolkas mha %1$sstrftime%2$s, så du kan använda strängar med "
"tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig "
@@ -2326,8 +2326,8 @@ msgstr "Sortera efter nyckel"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3107,44 +3107,44 @@ msgstr "Genererad av"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Inga databaser"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Inga databaser"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Struktur"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3944,7 +3944,7 @@ msgstr "Partitionsdefinition"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Spara"
@@ -4161,7 +4161,7 @@ msgid "Custom color"
msgstr "Anpassad färg"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Återställ"
@@ -4274,8 +4274,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL serverversion %"
-"s. Detta kan orsaka oförutsägbara beteenden."
+"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL serverversion "
+"%s. Detta kan orsaka oförutsägbara beteenden."
#: main.php:358
#, php-format
@@ -4959,8 +4959,8 @@ msgstr "Ta bort databaserna med samma namn som användarna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s "
"privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från "
@@ -7433,8 +7433,8 @@ msgid ""
"to."
msgstr ""
"Om du känner att detta är nödvändigt, använd ytterligare "
-"säkerhetsinställningar - [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server_config]värdautentisering[/a] och [a@?page=form&"
+"säkerhetsinställningar - [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server_config]värdautentisering[/a] och [a@?page=form&"
"formset=features#tab_Security]betrodd proxyserverlista[/a]. Dock är kanske "
"IP-baserat skydd inte pålitligt om din IP-adress hör till en ISP som "
"tusentals användare, inklusive du, är ansluten till."
@@ -8038,43 +8038,43 @@ msgstr "Binär - ändra inte"
msgid "Upload to BLOB repository"
msgstr "Ladda upp till BLOB-förvaringsplats"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Lägg till som ny rad"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
#, fuzzy
msgid "Show insert query"
msgstr "Visar SQL-fråga"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Gå tillbaka till föregående sida"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Lägg till ytterligare en ny rad"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Gå tillbaka till denna sida"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Ändra nästa rad"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Börja om infogning med %s rader"
diff --git a/po/ta.po b/po/ta.po
index 9e2ffeb02..663212579 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,14 +6,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
+"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr ""
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr ""
msgid "Command"
msgstr ""
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -562,7 +562,7 @@ msgstr ""
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -612,8 +612,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -801,8 +801,8 @@ msgstr ""
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1338,7 +1338,7 @@ msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1479,8 +1479,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s "
"பயன்படுத்தலாம்"
@@ -2024,8 +2024,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2221,8 +2221,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2938,41 +2938,41 @@ msgstr ""
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3722,7 +3722,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr ""
@@ -3859,7 +3859,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr ""
@@ -4597,8 +4597,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7309,40 +7309,40 @@ msgstr ""
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr ""
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr ""
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/te.po b/po/te.po
index f8209dd6a..18601c334 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,14 +6,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-26 14:20+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
+"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: te\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -65,8 +65,8 @@ msgstr "శోధించు"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -237,7 +237,7 @@ msgid "Command"
msgstr "ఆజ్ఞ"
# మొదటి అనువాదము
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "మరియు తరువాత"
@@ -572,7 +572,7 @@ msgstr ""
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -623,8 +623,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
# మొదటి అనువాదము
@@ -815,8 +815,8 @@ msgstr ""
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1366,7 +1366,7 @@ msgstr "వ్యాఖ్య"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1508,8 +1508,8 @@ msgstr "%sకి స్వాగతం"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2054,8 +2054,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2251,8 +2251,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2973,41 +2973,41 @@ msgstr ""
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "అమరికలు"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3776,7 +3776,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "భద్రపరచు"
@@ -3915,7 +3915,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr ""
@@ -4670,8 +4670,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7397,42 +7397,42 @@ msgstr ""
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
# మొదటి అనువాదము
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "మునుపటి పుటకు వెళ్ళు"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr ""
# మొదటి అనువాదము
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "ఈ పుటకు తిరిగి వెళ్ళుము"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/th.po b/po/th.po
index c1bd07cca..bc790601a 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -60,8 +60,8 @@ msgstr "ค้นหา"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -229,7 +229,7 @@ msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น
msgid "Command"
msgstr "คำสั่ง"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -574,7 +574,7 @@ msgstr "แทรก"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -624,8 +624,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -819,8 +819,8 @@ msgstr ""
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1371,7 +1371,7 @@ msgstr "หมายเหตุ"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1514,8 +1514,8 @@ msgstr "%s ยินดีต้อนรับ"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2073,8 +2073,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2272,8 +2272,8 @@ msgstr "เรียงโดยคีย์"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3012,43 +3012,43 @@ msgstr "สร้างโดย"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "ไม่มีฐานข้อมูล"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "โครงสร้าง"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3838,7 +3838,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "บันทึก"
@@ -3982,7 +3982,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "เริ่มใหม่"
@@ -4753,8 +4753,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7517,41 +7517,41 @@ msgstr " ข้อมูลไบนารี - ห้ามแก้ไข "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "แทรกเป็นแถวใหม่"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "ส่งกลับ"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "แทรกระเบียนใหม่"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
#, fuzzy
msgid "Go back to this page"
msgstr "ส่งกลับ"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index d1e276fdf..b52cbaa42 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-21 19:58+0200\n"
"Last-Translator: Burak \n"
"Language-Team: turkish \n"
+"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Ara"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Veritabanını şuna yeniden adlandır"
msgid "Command"
msgstr "Komut"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "ve sonra"
@@ -559,7 +559,7 @@ msgstr "Ekle"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -609,8 +609,8 @@ msgstr "İzleme aktif değil."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sdocumentation%s "
"belgesinden yararlanın."
@@ -802,8 +802,8 @@ msgstr "Döküm dosyası %s dosyasına kaydedildi."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu "
"bulmak için %sbelgelere%s başvurun."
@@ -1322,7 +1322,7 @@ msgstr "Yorum"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1462,8 +1462,8 @@ msgstr "%s sürümüne Hoş Geldiniz"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir "
"tane oluşturmak için %1$skurulum programcığı%2$s kullanmak isteyebilirsiniz."
@@ -2034,8 +2034,8 @@ msgstr "tablo adı"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman "
"biçimlendirme dizgisi kullanabilirsiniz. İlave olarak yandaki dönüşümler "
@@ -2246,8 +2246,8 @@ msgstr "Anahtara göre sırala"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3010,43 +3010,43 @@ msgstr "Üreten:"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
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:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Veritabanına git"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "ayarlar"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Tabloya git"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "yapı"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Görünüme git"
@@ -3838,7 +3838,7 @@ msgstr "PARTITION tanımı"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Kaydet"
@@ -4014,7 +4014,7 @@ msgid "Custom color"
msgstr "Özel renk"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Sıfırla"
@@ -4798,8 +4798,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki "
"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse "
@@ -7753,8 +7753,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %"
-"s, %s tarihinde yayınlandı."
+"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm "
+"%s, %s tarihinde yayınlandı."
#: setup/lib/messages.inc.php:372
#, php-format
@@ -7868,42 +7868,42 @@ msgstr "Binari - düzenlemeyiniz"
msgid "Upload to BLOB repository"
msgstr "BLOB Havuzuna gönder"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Yeni satır olarak ekle"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Yeni satır olarak ekle ve hataları yoksay"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Ekleme sorgusunu göster"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Önceki sayfaya geri dön"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Yeni başka bir satır ekle"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Bu sayfaya geri dön"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Sonraki satırı düzenle"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "%s satırlı eklemeyi yeniden başlat"
diff --git a/po/tt.po b/po/tt.po
index d3999798d..4989a43db 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal \n"
"Language-Team: tatarish \n"
+"Language: tt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: tt\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -64,8 +64,8 @@ msgstr "Ezläw"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -232,7 +232,7 @@ msgstr "Biremlekne bolay atap quy"
msgid "Command"
msgstr "Ämer"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ", şunnan soñ"
@@ -575,7 +575,7 @@ msgstr "Östäw"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -825,8 +825,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1377,7 +1377,7 @@ msgstr "Açıqlama"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1520,8 +1520,8 @@ msgstr "%s siña İsäñme di"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2090,8 +2090,8 @@ msgstr "tüşämä adı"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2291,8 +2291,8 @@ msgstr "Qullanası tezeş"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3048,44 +3048,44 @@ msgstr "Ürçätkeç:"
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:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "Biremleklär yuq"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
#, fuzzy
msgid "Go to table"
msgstr "Biremleklär yuq"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "Tözeleş"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3775,8 +3775,8 @@ 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-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."
+"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/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
#: libraries/tbl_links.inc.php:141
@@ -3878,7 +3878,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Saqla"
@@ -4075,7 +4075,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Awdar"
@@ -4856,8 +4856,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server "
"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege "
@@ -7661,42 +7661,42 @@ msgstr "Binar - üzgärtmäslek"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Yaña yazma kert tä"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Aldağı bitkä qaytu"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Tağın ber yazma östäw"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Bu bitkä kire qaytası"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Kiläse yazma üzgärtü"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/ug.po b/po/ug.po
new file mode 100644
index 000000000..646651bb8
--- /dev/null
+++ b/po/ug.po
@@ -0,0 +1,7783 @@
+# phpMyAdmin translation.
+# Copyright (C) 2003 - 2010 phpMyAdmin devel team
+# This file is distributed under the same license as the phpMyAdmin package.
+# FIRST AUTHOR , YEAR.
+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-07-14 11:36+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: Uyghur \n"
+"Language: ug\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.5.3\n"
+
+#: browse_foreigners.php:38 browse_foreigners.php:59
+#: libraries/display_tbl.lib.php:417 server_privileges.php:1514
+msgid "Show all"
+msgstr ""
+
+#: browse_foreigners.php:82 libraries/common.lib.php:2313
+#: libraries/display_pdf_schema.lib.php:17 libraries/display_tbl.lib.php:394
+#: libraries/export/pdf.php:147 pdf_schema.php:283 pdf_schema.php:1123
+#: pdf_schema.php:1139
+msgid "Page number:"
+msgstr ""
+
+#: browse_foreigners.php:132
+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 "
+"cross-window updates."
+msgstr ""
+
+#: browse_foreigners.php:150 db_structure.php:79 db_structure.php:80
+#: db_structure.php:91 db_structure.php:93 db_structure.php:104
+#: db_structure.php:106 libraries/common.lib.php:2831
+#: libraries/common.lib.php:2838 libraries/db_links.inc.php:75
+#: libraries/tbl_links.inc.php:63
+msgid "Search"
+msgstr ""
+
+#: browse_foreigners.php:153 db_operations.php:385 db_operations.php:429
+#: db_operations.php:499 db_operations.php:609 db_search.php:362
+#: db_structure.php:567 js/messages.php:48 libraries/Config.class.php:1046
+#: libraries/Theme_Manager.class.php:311
+#: libraries/auth/cookie.auth.lib.php:290 libraries/common.lib.php:719
+#: libraries/common.lib.php:1335 libraries/common.lib.php:2288
+#: libraries/display_change_password.lib.php:82
+#: libraries/display_create_table.lib.php:63
+#: libraries/display_export.lib.php:275 libraries/display_import.lib.php:275
+#: libraries/display_pdf_schema.lib.php:68 libraries/display_tbl.lib.php:532
+#: libraries/display_tbl.lib.php:614 libraries/replication_gui.lib.php:76
+#: libraries/replication_gui.lib.php:372 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
+#: main.php:128 navigation.php:237 pdf_pages.php:292 pdf_pages.php:328
+#: pdf_pages.php:530 pmd_pdf.php:116 server_binlog.php:142
+#: server_privileges.php:664 server_privileges.php:1624
+#: server_privileges.php:1971 server_privileges.php:2018
+#: server_privileges.php:2057 server_replication.php:235
+#: server_replication.php:318 server_replication.php:341
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
+#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
+#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
+#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
+#: view_create.php:182 view_operations.php:101
+msgid "Go"
+msgstr ""
+
+#: browse_foreigners.php:168 browse_foreigners.php:172
+#: libraries/Index.class.php:442 tbl_tracking.php:320
+msgid "Keyname"
+msgstr ""
+
+#: browse_foreigners.php:169 browse_foreigners.php:171
+#: server_collations.php:55 server_collations.php:67 server_engines.php:59
+#: server_status.php:739
+msgid "Description"
+msgstr ""
+
+#: browse_foreigners.php:247 browse_foreigners.php:256
+#: browse_foreigners.php:268 browse_foreigners.php:276
+msgid "Use this value"
+msgstr ""
+
+#: db_create.php:46
+#, php-format
+msgid "Database %1$s has been created."
+msgstr ""
+
+#: db_datadict.php:49 db_operations.php:378
+msgid "Database comment: "
+msgstr ""
+
+#: db_datadict.php:165 libraries/tbl_properties.inc.php:724
+#: pdf_schema.php:1236 tbl_operations.php:347 tbl_printview.php:129
+msgid "Table comments"
+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/tbl_properties.inc.php:99 libraries/tbl_properties.inc.php:275
+#: pdf_schema.php:1262 pdf_schema.php:1283 tbl_change.php:307
+#: tbl_indexes.php:189 tbl_printview.php:141 tbl_relation.php:402
+#: tbl_select.php:134 tbl_structure.php:177 tbl_tracking.php:273
+#: tbl_tracking.php:324
+msgid "Column"
+msgstr ""
+
+#: db_datadict.php:175 db_printview.php:106 libraries/Index.class.php:443
+#: 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/tbl_properties.inc.php:100
+#: pdf_schema.php:1263 pdf_schema.php:1284 server_privileges.php:2070
+#: tbl_change.php:286 tbl_change.php:313 tbl_printview.php:142
+#: tbl_printview.php:312 tbl_select.php:135 tbl_structure.php:178
+#: tbl_structure.php:659 tbl_tracking.php:274 tbl_tracking.php:321
+msgid "Type"
+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/tbl_properties.inc.php:109 pdf_schema.php:1265
+#: pdf_schema.php:1286 tbl_change.php:322 tbl_printview.php:144
+#: tbl_structure.php:181 tbl_tracking.php:276 tbl_tracking.php:327
+msgid "Null"
+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/tbl_properties.inc.php:106
+#: pdf_schema.php:1266 pdf_schema.php:1287 tbl_printview.php:145
+#: tbl_structure.php:182 tbl_tracking.php:277
+msgid "Default"
+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 pdf_schema.php:1268 pdf_schema.php:1289
+#: tbl_printview.php:149
+msgid "Links to"
+msgstr ""
+
+#: db_datadict.php:184 db_printview.php:112 libraries/export/htmlword.php:252
+#: libraries/export/latex.php:45 libraries/export/latex.php:365
+#: libraries/export/odt.php:38 libraries/export/odt.php:312
+#: libraries/export/sql.php:30 libraries/export/texytext.php:241
+#: libraries/tbl_properties.inc.php:130 pdf_schema.php:1279
+#: pdf_schema.php:1290 tbl_printview.php:151
+msgid "Comments"
+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/mult_submits.inc.php:263
+#: pdf_schema.php:1344 server_privileges.php:1568 server_privileges.php:1579
+#: server_privileges.php:1889 server_privileges.php:1894
+#: server_privileges.php:2187 sql.php:132 sql.php:194 tbl_printview.php:228
+#: tbl_structure.php:350 tbl_tracking.php:337 tbl_tracking.php:342
+msgid "No"
+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/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 libraries/mult_submits.inc.php:106
+#: libraries/mult_submits.inc.php:111 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:273 pdf_schema.php:1344
+#: server_databases.php:64 server_privileges.php:1565
+#: server_privileges.php:1579 server_privileges.php:1889
+#: server_privileges.php:1892 server_privileges.php:2187 sql.php:193
+#: tbl_printview.php:228 tbl_structure.php:40 tbl_structure.php:350
+#: tbl_tracking.php:335 tbl_tracking.php:340
+msgid "Yes"
+msgstr ""
+
+#: db_datadict.php:322 db_printview.php:266 tbl_printview.php:497
+msgid "Print"
+msgstr ""
+
+#: db_export.php:29
+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 navigation.php:332
+msgid "No tables found in database."
+msgstr ""
+
+#: db_export.php:43 db_search.php:344 server_export.php:27
+msgid "Select All"
+msgstr ""
+
+#: db_export.php:45 db_search.php:347 server_export.php:29
+msgid "Unselect All"
+msgstr ""
+
+#: db_operations.php:38 tbl_create.php:54
+msgid "The database name is empty!"
+msgstr ""
+
+#: db_operations.php:236
+#, php-format
+msgid "Database %s has been renamed to %s"
+msgstr ""
+
+#: db_operations.php:240
+#, php-format
+msgid "Database %s has been copied to %s"
+msgstr ""
+
+#: db_operations.php:412
+msgid "Rename database to"
+msgstr ""
+
+#: db_operations.php:417 server_processlist.php:57
+msgid "Command"
+msgstr ""
+
+#: db_operations.php:429 tbl_change.php:1142
+msgid "and then"
+msgstr ""
+
+#: db_operations.php:455
+msgid "Copy database to"
+msgstr ""
+
+#: db_operations.php:462 tbl_operations.php:528 tbl_tracking.php:388
+msgid "Structure only"
+msgstr ""
+
+#: db_operations.php:463 tbl_operations.php:529 tbl_tracking.php:390
+msgid "Structure and data"
+msgstr ""
+
+#: db_operations.php:464 tbl_operations.php:530 tbl_tracking.php:389
+msgid "Data only"
+msgstr ""
+
+#: db_operations.php:472
+msgid "CREATE DATABASE before copying"
+msgstr ""
+
+#: db_operations.php:475 libraries/export/sql.php:52
+#: libraries/export/sql.php:74 libraries/export/sql.php:76
+#: libraries/export/sql.php:82 tbl_operations.php:536
+#, php-format
+msgid "Add %s"
+msgstr ""
+
+#: db_operations.php:479 libraries/export/sql.php:78 tbl_operations.php:299
+#: tbl_operations.php:538
+msgid "Add AUTO_INCREMENT value"
+msgstr ""
+
+#: db_operations.php:483 tbl_operations.php:545
+msgid "Add constraints"
+msgstr ""
+
+#: db_operations.php:496
+msgid "Switch to copied database"
+msgstr ""
+
+#: db_operations.php:537
+msgid "BLOB Repository"
+msgstr ""
+
+#: db_operations.php:540 db_tracking.php:76 libraries/common.lib.php:1352
+#: libraries/server_links.inc.php:49 server_processlist.php:59
+#: tbl_tracking.php:596 test/theme.php:101
+msgid "Status"
+msgstr ""
+
+#: db_operations.php:548
+msgctxt "BLOB repository"
+msgid "Enabled"
+msgstr ""
+
+#: db_operations.php:552
+msgid "Disable"
+msgstr ""
+
+#: db_operations.php:562
+msgid "Damaged"
+msgstr ""
+
+#: db_operations.php:566
+msgctxt "BLOB repository"
+msgid "Repair"
+msgstr ""
+
+#: db_operations.php:574
+msgctxt "BLOB repository"
+msgid "Disabled"
+msgstr ""
+
+#: db_operations.php:578
+msgid "Enable"
+msgstr ""
+
+#: db_operations.php:602 libraries/Index.class.php:448
+#: libraries/db_structure.lib.php:62 libraries/mysql_charsets.lib.php:107
+#: libraries/tbl_properties.inc.php:107 libraries/tbl_properties.inc.php:730
+#: server_collations.php:54 server_collations.php:66 server_databases.php:111
+#: tbl_operations.php:363 tbl_select.php:136 tbl_structure.php:179
+#: tbl_structure.php:767 tbl_tracking.php:275 tbl_tracking.php:326
+msgid "Collation"
+msgstr ""
+
+#: db_operations.php:615 main.php:316 pdf_schema.php:34
+#, php-format
+msgid ""
+"The additional features for working with linked tables have been "
+"deactivated. To find out why click %shere%s."
+msgstr ""
+
+#: db_operations.php:648
+msgid "Edit PDF Pages"
+msgstr ""
+
+#: db_printview.php:104 db_tracking.php:72 db_tracking.php:157
+#: libraries/db_structure.lib.php:46 libraries/export/xml.php:328
+#: libraries/header.inc.php:126 pdf_pages.php:424 server_privileges.php:1665
+#: server_privileges.php:1721 server_privileges.php:1985
+#: server_synchronize.php:423 server_synchronize.php:866 tbl_tracking.php:592
+#: test/theme.php:75
+msgid "Table"
+msgstr ""
+
+#: db_printview.php:105 libraries/db_structure.lib.php:56
+#: libraries/header_printview.inc.php:63 libraries/import.lib.php:146
+#: navigation.php:638 navigation.php:660 server_databases.php:122
+#: tbl_printview.php:393 tbl_structure.php:365 tbl_structure.php:777
+msgid "Rows"
+msgstr ""
+
+#: db_printview.php:109 libraries/db_structure.lib.php:67 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
+msgid "in use"
+msgstr ""
+
+#: db_printview.php:187 libraries/db_info.inc.php:88
+#: libraries/export/sql.php:514 pdf_schema.php:1241 tbl_printview.php:433
+#: tbl_structure.php:809
+msgid "Creation"
+msgstr ""
+
+#: db_printview.php:196 libraries/db_info.inc.php:93
+#: libraries/export/sql.php:519 pdf_schema.php:1246 tbl_printview.php:443
+#: tbl_structure.php:817
+msgid "Last update"
+msgstr ""
+
+#: db_printview.php:205 libraries/db_info.inc.php:98
+#: libraries/export/sql.php:524 pdf_schema.php:1251 tbl_printview.php:453
+#: tbl_structure.php:825
+msgid "Last check"
+msgstr ""
+
+#: db_printview.php:222 db_structure.php:480
+#, php-format
+msgid "%s table"
+msgid_plural "%s tables"
+msgstr[0] ""
+msgstr[1] ""
+
+#: db_qbe.php:29 import.php:454 libraries/Message.class.php:191
+#: libraries/display_tbl.lib.php:1981 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
+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
+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
+#: server_databases.php:170 server_databases.php:187 tbl_operations.php:260
+#: tbl_select.php:312
+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
+#: server_databases.php:170 server_databases.php:187 tbl_operations.php:261
+#: tbl_select.php:313
+msgid "Descending"
+msgstr ""
+
+#: db_qbe.php:264 db_tracking.php:78 libraries/display_tbl.lib.php:308
+#: tbl_change.php:276 tbl_tracking.php:597
+msgid "Show"
+msgstr ""
+
+#: db_qbe.php:300
+msgid "Criteria"
+msgstr ""
+
+#: db_qbe.php:353 db_qbe.php:435 db_qbe.php:527 db_qbe.php:558
+msgid "Ins"
+msgstr ""
+
+#: db_qbe.php:357 db_qbe.php:439 db_qbe.php:524 db_qbe.php:555
+msgid "And"
+msgstr ""
+
+#: db_qbe.php:366 db_qbe.php:447 db_qbe.php:529 db_qbe.php:560
+msgid "Del"
+msgstr ""
+
+#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
+#: libraries/display_import.lib.php:165 libraries/tbl_properties.inc.php:779
+#: server_privileges.php:297 tbl_change.php:1028 tbl_indexes.php:250
+#: tbl_select.php:286
+msgid "Or"
+msgstr ""
+
+#: db_qbe.php:507
+msgid "Modify"
+msgstr ""
+
+#: db_qbe.php:584
+msgid "Add/Delete criteria rows"
+msgstr ""
+
+#: db_qbe.php:596
+msgid "Add/Delete columns"
+msgstr ""
+
+#: db_qbe.php:609 db_qbe.php:634
+msgid "Update Query"
+msgstr ""
+
+#: db_qbe.php:617
+msgid "Use Tables"
+msgstr ""
+
+#: db_qbe.php:640
+#, php-format
+msgid "SQL query on database %s:"
+msgstr ""
+
+#: db_qbe.php:934 libraries/common.lib.php:1225
+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:671 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183
+msgid "Access denied"
+msgstr ""
+
+#: db_search.php:80 db_search.php:311
+msgid "at least one of the words"
+msgstr ""
+
+#: db_search.php:81 db_search.php:312
+msgid "all words"
+msgstr ""
+
+#: db_search.php:82 db_search.php:313
+msgid "the exact phrase"
+msgstr ""
+
+#: db_search.php:83 db_search.php:314
+msgid "as regular expression"
+msgstr ""
+
+#: db_search.php:242
+#, php-format
+msgid "Search results for \"%s\" %s:"
+msgstr ""
+
+#: db_search.php:260
+#, 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/common.lib.php:2833
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:467
+msgid "Browse"
+msgstr ""
+
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2056 libraries/sql_query_form.lib.php:470
+#: pdf_pages.php:286 pdf_pages.php:425 pdf_pages.php:461 pdf_pages.php:489
+#: pmd_general.php:377 setup/frames/index.inc.php:125
+#: setup/frames/index.inc.php:216 tbl_row_action.php:63
+msgid "Delete"
+msgstr ""
+
+#: db_search.php:285
+#, php-format
+msgid "Total: %s match(es)"
+msgstr ""
+
+#: db_search.php:299
+msgid "Search in database"
+msgstr ""
+
+#: db_search.php:302
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr ""
+
+#: db_search.php:307
+msgid "Find:"
+msgstr ""
+
+#: db_search.php:311 db_search.php:312
+msgid "Words are separated by a space character (\" \")."
+msgstr ""
+
+#: db_search.php:325
+msgid "Inside table(s):"
+msgstr ""
+
+#: db_search.php:355
+msgid "Inside column:"
+msgstr ""
+
+#: db_structure.php:81 db_structure.php:82 db_structure.php:94
+#: db_structure.php:95 db_structure.php:107 db_structure.php:108
+#: libraries/common.lib.php:2832 libraries/sql_query_form.lib.php:334
+#: libraries/sql_query_form.lib.php:337 libraries/tbl_links.inc.php:76
+msgid "Insert"
+msgstr ""
+
+#: db_structure.php:83 db_structure.php:96 db_structure.php:109
+#: libraries/common.lib.php:2829 libraries/common.lib.php:2836
+#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
+#: libraries/export/latex.php:33 libraries/export/latex.php:337
+#: libraries/export/odt.php:32 libraries/export/sql.php:60
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
+#: libraries/tbl_links.inc.php:56 pmd_general.php:134
+#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
+msgid "Structure"
+msgstr ""
+
+#: db_structure.php:84 db_structure.php:85 db_structure.php:97
+#: db_structure.php:98 db_structure.php:110 db_structure.php:111
+#: db_structure.php:545 db_structure.php:546 db_tracking.php:91
+#: libraries/Index.class.php:483 libraries/common.lib.php:1656
+#: libraries/db_links.inc.php:100 libraries/mult_submits.inc.php:36
+#: libraries/mult_submits.inc.php:73 libraries/tbl_links.inc.php:127
+#: server_databases.php:352 tbl_structure.php:27 tbl_structure.php:151
+#: tbl_structure.php:152 tbl_structure.php:471
+msgid "Drop"
+msgstr ""
+
+#: db_structure.php:86 db_structure.php:87 db_structure.php:99
+#: db_structure.php:100 db_structure.php:112 db_structure.php:113
+#: db_structure.php:543 db_structure.php:544 libraries/common.lib.php:1655
+#: libraries/mult_submits.inc.php:39 libraries/tbl_links.inc.php:105
+msgid "Empty"
+msgstr ""
+
+#: db_structure.php:316 libraries/tbl_links.inc.php:100
+#, php-format
+msgid "Table %s has been emptied"
+msgstr ""
+
+#: db_structure.php:326 libraries/tbl_links.inc.php:133
+#, php-format
+msgid "View %s has been dropped"
+msgstr ""
+
+#: db_structure.php:326 libraries/tbl_links.inc.php:133
+#, php-format
+msgid "Table %s has been dropped"
+msgstr ""
+
+#: db_structure.php:333
+msgid "Tracking is active."
+msgstr ""
+
+#: db_structure.php:335
+msgid "Tracking is not active."
+msgstr ""
+
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
+#, php-format
+msgid ""
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
+msgstr ""
+
+#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
+#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
+msgid "View"
+msgstr ""
+
+#: db_structure.php:485 libraries/db_structure.lib.php:49
+#: libraries/server_links.inc.php:70 server_replication.php:33
+#: server_replication.php:164 server_status.php:369
+msgid "Replication"
+msgstr ""
+
+#: db_structure.php:489
+msgid "Sum"
+msgstr ""
+
+#: db_structure.php:496 libraries/StorageEngine.class.php:356
+#, php-format
+msgid "%s is the default storage engine on this MySQL server."
+msgstr ""
+
+#: db_structure.php:524 db_structure.php:541 db_structure.php:542
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
+#: libraries/mult_submits.inc.php:16 server_databases.php:346
+#: server_databases.php:351 server_privileges.php:1596 tbl_structure.php:455
+#: tbl_structure.php:464
+msgid "With selected:"
+msgstr ""
+
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
+#: server_databases.php:348 server_privileges.php:569
+#: server_privileges.php:1599 tbl_structure.php:458
+msgid "Check All"
+msgstr ""
+
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
+#: libraries/replication_gui.lib.php:36 server_databases.php:350
+#: server_privileges.php:572 server_privileges.php:1603 tbl_structure.php:462
+msgid "Uncheck All"
+msgstr ""
+
+#: db_structure.php:536
+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/mult_submits.inc.php:28
+#: tbl_structure.php:492 tbl_structure.php:494
+msgid "Print view"
+msgstr ""
+
+#: db_structure.php:549 db_structure.php:550 libraries/mult_submits.inc.php:42
+#: tbl_operations.php:581
+msgid "Check table"
+msgstr ""
+
+#: db_structure.php:551 db_structure.php:552 libraries/mult_submits.inc.php:47
+#: tbl_operations.php:621 tbl_structure.php:709 tbl_structure.php:711
+msgid "Optimize table"
+msgstr ""
+
+#: db_structure.php:553 db_structure.php:554 libraries/mult_submits.inc.php:52
+#: tbl_operations.php:611
+msgid "Repair table"
+msgstr ""
+
+#: db_structure.php:555 db_structure.php:556 libraries/mult_submits.inc.php:57
+#: tbl_operations.php:601
+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/mult_submits.inc.php:62
+#: libraries/server_links.inc.php:84 libraries/tbl_links.inc.php:82
+#: pmd_pdf.php:84 pmd_pdf.php:109 server_privileges.php:1380
+#: setup/frames/menu.inc.php:22 tbl_row_action.php:59
+msgid "Export"
+msgstr ""
+
+#: db_structure.php:606 libraries/display_pdf_schema.lib.php:44
+msgid "Data Dictionary"
+msgstr ""
+
+#: db_tracking.php:66
+msgid "Tracked tables"
+msgstr ""
+
+#: db_tracking.php:71 libraries/export/htmlword.php:86
+#: libraries/export/latex.php:148 libraries/export/odt.php:113
+#: libraries/export/sql.php:342 libraries/export/texytext.php:84
+#: libraries/export/xml.php:255 libraries/header.inc.php:106
+#: libraries/header_printview.inc.php:58 server_databases.php:169
+#: server_privileges.php:1660 server_privileges.php:1721
+#: server_privileges.php:1979 server_processlist.php:56
+#: server_synchronize.php:1179 server_synchronize.php:1183
+#: tbl_tracking.php:591 test/theme.php:65
+msgid "Database"
+msgstr ""
+
+#: db_tracking.php:73
+msgid "Last version"
+msgstr ""
+
+#: db_tracking.php:74 tbl_tracking.php:594
+msgid "Created"
+msgstr ""
+
+#: db_tracking.php:75 tbl_tracking.php:595
+msgid "Updated"
+msgstr ""
+
+#: db_tracking.php:77 libraries/Index.class.php:440
+#: libraries/db_structure.lib.php:53 server_databases.php:203
+#: server_privileges.php:1542 server_privileges.php:1725
+#: server_privileges.php:2073 tbl_structure.php:187
+msgid "Action"
+msgstr ""
+
+#: db_tracking.php:88 db_tracking.php:120
+msgid "Delete tracking data for this table"
+msgstr ""
+
+#: db_tracking.php:106 tbl_tracking.php:548 tbl_tracking.php:606
+#: tbl_tracking.php:613
+msgid "active"
+msgstr ""
+
+#: db_tracking.php:108 tbl_tracking.php:550 tbl_tracking.php:608
+#: tbl_tracking.php:610
+msgid "not active"
+msgstr ""
+
+#: db_tracking.php:121
+msgid "Versions"
+msgstr ""
+
+#: db_tracking.php:122 tbl_tracking.php:379 tbl_tracking.php:624
+msgid "Tracking report"
+msgstr ""
+
+#: db_tracking.php:123 tbl_tracking.php:251 tbl_tracking.php:624
+msgid "Structure snapshot"
+msgstr ""
+
+#: db_tracking.php:152
+msgid "Untracked tables"
+msgstr ""
+
+#: db_tracking.php:172 db_tracking.php:174 tbl_structure.php:528
+#: tbl_structure.php:530
+msgid "Track table"
+msgstr ""
+
+#: db_tracking.php:200
+msgid "Database Log"
+msgstr ""
+
+#: export.php:62
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
+#: import.php:60
+#, php-format
+msgid ""
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
+msgstr ""
+
+#: import.php:279 import.php:332 libraries/File.class.php:849
+#: libraries/File.class.php:961
+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
+#, 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
+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 "
+"[a@./Documentation.html#faq1_16@Documentation]FAQ 1.16[/a]."
+msgstr ""
+
+#: import.php:372 libraries/display_import.lib.php:23
+msgid "Could not load import plugins, please check your installation!"
+msgstr ""
+
+#: import.php:397
+msgid "The bookmark has been deleted."
+msgstr ""
+
+#: import.php:401
+msgid "Showing bookmark"
+msgstr ""
+
+#: import.php:403 sql.php:626
+#, php-format
+msgid "Bookmark %s created"
+msgstr ""
+
+#: import.php:409 import.php:415
+#, php-format
+msgid "Import has been successfully finished, %d queries executed."
+msgstr ""
+
+#: import.php:424
+msgid ""
+"Script timeout passed, if you want to finish import, please resubmit same "
+"file and import will resume."
+msgstr ""
+
+#: import.php:426
+msgid ""
+"However on last run no data has been parsed, this usually means phpMyAdmin "
+"won't be able to finish this import unless you increase php time limits."
+msgstr ""
+
+#: import_status.php:31 libraries/common.lib.php:667 pdf_schema.php:241
+#: user_password.php:115
+msgid "Back"
+msgstr ""
+
+#: index.php:190
+msgid "phpMyAdmin is more friendly with a frames-capable browser."
+msgstr ""
+
+#: js/messages.php:25 server_synchronize.php:345 server_synchronize.php:357
+#: server_synchronize.php:373 server_synchronize.php:380
+#: server_synchronize.php:739 server_synchronize.php:767
+#: server_synchronize.php:795 server_synchronize.php:807
+msgid "Click to select"
+msgstr ""
+
+#: js/messages.php:26
+msgid "Click to unselect"
+msgstr ""
+
+#: js/messages.php:27 libraries/import.lib.php:104 sql.php:89
+msgid "\"DROP DATABASE\" statements are disabled."
+msgstr ""
+
+#: js/messages.php:30 libraries/mult_submits.inc.php:258 sql.php:188
+msgid "Do you really want to "
+msgstr ""
+
+#: js/messages.php:31 libraries/mult_submits.inc.php:258 sql.php:172
+msgid "You are about to DESTROY a complete database!"
+msgstr ""
+
+#: js/messages.php:34
+msgid "You are about to DISABLE a BLOB Repository!"
+msgstr ""
+
+#: js/messages.php:35
+#, php-format
+msgid "Are you sure you want to disable all BLOB references for database %s?"
+msgstr ""
+
+#: js/messages.php:38
+msgid "Missing value in the form!"
+msgstr ""
+
+#: js/messages.php:39
+msgid "This is not a number!"
+msgstr ""
+
+#: js/messages.php:42
+msgid "The host name is empty!"
+msgstr ""
+
+#: js/messages.php:43
+msgid "The user name is empty!"
+msgstr ""
+
+#: js/messages.php:44 server_privileges.php:1236 user_password.php:70
+msgid "The password is empty!"
+msgstr ""
+
+#: js/messages.php:45 server_privileges.php:1234 user_password.php:73
+msgid "The passwords aren't the same!"
+msgstr ""
+
+#: js/messages.php:49 pmd_general.php:342 pmd_general.php:379
+msgid "Cancel"
+msgstr ""
+
+#: js/messages.php:52 pmd_save_pos.php:54
+msgid "Modifications have been saved"
+msgstr ""
+
+#: js/messages.php:53 pmd_relation_upd.php:49
+msgid "Relation deleted"
+msgstr ""
+
+#: js/messages.php:54 pmd_relation_new.php:64
+msgid "FOREIGN KEY relation added"
+msgstr ""
+
+#: js/messages.php:55 pmd_relation_new.php:86
+msgid "Internal relation added"
+msgstr ""
+
+#: js/messages.php:56 pmd_relation_new.php:63 pmd_relation_new.php:88
+msgid "Error: Relation not added."
+msgstr ""
+
+#: js/messages.php:57 pmd_relation_new.php:31
+msgid "Error: relation already exists."
+msgstr ""
+
+#: js/messages.php:58
+msgid "Error saving coordinates for Designer."
+msgstr ""
+
+#: js/messages.php:59 libraries/relation.lib.php:107
+#: libraries/relation.lib.php:119
+msgid "General relation features"
+msgstr ""
+
+#: js/messages.php:59 libraries/relation.lib.php:101
+#: libraries/relation.lib.php:108
+msgid "Disabled"
+msgstr ""
+
+#: js/messages.php:60
+msgid "Select referenced key"
+msgstr ""
+
+#: js/messages.php:61
+msgid "Select Foreign Key"
+msgstr ""
+
+#: js/messages.php:62
+msgid "Please select the primary key or a unique key"
+msgstr ""
+
+#: js/messages.php:63 pmd_general.php:77 tbl_relation.php:548
+msgid "Choose column to display"
+msgstr ""
+
+#. l10n: Display text for calendar close link
+#: js/messages.php:73
+msgid "Done"
+msgstr ""
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:75
+msgid "Prev"
+msgstr ""
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:77 libraries/common.lib.php:2353
+#: libraries/common.lib.php:2356 libraries/display_tbl.lib.php:338
+#: server_binlog.php:205 server_binlog.php:207 tbl_printview.php:423
+#: tbl_structure.php:801
+msgid "Next"
+msgstr ""
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:79
+msgid "Today"
+msgstr ""
+
+#: js/messages.php:82
+msgid "January"
+msgstr ""
+
+#: js/messages.php:83
+msgid "February"
+msgstr ""
+
+#: js/messages.php:84
+msgid "March"
+msgstr ""
+
+#: js/messages.php:85
+msgid "April"
+msgstr ""
+
+#: js/messages.php:86
+msgid "May"
+msgstr ""
+
+#: js/messages.php:87
+msgid "June"
+msgstr ""
+
+#: js/messages.php:88
+msgid "July"
+msgstr ""
+
+#: js/messages.php:89
+msgid "August"
+msgstr ""
+
+#: js/messages.php:90
+msgid "September"
+msgstr ""
+
+#: js/messages.php:91
+msgid "October"
+msgstr ""
+
+#: js/messages.php:92
+msgid "November"
+msgstr ""
+
+#: js/messages.php:93
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:97 libraries/common.lib.php:1557
+msgid "Jan"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:99 libraries/common.lib.php:1559
+msgid "Feb"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:101 libraries/common.lib.php:1561
+msgid "Mar"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:103 libraries/common.lib.php:1563
+msgid "Apr"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:105 libraries/common.lib.php:1565
+msgctxt "Short month name"
+msgid "May"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:107 libraries/common.lib.php:1567
+msgid "Jun"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:109 libraries/common.lib.php:1569
+msgid "Jul"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/common.lib.php:1571
+msgid "Aug"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/common.lib.php:1573
+msgid "Sep"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/common.lib.php:1575
+msgid "Oct"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/common.lib.php:1577
+msgid "Nov"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:119 libraries/common.lib.php:1579
+msgid "Dec"
+msgstr ""
+
+#: js/messages.php:122
+msgid "Sunday"
+msgstr ""
+
+#: js/messages.php:123
+msgid "Monday"
+msgstr ""
+
+#: js/messages.php:124
+msgid "Tuesday"
+msgstr ""
+
+#: js/messages.php:125
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:126
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:127
+msgid "Friday"
+msgstr ""
+
+#: js/messages.php:128
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:132 libraries/common.lib.php:1582
+msgid "Sun"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:134 libraries/common.lib.php:1584
+msgid "Mon"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:136 libraries/common.lib.php:1586
+msgid "Tue"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:138 libraries/common.lib.php:1588
+msgid "Wed"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:140 libraries/common.lib.php:1590
+msgid "Thu"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:142 libraries/common.lib.php:1592
+msgid "Fri"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:144 libraries/common.lib.php:1594
+msgid "Sat"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:148
+msgid "Su"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:150
+msgid "Mo"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:152
+msgid "Tu"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:154
+msgid "We"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:156
+msgid "Th"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:158
+msgid "Fr"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:160
+msgid "Sa"
+msgstr ""
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:162
+msgid "Wk"
+msgstr ""
+
+#: js/messages.php:164
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:165
+msgid "Minute"
+msgstr ""
+
+#: js/messages.php:166
+msgid "Second"
+msgstr ""
+
+#: libraries/Config.class.php:1015
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:344 libraries/File.class.php:432
+#: libraries/File.class.php:569 libraries/File.class.php:708
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:414
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:417
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:420
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:423
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:426
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:429
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:908
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:428 tbl_relation.php:529
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:433 server_databases.php:132 tbl_tracking.php:316
+msgid "Indexes"
+msgstr ""
+
+#: libraries/Index.class.php:444 libraries/mult_submits.inc.php:103
+#: libraries/tbl_properties.inc.php:519 tbl_structure.php:33
+#: tbl_structure.php:155 tbl_structure.php:159 tbl_structure.php:474
+#: tbl_tracking.php:322
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:445 tbl_tracking.php:323
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:325
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:450 tbl_tracking.php:279 tbl_tracking.php:328
+msgid "Comment"
+msgstr ""
+
+#: libraries/Index.class.php:466 libraries/common.lib.php:616
+#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
+#: pdf_pages.php:285 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
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:476
+#, php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:576
+#, 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/server_links.inc.php:41
+#: server_databases.php:88 server_privileges.php:1660
+#: setup/lib/messages.inc.php:110 test/theme.php:93
+msgid "Databases"
+msgstr ""
+
+#: libraries/Message.class.php:211 libraries/common.lib.php:581
+#: libraries/core.lib.php:261 libraries/import.lib.php:135 pdf_schema.php:32
+#: pdf_schema.php:232 tbl_change.php:1024 tbl_operations.php:213
+#: tbl_relation.php:290 view_operations.php:62
+msgid "Error"
+msgstr ""
+
+#: libraries/Message.class.php:282
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:301
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:320
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/StorageEngine.class.php:198
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:359
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:366
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1019
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1033 tbl_get_field.php:26
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1048
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1132
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Theme.class.php:162
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:384
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:387
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:115
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:153
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:221
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:297 test/theme.php:161 themes.php:21
+#: themes.php:41
+msgid "Theme / Style"
+msgstr ""
+
+#: libraries/auth/config.auth.lib.php:77
+msgid "Cannot connect: invalid settings."
+msgstr ""
+
+#: libraries/auth/config.auth.lib.php:92
+#: libraries/auth/cookie.auth.lib.php:217 libraries/auth/http.auth.lib.php:65
+#: test/theme.php:152
+#, php-format
+msgid "Welcome to %s"
+msgstr ""
+
+#: libraries/auth/config.auth.lib.php:107
+#, php-format
+msgid ""
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
+msgstr ""
+
+#: libraries/auth/config.auth.lib.php:116
+msgid ""
+"phpMyAdmin tried to connect to the MySQL server, and the server rejected the "
+"connection. You should check the host, username and password in your "
+"configuration and make sure that they correspond to the information given by "
+"the administrator of the MySQL server."
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:242
+msgid "Log in"
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:244
+#: libraries/auth/cookie.auth.lib.php:246
+#: libraries/navigation_header.inc.php:93
+#: libraries/navigation_header.inc.php:95
+msgid "phpMyAdmin documentation"
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:256
+#: libraries/auth/cookie.auth.lib.php:257
+msgid "You can enter hostname/IP address and port separated by space."
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:256
+msgid "Server:"
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:261
+msgid "Username:"
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:265
+msgid "Password:"
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:272
+msgid "Server Choice"
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:318 libraries/header.inc.php:59
+msgid "Cookies must be enabled past this point."
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:669
+#: libraries/auth/signon.auth.lib.php:181
+msgid ""
+"Login without a password is forbidden by configuration (see AllowNoPassword)"
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:673
+#: libraries/auth/signon.auth.lib.php:185
+#, php-format
+msgid "No activity within %s seconds; please log in again"
+msgstr ""
+
+#: libraries/auth/cookie.auth.lib.php:683
+#: libraries/auth/cookie.auth.lib.php:685
+#: libraries/auth/signon.auth.lib.php:191
+msgid "Cannot log in to the MySQL server"
+msgstr ""
+
+#: libraries/auth/http.auth.lib.php:70
+msgid "Wrong username/password. Access denied."
+msgstr ""
+
+#: libraries/auth/swekey/swekey.auth.lib.php:118
+#, 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
+msgid "Hardware authentication failed"
+msgstr ""
+
+#: libraries/auth/swekey/swekey.auth.lib.php:166
+msgid "No valid authentication key plugged"
+msgstr ""
+
+#: libraries/auth/swekey/swekey.auth.lib.php:202
+msgid "Authenticating..."
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:689
+msgid "View image"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:693
+msgid "Play audio"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:698
+msgid "View video"
+msgstr ""
+
+#: libraries/blobstreaming.lib.php:702
+msgid "Download file"
+msgstr ""
+
+#: libraries/charset_conversion.lib.php:17
+msgid ""
+"Couldn't load the iconv or recode extension needed for charset conversion. "
+"Either configure PHP to enable these extensions or disable charset "
+"conversion in phpMyAdmin."
+msgstr ""
+
+#: libraries/charset_conversion.lib.php:79
+#: libraries/charset_conversion.lib.php:90
+#: libraries/charset_conversion.lib.php:109
+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:576
+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. Please call the configuration file directly using the link below and read "
+"the PHP error message(s) that you receive. In most cases a quote or a "
+"semicolon is missing somewhere. If you receive a blank page, everything "
+"is fine."
+msgstr ""
+
+#: libraries/common.inc.php:587
+#, php-format
+msgid "Could not load default configuration from: %1$s"
+msgstr ""
+
+#: libraries/common.inc.php:592
+msgid ""
+"The $cfg['PmaAbsoluteUri'] directive MUST be set in your "
+"configuration file!"
+msgstr ""
+
+#: libraries/common.inc.php:622
+#, php-format
+msgid "Invalid server index: %s"
+msgstr ""
+
+#: libraries/common.inc.php:629
+#, php-format
+msgid "Invalid hostname for server %1$s. Please review your configuration."
+msgstr ""
+
+#: libraries/common.inc.php:638 libraries/header.inc.php:96
+#: 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:816
+msgid "Invalid authentication method set in configuration:"
+msgstr ""
+
+#: libraries/common.inc.php:919
+#, php-format
+msgid "You should upgrade to %s %s or later."
+msgstr ""
+
+#: libraries/common.lib.php:147
+#, php-format
+msgid "Max: %s%s"
+msgstr ""
+
+#. l10n: Language to use for MySQL 5.1 documentation, please use only languages which do exist in official documentation.
+#: libraries/common.lib.php:411
+msgctxt "$mysql_5_1_doc_lang"
+msgid "en"
+msgstr ""
+
+#. l10n: Language to use for MySQL 5.0 documentation, please use only languages which do exist in official documentation.
+#: libraries/common.lib.php:415
+msgctxt "$mysql_5_0_doc_lang"
+msgid "en"
+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/relation.lib.php:97
+#: libraries/sql_query_form.lib.php:451 libraries/sql_query_form.lib.php:454
+#: main.php:229 setup/lib/FormDisplay.tpl.php:124
+msgid "Documentation"
+msgstr ""
+
+#: libraries/common.lib.php:595 libraries/header_printview.inc.php:61
+#: server_processlist.php:60 server_status.php:358
+msgid "SQL query"
+msgstr ""
+
+#: libraries/common.lib.php:634
+msgid "MySQL said: "
+msgstr ""
+
+#: libraries/common.lib.php:1177 setup/lib/messages.inc.php:353
+msgid "Explain SQL"
+msgstr ""
+
+#: libraries/common.lib.php:1180
+msgid "Skip Explain SQL"
+msgstr ""
+
+#: libraries/common.lib.php:1214
+msgid "Without PHP Code"
+msgstr ""
+
+#: libraries/common.lib.php:1217 setup/lib/messages.inc.php:355
+msgid "Create PHP Code"
+msgstr ""
+
+#: libraries/common.lib.php:1235 server_status.php:452
+#: setup/lib/messages.inc.php:354
+msgid "Refresh"
+msgstr ""
+
+#: libraries/common.lib.php:1244
+msgid "Skip Validate SQL"
+msgstr ""
+
+#: libraries/common.lib.php:1247 setup/lib/messages.inc.php:356 sql.php:518
+msgid "Validate SQL"
+msgstr ""
+
+#: libraries/common.lib.php:1278
+msgid "Inline edit of this query"
+msgstr ""
+
+#: libraries/common.lib.php:1280
+msgid "Inline"
+msgstr ""
+
+#: libraries/common.lib.php:1334 libraries/common.lib.php:1349
+msgid "Profiling"
+msgstr ""
+
+#: libraries/common.lib.php:1353 libraries/tbl_triggers.lib.php:28
+#: server_processlist.php:58
+msgid "Time"
+msgstr ""
+
+#. l10n: shortcuts for Byte, Kilo, Mega, Giga, Tera, Peta, Exa+
+#: libraries/common.lib.php:1381
+msgid "B"
+msgstr ""
+
+#: libraries/common.lib.php:1381
+msgid "KiB"
+msgstr ""
+
+#: libraries/common.lib.php:1381
+msgid "MiB"
+msgstr ""
+
+#: libraries/common.lib.php:1381
+msgid "GiB"
+msgstr ""
+
+#: libraries/common.lib.php:1381
+msgid "TiB"
+msgstr ""
+
+#: libraries/common.lib.php:1381
+msgid "PiB"
+msgstr ""
+
+#: libraries/common.lib.php:1381
+msgid "EiB"
+msgstr ""
+
+#. l10n: Thousands separator
+#: libraries/common.lib.php:1419
+msgid ","
+msgstr ""
+
+#. l10n: Decimal separator
+#: libraries/common.lib.php:1421
+msgid "."
+msgstr ""
+
+#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
+#: libraries/common.lib.php:1598
+#: libraries/transformations/text_plain__dateformat.inc.php:34
+msgid "%B %d, %Y at %I:%M %p"
+msgstr ""
+
+#: libraries/common.lib.php:1907
+#, php-format
+msgid "%s days, %s hours, %s minutes and %s seconds"
+msgstr ""
+
+#: libraries/common.lib.php:2322 libraries/common.lib.php:2325
+#: libraries/display_tbl.lib.php:290 server_status.php:719
+msgid "Begin"
+msgstr ""
+
+#: libraries/common.lib.php:2323 libraries/common.lib.php:2326
+#: libraries/display_tbl.lib.php:291 server_binlog.php:168
+#: server_binlog.php:170
+msgid "Previous"
+msgstr ""
+
+#: libraries/common.lib.php:2354 libraries/common.lib.php:2357
+#: libraries/display_tbl.lib.php:353
+msgid "End"
+msgstr ""
+
+#: libraries/common.lib.php:2430
+#, php-format
+msgid "Jump to database "%s"."
+msgstr ""
+
+#: libraries/common.lib.php:2450
+#, php-format
+msgid "The %s functionality is affected by a known bug, see %s"
+msgstr ""
+
+#: libraries/common.lib.php:2830 libraries/common.lib.php:2837
+#: libraries/db_links.inc.php:68 libraries/export/sql.php:25
+#: libraries/import/sql.php:18 libraries/server_links.inc.php:45
+#: libraries/tbl_links.inc.php:60 querywindow.php:99 test/theme.php:97
+msgid "SQL"
+msgstr ""
+
+#: libraries/common.lib.php:2839 libraries/db_links.inc.php:104
+#: libraries/tbl_links.inc.php:95 libraries/tbl_links.inc.php:117
+#: view_operations.php:89
+msgid "Operations"
+msgstr ""
+
+#: libraries/core.lib.php:284 libraries/dbg/setup.php:22
+#, php-format
+msgid ""
+"Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
+"extension. Please check your PHP configuration."
+msgstr ""
+
+#: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22
+#: libraries/export/sql.php:415
+msgid "Events"
+msgstr ""
+
+#: libraries/db_events.inc.php:30 libraries/db_routines.inc.php:41
+#: libraries/display_create_table.lib.php:53 libraries/tbl_triggers.lib.php:27
+#: setup/frames/index.inc.php:112
+msgid "Name"
+msgstr ""
+
+#: libraries/db_links.inc.php:45
+#, 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
+msgid "Database seems to be empty!"
+msgstr ""
+
+#: libraries/db_links.inc.php:81 libraries/relation.lib.php:155
+#: libraries/tbl_links.inc.php:69
+msgid "Tracking"
+msgstr ""
+
+#: libraries/db_links.inc.php:86
+msgid "Query"
+msgstr ""
+
+#: libraries/db_links.inc.php:91 libraries/relation.lib.php:151
+msgid "Designer"
+msgstr ""
+
+#: libraries/db_links.inc.php:98 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:111 libraries/server_links.inc.php:66
+#: server_privileges.php:111 server_privileges.php:1722
+#: server_privileges.php:2071 test/theme.php:117
+msgid "Privileges"
+msgstr ""
+
+#: libraries/db_routines.inc.php:30 libraries/db_routines.inc.php:32
+msgid "Routines"
+msgstr ""
+
+#: libraries/db_routines.inc.php:43
+msgid "Return type"
+msgstr ""
+
+#: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848
+msgid ""
+"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
+"3.11[/a]"
+msgstr ""
+
+#: libraries/db_structure.lib.php:69 server_databases.php:142
+#: tbl_printview.php:335 tbl_structure.php:682
+msgid "Overhead"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:112 libraries/dbi/mysqli.dbi.lib.php:124
+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
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysqli.dbi.lib.php:410
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:362 tbl_structure.php:608
+msgid "Details..."
+msgstr ""
+
+#: libraries/display_change_password.lib.php:30 main.php:91
+#: user_password.php:111 user_password.php:129
+msgid "Change password"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:35
+#: libraries/replication_gui.lib.php:348 server_privileges.php:807
+msgid "No Password"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:41
+#: libraries/replication_gui.lib.php:62 libraries/replication_gui.lib.php:63
+#: libraries/replication_gui.lib.php:338 libraries/replication_gui.lib.php:342
+#: libraries/replication_gui.lib.php:352 server_privileges.php:796
+#: server_privileges.php:800 server_privileges.php:811
+#: server_privileges.php:1538 server_synchronize.php:1175
+msgid "Password"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:46
+#: libraries/replication_gui.lib.php:356 libraries/replication_gui.lib.php:359
+#: server_privileges.php:815 server_privileges.php:818
+msgid "Re-type"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:52
+msgid "Password Hashing"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:66
+msgid "MySQL 4.0 compatible"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:72
+#: libraries/replication_gui.lib.php:363 server_privileges.php:822
+msgid "Generate Password"
+msgstr ""
+
+#: libraries/display_change_password.lib.php:75
+#: libraries/replication_gui.lib.php:366 server_privileges.php:825
+msgid "Generate"
+msgstr ""
+
+#: libraries/display_create_database.lib.php:22
+#: libraries/display_create_database.lib.php:36
+msgid "Create new database"
+msgstr ""
+
+#: libraries/display_create_database.lib.php:30
+msgid "Create"
+msgstr ""
+
+#: libraries/display_create_database.lib.php:40 server_privileges.php:113
+#: server_privileges.php:1427 server_replication.php:35
+msgid "No Privileges"
+msgstr ""
+
+#: libraries/display_create_table.lib.php:41
+msgid "Table must have at least one column."
+msgstr ""
+
+#: libraries/display_create_table.lib.php:48
+#, php-format
+msgid "Create table on database %s"
+msgstr ""
+
+#: libraries/display_create_table.lib.php:57
+msgid "Number of columns"
+msgstr ""
+
+#: libraries/display_export.lib.php:42
+msgid "Could not load export plugins, please check your installation!"
+msgstr ""
+
+#: libraries/display_export.lib.php:107
+#, php-format
+msgid "Dump %s row(s) starting at row # %s"
+msgstr ""
+
+#: libraries/display_export.lib.php:115
+msgid "Dump all rows"
+msgstr ""
+
+#: libraries/display_export.lib.php:125 setup/lib/messages.inc.php:82
+msgid "Save as file"
+msgstr ""
+
+#: libraries/display_export.lib.php:134
+#, php-format
+msgid "Save on server in %s directory"
+msgstr ""
+
+#: libraries/display_export.lib.php:142 setup/lib/messages.inc.php:90
+msgid "Overwrite existing file(s)"
+msgstr ""
+
+#: libraries/display_export.lib.php:148
+msgid "File name template"
+msgstr ""
+
+#: libraries/display_export.lib.php:152
+msgid "server name"
+msgstr ""
+
+#: libraries/display_export.lib.php:155
+msgid "database name"
+msgstr ""
+
+#: libraries/display_export.lib.php:158
+msgid "table name"
+msgstr ""
+
+#: libraries/display_export.lib.php:162
+#, php-format
+msgid ""
+"This value is interpreted using %1$sstrftime%2$s, so you can use time "
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
+msgstr ""
+
+#: libraries/display_export.lib.php:202
+msgid "remember template"
+msgstr ""
+
+#: libraries/display_export.lib.php:210 libraries/display_import.lib.php:177
+#: libraries/display_import.lib.php:190 libraries/sql_query_form.lib.php:549
+msgid "Character set of the file:"
+msgstr ""
+
+#: libraries/display_export.lib.php:235 setup/lib/messages.inc.php:84
+msgid "Compression"
+msgstr ""
+
+#: libraries/display_export.lib.php:240 libraries/display_import.lib.php:196
+#: libraries/display_import.lib.php:209 libraries/display_tbl.lib.php:530
+#: libraries/export/sql.php:868 libraries/tbl_properties.inc.php:575
+#: server_privileges.php:1875 server_processlist.php:75
+msgid "None"
+msgstr ""
+
+#: libraries/display_export.lib.php:247
+msgid "\"zipped\""
+msgstr ""
+
+#: libraries/display_export.lib.php:253
+msgid "\"gzipped\""
+msgstr ""
+
+#: libraries/display_export.lib.php:259
+msgid "\"bzipped\""
+msgstr ""
+
+#: libraries/display_export.lib.php:274 libraries/export/sql.php:43
+#: libraries/import/sql.php:32
+msgid "SQL compatibility mode"
+msgstr ""
+
+#: libraries/display_import.lib.php:66
+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:76
+msgid "The file is being processed, please be patient."
+msgstr ""
+
+#: libraries/display_import.lib.php:98
+msgid ""
+"Please be patient, the file is being uploaded. Details about the upload are "
+"not available."
+msgstr ""
+
+#: libraries/display_import.lib.php:125
+msgid "File to import"
+msgstr ""
+
+#: libraries/display_import.lib.php:136 libraries/sql_query_form.lib.php:524
+msgid "Location of the text file"
+msgstr ""
+
+#: libraries/display_import.lib.php:147
+msgid "File uploads are not allowed on this server."
+msgstr ""
+
+#: libraries/display_import.lib.php:162 libraries/sql_query_form.lib.php:533
+#: tbl_change.php:1025
+msgid "The directory you set for upload work cannot be reached"
+msgstr ""
+
+#: libraries/display_import.lib.php:165 libraries/sql_query_form.lib.php:536
+#: tbl_change.php:1028
+msgid "web server upload directory"
+msgstr ""
+
+#: libraries/display_import.lib.php:211
+#, php-format
+msgid "Imported file compression will be automatically detected from: %s"
+msgstr ""
+
+#: libraries/display_import.lib.php:218
+msgid "Partial import"
+msgstr ""
+
+#: libraries/display_import.lib.php:224
+#, php-format
+msgid ""
+"Previous import timed out, after resubmitting will continue from position %d."
+msgstr ""
+
+#: libraries/display_import.lib.php:231
+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:238 setup/lib/messages.inc.php:161
+msgid "Number of queries to skip from start"
+msgstr ""
+
+#: libraries/display_import.lib.php:254 setup/lib/messages.inc.php:160
+msgid "Format of imported file"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:11
+msgid "Display PDF schema"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:33
+msgid "Show grid"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:36
+msgid "Show color"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:38
+msgid "Show dimension of tables"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:41
+msgid "Display all tables with the same width"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:46
+msgid "Only show keys"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:48
+msgid "Data Dictionary Format"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:50
+msgid "Landscape"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:51
+msgid "Portrait"
+msgstr ""
+
+#: libraries/display_pdf_schema.lib.php:54
+msgid "Paper size"
+msgstr ""
+
+#: libraries/display_select_lang.lib.php:45
+#: libraries/display_select_lang.lib.php:46 setup/frames/index.inc.php:70
+msgid "Language"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:304
+#, php-format
+msgid "%d is not valid row number."
+msgstr ""
+
+#: libraries/display_tbl.lib.php:310
+msgid "row(s) starting from row #"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:316
+msgid "horizontal"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:317
+msgid "horizontal (rotated headers)"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:318
+msgid "vertical"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:324
+#, php-format
+msgid "in %s mode and repeat headers after %s cells"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:346
+msgid "This operation could take a long time. Proceed anyway?"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:512
+msgid "Sort by key"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:555 libraries/export/codegen.php:39
+#: libraries/export/csv.php:30 libraries/export/excel.php:35
+#: libraries/export/htmlword.php:29 libraries/export/latex.php:28
+#: libraries/export/mediawiki.php:21 libraries/export/ods.php:27
+#: libraries/export/odt.php:27 libraries/export/pdf.php:27
+#: libraries/export/php_array.php:25 libraries/export/sql.php:34
+#: libraries/export/texytext.php:37 libraries/export/xls.php:27
+#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
+#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
+#: libraries/import/ods.php:30 libraries/import/sql.php:20
+#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
+#: libraries/import/xml.php:25 tbl_select.php:265 tbl_structure.php:753
+msgid "Options"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:560 libraries/display_tbl.lib.php:570
+msgid "Partial Texts"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:561 libraries/display_tbl.lib.php:574
+msgid "Full Texts"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:587
+msgid "Relational key"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:588
+msgid "Relational display column"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:595
+msgid "Show binary contents"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:597
+msgid "Show BLOB contents"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:599
+msgid "Show binary contents as HEX"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:607 pmd_general.php:141 tbl_change.php:313
+#: tbl_change.php:319
+msgid "Hide"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:607 libraries/relation.lib.php:135
+#: 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
+msgid "Execute bookmarked query"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1145 libraries/display_tbl.lib.php:1157
+msgid "The row has been deleted"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
+#: server_processlist.php:71 tbl_row_action.php:64
+msgid "Kill"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1934
+msgid "in query"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1952
+msgid "Showing rows"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1962
+msgid "total"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:1970 sql.php:524
+#, php-format
+msgid "Query took %01.4f sec"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:2089 libraries/mult_submits.inc.php:113
+#: querywindow.php:125 querywindow.php:129 querywindow.php:132
+#: tbl_structure.php:25 tbl_structure.php:150 tbl_structure.php:470
+msgid "Change"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:2159
+msgid "Query results operations"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:2187
+msgid "Print view (with full texts)"
+msgstr ""
+
+#: libraries/display_tbl.lib.php:2361
+msgid "Link not found"
+msgstr ""
+
+#: libraries/engines/bdb.lib.php:21 main.php:228
+msgid "Version information"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:30
+msgid "Data home directory"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:31
+msgid "The common part of the directory path for all InnoDB data files."
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:34
+msgid "Data files"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:37
+msgid "Autoextend increment"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:38
+msgid ""
+" The increment size for extending the size of an autoextending tablespace "
+"when it becomes full."
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:42
+msgid "Buffer pool size"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:43
+msgid ""
+"The size of the memory buffer InnoDB uses to cache data and indexes of its "
+"tables."
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:144
+msgid "Buffer Pool"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:145 server_status.php:417
+msgid "InnoDB Status"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:189
+msgid "Buffer Pool Usage"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:194 server_databases.php:137
+#: server_databases.php:305 server_status.php:525 server_status.php:586
+#: server_status.php:607 tbl_printview.php:350 tbl_structure.php:696
+msgid "Total"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:197
+msgid "pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:206
+msgid "Free pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:212
+msgid "Dirty pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:218
+msgid "Pages containing data"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:224
+msgid "Pages to be flushed"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:230
+msgid "Busy pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:239
+msgid "Latched pages"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:250
+msgid "Buffer Pool Activity"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:254
+msgid "Read requests"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:260
+msgid "Write requests"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:266
+msgid "Read misses"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:272
+msgid "Write waits"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:278
+msgid "Read misses in %"
+msgstr ""
+
+#: libraries/engines/innodb.lib.php:286
+msgid "Write waits in %"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:23
+msgid "Data pointer size"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:24
+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
+msgid "Automatic recovery mode"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:29
+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
+msgid "Maximum size for temporary sort files"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:33
+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
+msgid "Maximum size for temporary files on index creation"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:38
+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
+msgid "Repair threads"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:43
+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
+msgid "Sort buffer size"
+msgstr ""
+
+#: libraries/engines/myisam.lib.php:48
+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
+msgid "Index cache size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:24
+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
+msgid "Record cache size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:29
+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
+msgid "Log cache size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:34
+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
+msgid "Log file threshold"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:39
+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
+msgid "Transaction buffer size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:44
+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
+msgid "Checkpoint frequency"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:49
+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
+msgid "Data log threshold"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:54
+msgid ""
+"The maximum size of a data log file. The default value is 64MB. PBXT can "
+"create a maximum of 32000 data logs, which are used by all tables. So the "
+"value of this variable can be increased to increase the total amount of data "
+"that can be stored in the database."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:58
+msgid "Garbage threshold"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:59
+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
+msgid "Log buffer size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:64
+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
+msgid "Data file grow size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:69
+msgid "The grow size of the handle data (.xtd) files."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:73
+msgid "Row file grow size"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:74
+msgid "The grow size of the row pointer (.xtr) files."
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:78
+msgid "Log file count"
+msgstr ""
+
+#: libraries/engines/pbxt.lib.php:79
+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 "
+"will be deleted, otherwise they are renamed and given the next highest "
+"number."
+msgstr ""
+
+#: libraries/export/codegen.php:37 setup/lib/messages.inc.php:88
+#: tbl_printview.php:375 tbl_structure.php:737
+msgid "Format"
+msgstr ""
+
+#: libraries/export/csv.php:17 libraries/import/csv.php:22
+msgid "CSV"
+msgstr ""
+
+#: libraries/export/csv.php:21 libraries/import/csv.php:27
+#: libraries/import/csv.php:59 libraries/import/ldi.php:40
+msgid "Columns terminated by"
+msgstr ""
+
+#: libraries/export/csv.php:22 libraries/import/csv.php:28
+#: libraries/import/csv.php:71 libraries/import/ldi.php:41
+msgid "Columns enclosed by"
+msgstr ""
+
+#: libraries/export/csv.php:23 libraries/import/csv.php:29
+#: libraries/import/csv.php:75 libraries/import/ldi.php:42
+msgid "Columns escaped by"
+msgstr ""
+
+#: libraries/export/csv.php:24 libraries/import/csv.php:30
+#: libraries/import/csv.php:79 libraries/import/ldi.php:43
+msgid "Lines terminated by"
+msgstr ""
+
+#: libraries/export/csv.php:25 libraries/export/excel.php:22
+#: libraries/export/htmlword.php:25 libraries/export/latex.php:65
+#: libraries/export/ods.php:23 libraries/export/odt.php:52
+#: libraries/export/texytext.php:31 libraries/export/xls.php:23
+#: libraries/export/xlsx.php:23
+msgid "Replace NULL by"
+msgstr ""
+
+#: libraries/export/csv.php:26 libraries/export/excel.php:23
+msgid "Remove CRLF characters within columns"
+msgstr ""
+
+#: libraries/export/csv.php:27 libraries/export/excel.php:24
+#: libraries/export/htmlword.php:26 libraries/export/latex.php:57
+#: libraries/export/ods.php:24 libraries/export/odt.php:50
+#: libraries/export/texytext.php:34 libraries/export/xls.php:24
+#: libraries/export/xlsx.php:24
+msgid "Put columns names in the first row"
+msgstr ""
+
+#: libraries/export/excel.php:18
+msgid "CSV for MS Excel"
+msgstr ""
+
+#: libraries/export/excel.php:32
+msgid "Excel edition"
+msgstr ""
+
+#: libraries/export/htmlword.php:18
+msgid "Microsoft Word 2000"
+msgstr ""
+
+#: libraries/export/htmlword.php:24 libraries/export/latex.php:55
+#: libraries/export/latex.php:201 libraries/export/odt.php:48
+#: libraries/export/sql.php:106 libraries/export/sql.php:868
+#: libraries/export/texytext.php:27 server_databases.php:127
+#: server_privileges.php:576 server_replication.php:316 tbl_printview.php:316
+#: tbl_structure.php:665
+msgid "Data"
+msgstr ""
+
+#: libraries/export/htmlword.php:132 libraries/export/odt.php:168
+#: libraries/export/sql.php:881 libraries/export/texytext.php:130
+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
+msgid "Table structure for table"
+msgstr ""
+
+#: libraries/export/latex.php:22
+msgid "LaTeX"
+msgstr ""
+
+#: libraries/export/latex.php:26
+msgid "Include table caption"
+msgstr ""
+
+#: libraries/export/latex.php:35 libraries/export/latex.php:59
+msgid "Table caption"
+msgstr ""
+
+#: libraries/export/latex.php:37 libraries/export/latex.php:61
+msgid "Continued table caption"
+msgstr ""
+
+#: libraries/export/latex.php:39 libraries/export/latex.php:63
+msgid "Label key"
+msgstr ""
+
+#: libraries/export/latex.php:42 libraries/export/odt.php:35
+#: libraries/export/sql.php:91 tbl_relation.php:399
+msgid "Relations"
+msgstr ""
+
+#: libraries/export/latex.php:48 libraries/export/odt.php:41
+#: libraries/export/odt.php:318 libraries/export/sql.php:95
+#: libraries/tbl_properties.inc.php:143
+msgid "MIME type"
+msgstr ""
+
+#: libraries/export/latex.php:125 libraries/export/sql.php:232
+#: libraries/export/xml.php:102 libraries/header_printview.inc.php:57
+#: libraries/replication_gui.lib.php:66 libraries/replication_gui.lib.php:177
+#: libraries/replication_gui.lib.php:272 libraries/replication_gui.lib.php:275
+#: libraries/replication_gui.lib.php:332 server_privileges.php:731
+#: server_privileges.php:734 server_privileges.php:790
+#: server_privileges.php:1537 server_privileges.php:2069
+#: server_processlist.php:55 server_synchronize.php:1159
+msgid "Host"
+msgstr ""
+
+#: libraries/export/latex.php:130 libraries/export/sql.php:233
+#: libraries/export/xml.php:107 libraries/header_printview.inc.php:59
+msgid "Generation Time"
+msgstr ""
+
+#: libraries/export/latex.php:131 libraries/export/sql.php:235
+#: libraries/export/xml.php:108 main.php:186
+msgid "Server version"
+msgstr ""
+
+#: libraries/export/latex.php:132 libraries/export/sql.php:236
+#: libraries/export/xml.php:109
+msgid "PHP Version"
+msgstr ""
+
+#: libraries/export/mediawiki.php:15
+msgid "MediaWiki Table"
+msgstr ""
+
+#: libraries/export/ods.php:18 libraries/import/ods.php:22
+msgid "Open Document Spreadsheet"
+msgstr ""
+
+#: libraries/export/odt.php:22
+msgid "Open Document Text"
+msgstr ""
+
+#: libraries/export/pdf.php:18
+msgid "PDF"
+msgstr ""
+
+#: libraries/export/pdf.php:23
+msgid "(Generates a report containing the data of a single table)"
+msgstr ""
+
+#: libraries/export/pdf.php:24
+msgid "Report title"
+msgstr ""
+
+#: libraries/export/php_array.php:16
+msgid "PHP array"
+msgstr ""
+
+#: libraries/export/sql.php:29
+msgid "Add custom comment into header (\\n splits lines)"
+msgstr ""
+
+#: libraries/export/sql.php:31
+msgid "Enclose export in a transaction"
+msgstr ""
+
+#: libraries/export/sql.php:32
+msgid "Disable foreign key checks"
+msgstr ""
+
+#: libraries/export/sql.php:50
+msgid "Database export options"
+msgstr ""
+
+#: libraries/export/sql.php:80
+msgid "Enclose table and column names with backquotes"
+msgstr ""
+
+#: libraries/export/sql.php:86
+msgid "Add into comments"
+msgstr ""
+
+#: libraries/export/sql.php:88
+msgid "Creation/Update/Check dates"
+msgstr ""
+
+#: libraries/export/sql.php:108
+msgid "Complete inserts"
+msgstr ""
+
+#: libraries/export/sql.php:110
+msgid "Extended inserts"
+msgstr ""
+
+#: libraries/export/sql.php:112
+msgid "Maximal length of created query"
+msgstr ""
+
+#: libraries/export/sql.php:114
+msgid "Use delayed inserts"
+msgstr ""
+
+#: libraries/export/sql.php:116
+msgid "Use ignore inserts"
+msgstr ""
+
+#: libraries/export/sql.php:118
+msgid "Use hexadecimal for BLOB"
+msgstr ""
+
+#: libraries/export/sql.php:120
+msgid "Export time in UTC"
+msgstr ""
+
+#: libraries/export/sql.php:122
+msgid "Export type"
+msgstr ""
+
+#: libraries/export/sql.php:387
+msgid "Procedures"
+msgstr ""
+
+#: libraries/export/sql.php:401
+msgid "Functions"
+msgstr ""
+
+#: libraries/export/sql.php:618
+msgid "Constraints for dumped tables"
+msgstr ""
+
+#: libraries/export/sql.php:627
+msgid "Constraints for table"
+msgstr ""
+
+#: libraries/export/sql.php:727
+msgid "MIME TYPES FOR TABLE"
+msgstr ""
+
+#: libraries/export/sql.php:739
+msgid "RELATIONS FOR TABLE"
+msgstr ""
+
+#: libraries/export/sql.php:796 libraries/tbl_triggers.lib.php:19
+msgid "Triggers"
+msgstr ""
+
+#: libraries/export/sql.php:808
+msgid "Structure for view"
+msgstr ""
+
+#: libraries/export/sql.php:817
+msgid "Stand-in structure for view"
+msgstr ""
+
+#: libraries/export/texytext.php:17
+msgid "Texy! text"
+msgstr ""
+
+#: libraries/export/xls.php:18 libraries/import/xls.php:21
+msgid "Excel 97-2003 XLS Workbook"
+msgstr ""
+
+#: libraries/export/xlsx.php:18 libraries/import/xlsx.php:21
+msgid "Excel 2007 XLSX Workbook"
+msgstr ""
+
+#: libraries/export/xml.php:18 libraries/import/xml.php:21
+msgid "XML"
+msgstr ""
+
+#: libraries/export/xml.php:29
+msgid "Export Structure Schemas (recommended)"
+msgstr ""
+
+#: libraries/export/xml.php:31
+msgid "Export functions"
+msgstr ""
+
+#: libraries/export/xml.php:33
+msgid "Export procedures"
+msgstr ""
+
+#: libraries/export/xml.php:35
+msgid "Export tables"
+msgstr ""
+
+#: libraries/export/xml.php:37
+msgid "Export triggers"
+msgstr ""
+
+#: libraries/export/xml.php:39
+msgid "Export views"
+msgstr ""
+
+#: libraries/export/xml.php:45
+msgid "Export contents"
+msgstr ""
+
+#: libraries/footer.inc.php:184 libraries/footer.inc.php:195
+#: libraries/footer.inc.php:198
+msgid "Open new phpMyAdmin window"
+msgstr ""
+
+#: libraries/header.inc.php:115
+msgid "New table"
+msgstr ""
+
+#: libraries/header_printview.inc.php:50 libraries/header_printview.inc.php:55
+msgid "SQL result"
+msgstr ""
+
+#: libraries/header_printview.inc.php:60
+msgid "Generated by"
+msgstr ""
+
+#: libraries/import.lib.php:152 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:1095
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1096
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1097
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1098
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1101
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1123
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1126
+msgid "structure"
+msgstr ""
+
+#: libraries/import.lib.php:1132
+msgid "Go to view"
+msgstr ""
+
+#: libraries/import/csv.php:25 libraries/import/ldi.php:38
+msgid "Replace table data with file"
+msgstr ""
+
+#: libraries/import/csv.php:26 libraries/import/ldi.php:39
+msgid "Ignore duplicate rows"
+msgstr ""
+
+#: libraries/import/csv.php:37 libraries/import/ods.php:25
+#: libraries/import/xls.php:24 libraries/import/xlsx.php:24
+msgid "Column names in first row"
+msgstr ""
+
+#: libraries/import/csv.php:40 libraries/import/ldi.php:44 pdf_pages.php:502
+#: view_create.php:148
+msgid "Column names"
+msgstr ""
+
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:119
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312
+#, php-format
+msgid "Invalid column count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/docsql.php:29
+msgid "DocSQL"
+msgstr ""
+
+#: libraries/import/docsql.php:32 libraries/tbl_properties.inc.php:618
+#: server_synchronize.php:428 server_synchronize.php:871
+msgid "Table name"
+msgstr ""
+
+#: libraries/import/ldi.php:35
+msgid "CSV using LOAD DATA"
+msgstr ""
+
+#: libraries/import/ldi.php:45
+msgid "Use LOCAL keyword"
+msgstr ""
+
+#: libraries/import/ldi.php:55
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/ods.php:26
+msgid "Do not import empty rows"
+msgstr ""
+
+#: libraries/import/ods.php:27
+msgid "Import percentages as proper decimals (12.00% to .12)"
+msgstr ""
+
+#: libraries/import/ods.php:28
+msgid "Import currencies ($5.00 to 5.00)"
+msgstr ""
+
+#: libraries/import/sql.php:42
+msgid "Do not use AUTO_INCREMENT for zero values"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+
+#. l10n: This is currently used only in Japanese locales
+#: libraries/kanji-encoding.lib.php:143
+msgid "Encoding conversion"
+msgstr ""
+
+#. l10n: This is currently used only in Japanese locales
+#: libraries/kanji-encoding.lib.php:145
+msgctxt "None encoding conversion"
+msgid "None"
+msgstr ""
+
+#. l10n: This is currently used only in Japanese locales
+#: libraries/kanji-encoding.lib.php:151
+msgid "Convert to Kana"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:76 libraries/tbl_properties.inc.php:513
+#: tbl_structure.php:29 tbl_structure.php:153 tbl_structure.php:157
+#: tbl_structure.php:473
+msgid "Primary"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:98 libraries/tbl_properties.inc.php:116
+#: libraries/tbl_properties.inc.php:525 tbl_printview.php:325
+#: tbl_structure.php:31 tbl_structure.php:154 tbl_structure.php:158
+#: tbl_structure.php:475 tbl_structure.php:673
+msgid "Index"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:108 libraries/tbl_properties.inc.php:531
+#: tbl_structure.php:35 tbl_structure.php:156 tbl_structure.php:160
+#: tbl_structure.php:478
+msgid "Fulltext"
+msgstr ""
+
+#: libraries/mult_submits.inc.php:435 tbl_replace.php:331
+msgid "No change"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:107
+msgid "Charset"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:211 libraries/mysql_charsets.lib.php:412
+#: tbl_change.php:516
+msgid "Binary"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:223
+msgid "Bulgarian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:227 libraries/mysql_charsets.lib.php:352
+msgid "Simplified Chinese"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:229 libraries/mysql_charsets.lib.php:372
+msgid "Traditional Chinese"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:233 libraries/mysql_charsets.lib.php:419
+msgid "case-insensitive"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:236 libraries/mysql_charsets.lib.php:421
+msgid "case-sensitive"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:239
+msgid "Croatian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:242
+msgid "Czech"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:245
+msgid "Danish"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:248
+msgid "English"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:251
+msgid "Esperanto"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:254
+msgid "Estonian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:257 libraries/mysql_charsets.lib.php:260
+msgid "German"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:257
+msgid "dictionary"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:260
+msgid "phone book"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:263
+msgid "Hungarian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:266
+msgid "Icelandic"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:269 libraries/mysql_charsets.lib.php:359
+msgid "Japanese"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:272
+msgid "Latvian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:275
+msgid "Lithuanian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:278 libraries/mysql_charsets.lib.php:381
+msgid "Korean"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:281
+msgid "Persian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:284
+msgid "Polish"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:287 libraries/mysql_charsets.lib.php:335
+msgid "West European"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:290
+msgid "Romanian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:293
+msgid "Slovak"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:296
+msgid "Slovenian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:299
+msgid "Spanish"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:302
+msgid "Traditional Spanish"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:305 libraries/mysql_charsets.lib.php:402
+msgid "Swedish"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:308 libraries/mysql_charsets.lib.php:405
+msgid "Thai"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:311 libraries/mysql_charsets.lib.php:399
+msgid "Turkish"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:314 libraries/mysql_charsets.lib.php:396
+msgid "Ukrainian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:317 libraries/mysql_charsets.lib.php:326
+msgid "Unicode"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:317 libraries/mysql_charsets.lib.php:326
+#: libraries/mysql_charsets.lib.php:335 libraries/mysql_charsets.lib.php:342
+#: libraries/mysql_charsets.lib.php:364 libraries/mysql_charsets.lib.php:375
+msgid "multilingual"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:342
+msgid "Central European"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:347
+msgid "Russian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:364
+msgid "Baltic"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:369
+msgid "Armenian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:375
+msgid "Cyrillic"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:378
+msgid "Arabic"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:384
+msgid "Hebrew"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:387
+msgid "Georgian"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:390
+msgid "Greek"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:393
+msgid "Czech-Slovak"
+msgstr ""
+
+#: libraries/mysql_charsets.lib.php:408 libraries/mysql_charsets.lib.php:415
+msgid "unknown"
+msgstr ""
+
+#: libraries/navigation_header.inc.php:54
+#: libraries/navigation_header.inc.php:57
+#: libraries/navigation_header.inc.php:58
+msgid "Home"
+msgstr ""
+
+#: 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/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/plugin_interface.lib.php:312
+msgid "This format has no options"
+msgstr ""
+
+#: libraries/relation.lib.php:95
+msgid "not OK"
+msgstr ""
+
+#: libraries/relation.lib.php:99 pmd_general.php:340
+msgid "OK"
+msgstr ""
+
+#: libraries/relation.lib.php:100
+msgid "Enabled"
+msgstr ""
+
+#: libraries/relation.lib.php:123
+msgid "Display Features"
+msgstr ""
+
+#: libraries/relation.lib.php:129
+msgid "Creation of PDFs"
+msgstr ""
+
+#: libraries/relation.lib.php:133
+msgid "Displaying Column Comments"
+msgstr ""
+
+#: libraries/relation.lib.php:138
+msgid ""
+"Please see the documentation on how to update your column_comments table"
+msgstr ""
+
+#: libraries/relation.lib.php:143 libraries/sql_query_form.lib.php:433
+msgid "Bookmarked SQL query"
+msgstr ""
+
+#: libraries/relation.lib.php:147 querywindow.php:109 querywindow.php:217
+msgid "SQL history"
+msgstr ""
+
+#: libraries/relation.lib.php:159
+msgid "Quick steps to setup advanced features:"
+msgstr ""
+
+#: libraries/relation.lib.php:161
+msgid ""
+"Create the needed tables with the script/create_tables.sql ."
+msgstr ""
+
+#: libraries/relation.lib.php:162
+msgid "Create a pma user and give access to these tables."
+msgstr ""
+
+#: libraries/relation.lib.php:163
+msgid ""
+"Enable advanced features in configuration file (config.inc.php"
+"code>), for example by starting from config.sample.inc.php ."
+msgstr ""
+
+#: libraries/relation.lib.php:164
+msgid "Re-login to phpMyAdmin to load the updated configuration file."
+msgstr ""
+
+#: libraries/relation.lib.php:1172
+msgid "no description"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:54
+msgid "Slave configuration"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:54 server_replication.php:347
+msgid "Change or reconfigure master server"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:55
+msgid ""
+"Make sure, you have unique server-id in your configuration file (my.cnf). If "
+"not, please add the following line into [mysqld] section:"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:58 libraries/replication_gui.lib.php:59
+#: libraries/replication_gui.lib.php:252 libraries/replication_gui.lib.php:255
+#: libraries/replication_gui.lib.php:262 server_privileges.php:711
+#: server_privileges.php:714 server_privileges.php:721
+#: server_synchronize.php:1171
+msgid "User name"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:70 server_synchronize.php:1163
+msgid "Port"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:106
+msgid "Master status"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:108
+msgid "Slave status"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:117 libraries/sql_query_form.lib.php:445
+#: server_status.php:737 server_variables.php:52
+msgid "Variable"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:118 server_status.php:738
+#: tbl_change.php:323 tbl_printview.php:369 tbl_select.php:138
+#: tbl_structure.php:729
+msgid "Value"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:176 server_binlog.php:218
+msgid "Server ID"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:195
+msgid ""
+"Only slaves started with the --report-host=host_name option are visible in "
+"this list."
+msgstr ""
+
+#: libraries/replication_gui.lib.php:243 server_replication.php:194
+msgid "Add slave replication user"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:257 server_privileges.php:716
+msgid "Any user"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:258 libraries/replication_gui.lib.php:326
+#: libraries/replication_gui.lib.php:349 server_privileges.php:717
+#: server_privileges.php:784 server_privileges.php:808
+#: server_privileges.php:1928 server_privileges.php:1958
+msgid "Use text field"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:305 server_privileges.php:764
+msgid "Any host"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:309 server_privileges.php:768
+msgid "Local"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:315 server_privileges.php:773
+msgid "This Host"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:321 server_privileges.php:779
+msgid "Use Host Table"
+msgstr ""
+
+#: libraries/replication_gui.lib.php:334 server_privileges.php:792
+msgid ""
+"When Host table is used, this field is ignored and values stored in Host "
+"table are used instead."
+msgstr ""
+
+#. l10n: Text direction, use either ltr or rtl
+#: libraries/select_lang.lib.php:491
+msgid "ltr"
+msgstr ""
+
+#: libraries/select_lang.lib.php:493
+msgid "Content of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:494
+msgid "(continued)"
+msgstr ""
+
+#: libraries/select_lang.lib.php:495
+msgid "Structure of table __TABLE__"
+msgstr ""
+
+#: libraries/select_lang.lib.php:500 libraries/select_lang.lib.php:506
+#: libraries/select_lang.lib.php:512
+#, php-format
+msgid "Unknown language: %1$s."
+msgstr ""
+
+#: libraries/select_server.lib.php:45 setup/frames/index.inc.php:97
+#: setup/lib/messages.inc.php:115
+msgid "Servers"
+msgstr ""
+
+#: libraries/server_links.inc.php:53 server_engines.php:112
+#: server_engines.php:116 server_status.php:415 test/theme.php:105
+msgid "Variables"
+msgstr ""
+
+#: libraries/server_links.inc.php:57 test/theme.php:109
+msgid "Charsets"
+msgstr ""
+
+#: libraries/server_links.inc.php:61 test/theme.php:113
+msgid "Engines"
+msgstr ""
+
+#: libraries/server_links.inc.php:76 server_binlog.php:110
+#: server_status.php:364 test/theme.php:121
+msgid "Binary log"
+msgstr ""
+
+#: libraries/server_links.inc.php:80
+msgid "Processes"
+msgstr ""
+
+#: libraries/server_links.inc.php:92 server_synchronize.php:1092
+#: server_synchronize.php:1100
+msgid "Synchronize"
+msgstr ""
+
+#: libraries/server_synchronize.lib.php:1341 server_synchronize.php:1110
+msgid "Source database"
+msgstr ""
+
+#: libraries/server_synchronize.lib.php:1343
+#: libraries/server_synchronize.lib.php:1369
+msgid "Current server"
+msgstr ""
+
+#: libraries/server_synchronize.lib.php:1345
+#: libraries/server_synchronize.lib.php:1371
+msgid "Remote server"
+msgstr ""
+
+#: libraries/server_synchronize.lib.php:1348
+msgid "Difference"
+msgstr ""
+
+#: libraries/server_synchronize.lib.php:1367 server_synchronize.php:1112
+msgid "Target database"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:265
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:317
+msgid "Columns"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:352 sql.php:665 sql.php:666 sql.php:683
+msgid "Bookmark this SQL query"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:359 sql.php:677
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:381
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:388
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:396
+msgid " Show this query here again "
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:462
+msgid "Submit"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:466
+msgid "View only"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:137
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:175
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:179
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:183
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:344
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:495
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:612
+msgid "Unknown Punctuation String"
+msgstr ""
+
+#: libraries/sqlvalidator.lib.php:68
+#, php-format
+msgid ""
+"The SQL validator could not be initialized. Please check if you have "
+"installed the necessary PHP extensions as described in the %sdocumentation%s."
+msgstr ""
+
+#: libraries/tbl_links.inc.php:107 libraries/tbl_links.inc.php:140
+#: libraries/tbl_links.inc.php:141
+msgid "Table seems to be empty!"
+msgstr ""
+
+#: libraries/tbl_links.inc.php:149
+#, php-format
+msgid "Tracking of %s.%s is activated."
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:105
+msgid "Length/Values"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:105
+msgid ""
+"If column type is \"enum\" or \"set\", please enter the values using this "
+"format: 'a','b','c'... If you ever need to put a backslash (\"\\\") or "
+"a single quote (\"'\") amongst those values, precede it with a backslash "
+"(for example '\\\\xyz' or 'a\\'b')."
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:106
+msgid ""
+"For default values, please enter just a single value, without backslash "
+"escaping or quotes, using this format: a"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:108 pdf_schema.php:1264
+#: pdf_schema.php:1285 tbl_printview.php:143 tbl_structure.php:180
+msgid "Attributes"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:137
+#, php-format
+msgid ""
+"For a list of available transformation options and their MIME type "
+"transformations, click on %stransformation descriptions%s"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:145
+msgid "Transformation options"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:146
+msgid ""
+"Please enter the values for transformation options using this format: 'a', "
+"100, b,'c'... If you ever need to put a backslash (\"\\\") or a single "
+"quote (\"'\") amongst those values, precede it with a backslash (for example "
+"'\\\\xyz' or 'a\\'b')."
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:393
+msgctxt "for default"
+msgid "None"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:394
+msgid "As defined:"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:580 transformation_overview.php:58
+#, php-format
+msgid ""
+"No description is available for this transformation. Please ask the "
+"author what %s does."
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:726 server_engines.php:58
+#: tbl_operations.php:355
+msgid "Storage Engine"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:755
+msgid "PARTITION definition"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
+#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
+#: tbl_relation.php:566
+msgid "Save"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:780 tbl_structure.php:542
+#, php-format
+msgid "Add %s column(s)"
+msgstr ""
+
+#: libraries/tbl_properties.inc.php:784 tbl_structure.php:536
+msgid "You have to add at least one column."
+msgstr ""
+
+#: libraries/tbl_triggers.lib.php:29
+msgid "Event"
+msgstr ""
+
+#: libraries/transformations/application_octetstream__download.inc.php:10
+msgid ""
+"Displays a link to download the binary data of the column. You can use the "
+"first option to specify the filename, or use the second option as the name "
+"of a column which contains the filename. If you use the second option, you "
+"need to set the first option to the empty string."
+msgstr ""
+
+#: libraries/transformations/application_octetstream__hex.inc.php:10
+msgid ""
+"Displays hexadecimal representation of data. Optional first parameter "
+"specifies how often space will be added (defaults to 2 nibbles)."
+msgstr ""
+
+#: libraries/transformations/image_jpeg__inline.inc.php:10
+#: libraries/transformations/image_png__inline.inc.php:10
+msgid ""
+"Displays a clickable thumbnail. The options are the maximum width and height "
+"in pixels. The original aspect ratio is preserved."
+msgstr ""
+
+#: libraries/transformations/image_jpeg__link.inc.php:10
+msgid "Displays a link to download this image."
+msgstr ""
+
+#: libraries/transformations/text_plain__dateformat.inc.php:10
+msgid ""
+"Displays a TIME, TIMESTAMP, DATETIME or numeric unix timestamp column as "
+"formatted date. The first option is the offset (in hours) which will be "
+"added to the timestamp (Default: 0). Use second option to specify a "
+"different date/time format string. Third option determines whether you want "
+"to see local date or UTC one (use \"local\" or \"utc\" strings) for that. "
+"According to that, date format has different value - for \"local\" see the "
+"documentation for PHP's strftime() function and for \"utc\" it is done using "
+"gmdate() function."
+msgstr ""
+
+#: libraries/transformations/text_plain__external.inc.php:10
+msgid ""
+"LINUX ONLY: Launches an external application and feeds it the column data "
+"via standard input. Returns the standard output of the application. The "
+"default is Tidy, to pretty-print HTML code. For security reasons, you have "
+"to manually edit the file libraries/transformations/text_plain__external.inc."
+"php and list the tools you want to make available. The first option is then "
+"the number of the program you want to use and the second option is the "
+"parameters for the program. The third option, if set to 1, will convert the "
+"output using htmlspecialchars() (Default 1). The fourth option, if set to 1, "
+"will prevent wrapping and ensure that the output appears all on one line "
+"(Default 1)."
+msgstr ""
+
+#: libraries/transformations/text_plain__formatted.inc.php:10
+msgid ""
+"Displays the contents of the column as-is, without running it through "
+"htmlspecialchars(). That is, the column is assumed to contain valid HTML."
+msgstr ""
+
+#: libraries/transformations/text_plain__imagelink.inc.php:10
+msgid ""
+"Displays an image and a link; the column contains the filename. The first "
+"option is a URL prefix like \"http://www.example.com/\". The second and "
+"third options are the width and the height in pixels."
+msgstr ""
+
+#: libraries/transformations/text_plain__link.inc.php:10
+msgid ""
+"Displays a link; the column contains the filename. The first option is a URL "
+"prefix like \"http://www.example.com/\". The second option is a title for "
+"the link."
+msgstr ""
+
+#: libraries/transformations/text_plain__longToIpv4.inc.php:10
+msgid ""
+"Converts an (IPv4) Internet network address into a string in Internet "
+"standard dotted format."
+msgstr ""
+
+#: libraries/transformations/text_plain__sql.inc.php:10
+msgid "Formats text as SQL query with syntax highlighting."
+msgstr ""
+
+#: libraries/transformations/text_plain__substr.inc.php:10
+msgid ""
+"Displays a part of a string. The first option is the number of characters to "
+"skip from the beginning of the string (Default 0). The second option is the "
+"number of characters to return (Default: until end of string). The third "
+"option is the string to append and/or prepend when truncation occurs "
+"(Default: \"...\")."
+msgstr ""
+
+#: libraries/zip_extension.lib.php:26
+msgid "No files found inside ZIP archive!"
+msgstr ""
+
+#: libraries/zip_extension.lib.php:49 libraries/zip_extension.lib.php:51
+#: libraries/zip_extension.lib.php:66
+msgid "Error in ZIP archive:"
+msgstr ""
+
+#: main.php:68
+msgid "Actions"
+msgstr ""
+
+#: main.php:125
+msgid "MySQL connection collation"
+msgstr ""
+
+#: main.php:139
+msgid "Interface"
+msgstr ""
+
+#: main.php:159
+msgid "Custom color"
+msgstr ""
+
+#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
+#: tbl_change.php:1174
+msgid "Reset"
+msgstr ""
+
+#: main.php:187
+msgid "Protocol version"
+msgstr ""
+
+#: main.php:189 server_privileges.php:1389 server_privileges.php:1536
+#: server_privileges.php:1650 server_privileges.php:2068
+#: server_processlist.php:54
+msgid "User"
+msgstr ""
+
+#: main.php:193
+msgid "MySQL charset"
+msgstr ""
+
+#: main.php:205
+msgid "Web server"
+msgstr ""
+
+#: main.php:211
+msgid "MySQL client version"
+msgstr ""
+
+#: main.php:213
+msgid "PHP extension"
+msgstr ""
+
+#: main.php:219
+msgid "Show PHP information"
+msgstr ""
+
+#: main.php:230
+msgid "Wiki"
+msgstr ""
+
+#: main.php:233
+msgid "Official Homepage"
+msgstr ""
+
+#: main.php:266
+msgid ""
+"Your configuration file contains settings (root with no password) that "
+"correspond to the default MySQL privileged account. Your MySQL server is "
+"running with this default, is open to intrusion, and you really should fix "
+"this security hole by setting a password for user 'root'."
+msgstr ""
+
+#: main.php:274
+msgid ""
+"You have enabled mbstring.func_overload in your PHP configuration. This "
+"option is incompatible with phpMyAdmin and might cause some data to be "
+"corrupted!"
+msgstr ""
+
+#: main.php:282
+msgid ""
+"The mbstring PHP extension was not found and you seem to be using a "
+"multibyte charset. Without the mbstring extension phpMyAdmin is unable to "
+"split strings correctly and it may result in unexpected results."
+msgstr ""
+
+#: main.php:290
+msgid ""
+"Your PHP parameter [a@http://php.net/manual/en/session.configuration.php#ini."
+"session.gc-maxlifetime@]session.gc_maxlifetime[/a] is lower that cookie "
+"validity configured in phpMyAdmin, because of this, your login will expire "
+"sooner than configured in phpMyAdmin."
+msgstr ""
+
+#: main.php:298
+msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
+msgstr ""
+
+#: main.php:306
+msgid ""
+"Directory [code]config[/code], which is used by the setup script, still "
+"exists in your phpMyAdmin directory. You should remove it once phpMyAdmin "
+"has been configured."
+msgstr ""
+
+#: main.php:331
+msgid ""
+"Javascript support is missing or disabled in your browser, some phpMyAdmin "
+"functionality will be missing. For example navigation frame will not refresh "
+"automatically."
+msgstr ""
+
+#: main.php:346
+#, php-format
+msgid ""
+"Your PHP MySQL library version %s differs from your MySQL server version %s. "
+"This may cause unpredictable behavior."
+msgstr ""
+
+#: main.php:358
+#, php-format
+msgid ""
+"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
+"issues."
+msgstr ""
+
+#: navigation.php:66 navigation.php:67 navigation.php:70
+msgid "Reload navigation frame"
+msgstr ""
+
+#: navigation.php:210 server_databases.php:371 server_synchronize.php:1191
+msgid "No databases"
+msgstr ""
+
+#: navigation.php:304
+msgid "Filter"
+msgstr ""
+
+#: navigation.php:305 setup/frames/index.inc.php:218
+#: setup/lib/messages.inc.php:42
+msgid "Clear"
+msgstr ""
+
+#: navigation.php:336 navigation.php:337
+msgctxt "short form"
+msgid "Create table"
+msgstr ""
+
+#: navigation.php:339 navigation.php:502
+msgid "Please select a database"
+msgstr ""
+
+#: pdf_pages.php:41 pdf_pages.php:47 pdf_pages.php:53 pdf_pages.php:58
+#, php-format
+msgid "%s table not found or not set in %s"
+msgstr ""
+
+#: pdf_pages.php:266
+msgid "Please choose a page to edit"
+msgstr ""
+
+#: pdf_pages.php:304 pmd_pdf.php:114
+msgid "Create a page"
+msgstr ""
+
+#: pdf_pages.php:310
+msgid "Page name"
+msgstr ""
+
+#: pdf_pages.php:314
+msgid "Automatic layout based on"
+msgstr ""
+
+#: pdf_pages.php:316
+msgid "Internal relations"
+msgstr ""
+
+#: pdf_pages.php:339
+msgid "Select Tables"
+msgstr ""
+
+#: pdf_pages.php:362
+msgid "Toggle scratchboard"
+msgstr ""
+
+#: pdf_pages.php:525
+msgid ""
+"The current page has references to tables that no longer exist. Would you "
+"like to delete those references?"
+msgstr ""
+
+#: pdf_schema.php:636
+#, php-format
+msgid "The %s table doesn't exist!"
+msgstr ""
+
+#: pdf_schema.php:672
+#, php-format
+msgid "Please configure the coordinates for table %s"
+msgstr ""
+
+#: pdf_schema.php:995
+#, php-format
+msgid "Schema of the %s database - Page %s"
+msgstr ""
+
+#: pdf_schema.php:1013
+msgid "No tables"
+msgstr ""
+
+#: pdf_schema.php:1032 pdf_schema.php:1141
+msgid "Relational schema"
+msgstr ""
+
+#: pdf_schema.php:1116
+msgid "Table of contents"
+msgstr ""
+
+#: pdf_schema.php:1267 pdf_schema.php:1288 tbl_printview.php:146
+#: tbl_structure.php:183 tbl_tracking.php:278
+msgid "Extra"
+msgstr ""
+
+#: pmd_general.php:64
+msgid "Show/Hide left menu"
+msgstr ""
+
+#: pmd_general.php:68
+msgid "Save position"
+msgstr ""
+
+#: pmd_general.php:71 server_synchronize.php:429 server_synchronize.php:872
+msgid "Create table"
+msgstr ""
+
+#: pmd_general.php:74 pmd_general.php:306
+msgid "Create relation"
+msgstr ""
+
+#: pmd_general.php:80
+msgid "Reload"
+msgstr ""
+
+#: pmd_general.php:83
+msgid "Help"
+msgstr ""
+
+#: pmd_general.php:87
+msgid "Angular links"
+msgstr ""
+
+#: pmd_general.php:87
+msgid "Direct links"
+msgstr ""
+
+#: pmd_general.php:91
+msgid "Snap to grid"
+msgstr ""
+
+#: pmd_general.php:95
+msgid "Small/Big All"
+msgstr ""
+
+#: pmd_general.php:99
+msgid "Toggle small/big"
+msgstr ""
+
+#: pmd_general.php:104
+msgid "Import/Export coordinates for PDF schema"
+msgstr ""
+
+#: pmd_general.php:108
+msgid "Move Menu"
+msgstr ""
+
+#: pmd_general.php:120
+msgid "Hide/Show all"
+msgstr ""
+
+#: pmd_general.php:124
+msgid "Hide/Show Tables with no relation"
+msgstr ""
+
+#: pmd_general.php:164
+msgid "Number of tables"
+msgstr ""
+
+#: pmd_general.php:372
+msgid "Delete relation"
+msgstr ""
+
+#: pmd_help.php:27
+msgid "To select relation, click :"
+msgstr ""
+
+#: pmd_help.php:29
+msgid ""
+"The display column is shown in pink. To set/unset a column as the display "
+"column, click the \"Choose column to display\" icon, then click on the "
+"appropriate column name."
+msgstr ""
+
+#: pmd_pdf.php:63
+msgid "Page has been created"
+msgstr ""
+
+#: pmd_pdf.php:65
+msgid "Page creation failed"
+msgstr ""
+
+#: pmd_pdf.php:85
+msgid "Export/Import to scale"
+msgstr ""
+
+#: pmd_pdf.php:89
+msgid "recommended"
+msgstr ""
+
+#: pmd_pdf.php:94
+msgid "to/from page"
+msgstr ""
+
+#: querywindow.php:104
+msgid "Import files"
+msgstr ""
+
+#: querywindow.php:115
+msgid "All"
+msgstr ""
+
+#: server_binlog.php:120
+msgid "Select binary log to view"
+msgstr ""
+
+#: server_binlog.php:136
+msgid "Files"
+msgstr ""
+
+#: server_binlog.php:183 server_binlog.php:186 server_processlist.php:49
+#: server_processlist.php:51
+msgid "Truncate Shown Queries"
+msgstr ""
+
+#: server_binlog.php:192 server_binlog.php:195 server_processlist.php:49
+#: server_processlist.php:51
+msgid "Show Full Queries"
+msgstr ""
+
+#: server_binlog.php:215
+msgid "Log name"
+msgstr ""
+
+#: server_binlog.php:216
+msgid "Position"
+msgstr ""
+
+#: server_binlog.php:217
+msgid "Event type"
+msgstr ""
+
+#: server_binlog.php:219
+msgid "Original position"
+msgstr ""
+
+#: server_binlog.php:220
+msgid "Information"
+msgstr ""
+
+#: server_collations.php:40
+msgid "Character Sets and Collations"
+msgstr ""
+
+#: server_databases.php:52
+msgid "No databases selected."
+msgstr ""
+
+#: server_databases.php:63
+#, php-format
+msgid "%s databases have been dropped successfully."
+msgstr ""
+
+#: server_databases.php:88
+msgid "Databases statistics"
+msgstr ""
+
+#: server_databases.php:117 server_status.php:371
+#: setup/lib/messages.inc.php:117
+msgid "Tables"
+msgstr ""
+
+#: server_databases.php:195 server_replication.php:181
+#: server_replication.php:209
+msgid "Master replication"
+msgstr ""
+
+#: server_databases.php:197 server_replication.php:248
+msgid "Slave replication"
+msgstr ""
+
+#: server_databases.php:230
+msgid "Jump to database"
+msgstr ""
+
+#: server_databases.php:267
+msgid "Not replicated"
+msgstr ""
+
+#: server_databases.php:273
+msgid "Replicated"
+msgstr ""
+
+#: server_databases.php:289
+#, php-format
+msgid "Check privileges for database "%s"."
+msgstr ""
+
+#: server_databases.php:293 server_databases.php:294
+msgid "Check Privileges"
+msgstr ""
+
+#: server_databases.php:358 server_databases.php:359
+msgid "Enable Statistics"
+msgstr ""
+
+#: server_databases.php:362 server_databases.php:363
+msgid "Disable Statistics"
+msgstr ""
+
+#: server_databases.php:366
+msgid ""
+"Note: Enabling the database statistics here might cause heavy traffic "
+"between the web server and the MySQL server."
+msgstr ""
+
+#: server_engines.php:49
+msgid "Storage Engines"
+msgstr ""
+
+#: server_export.php:21
+msgid "View dump (schema) of databases"
+msgstr ""
+
+#: server_privileges.php:24 server_privileges.php:266
+msgid "Includes all privileges except GRANT."
+msgstr ""
+
+#: server_privileges.php:25 server_privileges.php:192
+#: server_privileges.php:515
+msgid "Allows altering the structure of existing tables."
+msgstr ""
+
+#: server_privileges.php:26 server_privileges.php:208
+#: server_privileges.php:521
+msgid "Allows altering and dropping stored routines."
+msgstr ""
+
+#: server_privileges.php:27 server_privileges.php:184
+#: server_privileges.php:514
+msgid "Allows creating new databases and tables."
+msgstr ""
+
+#: server_privileges.php:28 server_privileges.php:207
+#: server_privileges.php:520
+msgid "Allows creating stored routines."
+msgstr ""
+
+#: server_privileges.php:29 server_privileges.php:514
+msgid "Allows creating new tables."
+msgstr ""
+
+#: server_privileges.php:30 server_privileges.php:195
+#: server_privileges.php:518
+msgid "Allows creating temporary tables."
+msgstr ""
+
+#: server_privileges.php:31 server_privileges.php:209
+#: server_privileges.php:554
+msgid "Allows creating, dropping and renaming user accounts."
+msgstr ""
+
+#: server_privileges.php:32 server_privileges.php:199
+#: server_privileges.php:203 server_privileges.php:526
+#: server_privileges.php:530
+msgid "Allows creating new views."
+msgstr ""
+
+#: server_privileges.php:33 server_privileges.php:183
+#: server_privileges.php:506
+msgid "Allows deleting data."
+msgstr ""
+
+#: server_privileges.php:34 server_privileges.php:185
+#: server_privileges.php:517
+msgid "Allows dropping databases and tables."
+msgstr ""
+
+#: server_privileges.php:35 server_privileges.php:517
+msgid "Allows dropping tables."
+msgstr ""
+
+#: server_privileges.php:36 server_privileges.php:200
+#: server_privileges.php:534
+msgid "Allows to set up events for the event scheduler"
+msgstr ""
+
+#: server_privileges.php:37 server_privileges.php:210
+#: server_privileges.php:522
+msgid "Allows executing stored routines."
+msgstr ""
+
+#: server_privileges.php:38 server_privileges.php:189
+#: server_privileges.php:509
+msgid "Allows importing data from and exporting data into files."
+msgstr ""
+
+#: server_privileges.php:39 server_privileges.php:540
+msgid ""
+"Allows adding users and privileges without reloading the privilege tables."
+msgstr ""
+
+#: server_privileges.php:40 server_privileges.php:191
+#: server_privileges.php:516
+msgid "Allows creating and dropping indexes."
+msgstr ""
+
+#: server_privileges.php:41 server_privileges.php:181
+#: server_privileges.php:442 server_privileges.php:504
+msgid "Allows inserting and replacing data."
+msgstr ""
+
+#: server_privileges.php:42 server_privileges.php:196
+#: server_privileges.php:549
+msgid "Allows locking tables for the current thread."
+msgstr ""
+
+#: server_privileges.php:43 server_privileges.php:646
+#: server_privileges.php:648
+msgid "Limits the number of new connections the user may open per hour."
+msgstr ""
+
+#: server_privileges.php:44 server_privileges.php:634
+#: server_privileges.php:636
+msgid "Limits the number of queries the user may send to the server per hour."
+msgstr ""
+
+#: server_privileges.php:45 server_privileges.php:640
+#: server_privileges.php:642
+msgid ""
+"Limits the number of commands that change any table or database the user may "
+"execute per hour."
+msgstr ""
+
+#: server_privileges.php:46 server_privileges.php:652
+#: server_privileges.php:654
+msgid "Limits the number of simultaneous connections the user may have."
+msgstr ""
+
+#: server_privileges.php:47 server_privileges.php:188
+#: server_privileges.php:544
+msgid "Allows viewing processes of all users"
+msgstr ""
+
+#: server_privileges.php:48 server_privileges.php:190
+#: server_privileges.php:448 server_privileges.php:550
+msgid "Has no effect in this MySQL version."
+msgstr ""
+
+#: server_privileges.php:49 server_privileges.php:186
+#: server_privileges.php:545
+msgid "Allows reloading server settings and flushing the server's caches."
+msgstr ""
+
+#: server_privileges.php:50 server_privileges.php:198
+#: server_privileges.php:552
+msgid "Allows the user to ask where the slaves / masters are."
+msgstr ""
+
+#: server_privileges.php:51 server_privileges.php:197
+#: server_privileges.php:553
+msgid "Needed for the replication slaves."
+msgstr ""
+
+#: server_privileges.php:52 server_privileges.php:180
+#: server_privileges.php:439 server_privileges.php:503
+msgid "Allows reading data."
+msgstr ""
+
+#: server_privileges.php:53 server_privileges.php:193
+#: server_privileges.php:547
+msgid "Gives access to the complete list of databases."
+msgstr ""
+
+#: server_privileges.php:54 server_privileges.php:204
+#: server_privileges.php:206 server_privileges.php:519
+msgid "Allows performing SHOW CREATE VIEW queries."
+msgstr ""
+
+#: server_privileges.php:55 server_privileges.php:187
+#: server_privileges.php:546
+msgid "Allows shutting down the server."
+msgstr ""
+
+#: server_privileges.php:56 server_privileges.php:194
+#: server_privileges.php:543
+msgid ""
+"Allows connecting, even if maximum number of connections is reached; "
+"required for most administrative operations like setting global variables or "
+"killing threads of other users."
+msgstr ""
+
+#: server_privileges.php:57 server_privileges.php:201
+#: server_privileges.php:535
+msgid "Allows creating and dropping triggers"
+msgstr ""
+
+#: server_privileges.php:58 server_privileges.php:182
+#: server_privileges.php:445 server_privileges.php:505
+msgid "Allows changing data."
+msgstr ""
+
+#: server_privileges.php:59 server_privileges.php:260
+msgid "No privileges."
+msgstr ""
+
+#: server_privileges.php:302 server_privileges.php:303
+msgctxt "None privileges"
+msgid "None"
+msgstr ""
+
+#: server_privileges.php:431 server_privileges.php:566
+#: server_privileges.php:1718 server_privileges.php:1724
+msgid "Table-specific privileges"
+msgstr ""
+
+#: server_privileges.php:432 server_privileges.php:574
+#: server_privileges.php:1540
+msgid " Note: MySQL privilege names are expressed in English "
+msgstr ""
+
+#: server_privileges.php:563 server_privileges.php:1539
+msgid "Global privileges"
+msgstr ""
+
+#: server_privileges.php:565 server_privileges.php:1718
+msgid "Database-specific privileges"
+msgstr ""
+
+#: server_privileges.php:610
+msgid "Administration"
+msgstr ""
+
+#: server_privileges.php:630
+msgid "Resource limits"
+msgstr ""
+
+#: server_privileges.php:631
+msgid "Note: Setting these options to 0 (zero) removes the limit."
+msgstr ""
+
+#: server_privileges.php:708
+msgid "Login Information"
+msgstr ""
+
+#: server_privileges.php:802
+msgid "Do not change the password"
+msgstr ""
+
+#: server_privileges.php:843 server_privileges.php:2205
+msgid "No user found."
+msgstr ""
+
+#: server_privileges.php:887
+#, php-format
+msgid "The user %s already exists!"
+msgstr ""
+
+#: server_privileges.php:970
+msgid "You have added a new user."
+msgstr ""
+
+#: server_privileges.php:1191
+#, php-format
+msgid "You have updated the privileges for %s."
+msgstr ""
+
+#: server_privileges.php:1215
+#, php-format
+msgid "You have revoked the privileges for %s"
+msgstr ""
+
+#: server_privileges.php:1251
+#, php-format
+msgid "The password for %s was changed successfully."
+msgstr ""
+
+#: server_privileges.php:1271
+#, php-format
+msgid "Deleting %s"
+msgstr ""
+
+#: server_privileges.php:1282
+msgid "No users selected for deleting!"
+msgstr ""
+
+#: server_privileges.php:1285
+msgid "Reloading the privileges"
+msgstr ""
+
+#: server_privileges.php:1300
+msgid "The selected users have been deleted successfully."
+msgstr ""
+
+#: server_privileges.php:1335
+msgid "The privileges were reloaded successfully."
+msgstr ""
+
+#: server_privileges.php:1363 server_privileges.php:1649
+msgid "Edit Privileges"
+msgstr ""
+
+#: server_privileges.php:1372
+msgid "Revoke"
+msgstr ""
+
+#: server_privileges.php:1404
+msgid "User overview"
+msgstr ""
+
+#: server_privileges.php:1541 server_privileges.php:1723
+#: server_privileges.php:2072
+msgid "Grant"
+msgstr ""
+
+#: server_privileges.php:1560 server_privileges.php:2162
+msgid "Any"
+msgstr ""
+
+#: server_privileges.php:1609 server_privileges.php:1633
+#: server_privileges.php:2027 server_privileges.php:2216
+msgid "Add a new User"
+msgstr ""
+
+#: server_privileges.php:1614
+msgid "Remove selected users"
+msgstr ""
+
+#: server_privileges.php:1617
+msgid "Revoke all active privileges from the users and delete them afterwards."
+msgstr ""
+
+#: server_privileges.php:1618 server_privileges.php:1619
+#: server_privileges.php:1620
+msgid "Drop the databases that have the same names as the users."
+msgstr ""
+
+#: server_privileges.php:1636
+#, php-format
+msgid ""
+"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
+"tables. The content of these tables may differ from the privileges the "
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
+msgstr ""
+
+#: server_privileges.php:1684
+msgid "The selected user was not found in the privilege table."
+msgstr ""
+
+#: server_privileges.php:1724
+msgid "Column-specific privileges"
+msgstr ""
+
+#: server_privileges.php:1925
+msgid "Add privileges on the following database"
+msgstr ""
+
+#: server_privileges.php:1943
+msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
+msgstr ""
+
+#: server_privileges.php:1946
+msgid "Add privileges on the following table"
+msgstr ""
+
+#: server_privileges.php:2003
+msgid "Change Login Information / Copy User"
+msgstr ""
+
+#: server_privileges.php:2006
+msgid "Create a new user with the same privileges and ..."
+msgstr ""
+
+#: server_privileges.php:2008
+msgid "... keep the old one."
+msgstr ""
+
+#: server_privileges.php:2009
+msgid " ... delete the old one from the user tables."
+msgstr ""
+
+#: server_privileges.php:2010
+msgid ""
+" ... revoke all active privileges from the old one and delete it afterwards."
+msgstr ""
+
+#: server_privileges.php:2011
+msgid ""
+" ... delete the old one from the user tables and reload the privileges "
+"afterwards."
+msgstr ""
+
+#: server_privileges.php:2033
+msgid "Database for user"
+msgstr ""
+
+#: server_privileges.php:2037
+msgctxt "Create none database for user"
+msgid "None"
+msgstr ""
+
+#: server_privileges.php:2038
+msgid "Create database with same name and grant all privileges"
+msgstr ""
+
+#: server_privileges.php:2039
+msgid "Grant all privileges on wildcard name (username\\_%)"
+msgstr ""
+
+#: server_privileges.php:2042
+#, php-format
+msgid "Grant all privileges on database "%s""
+msgstr ""
+
+#: server_privileges.php:2065
+#, php-format
+msgid "Users having access to "%s""
+msgstr ""
+
+#: server_privileges.php:2173
+msgid "global"
+msgstr ""
+
+#: server_privileges.php:2175
+msgid "database-specific"
+msgstr ""
+
+#: server_privileges.php:2177
+msgid "wildcard"
+msgstr ""
+
+#: server_processlist.php:22
+#, php-format
+msgid "Thread %s was successfully killed."
+msgstr ""
+
+#: server_processlist.php:24
+#, php-format
+msgid ""
+"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
+msgstr ""
+
+#: server_processlist.php:53
+msgid "ID"
+msgstr ""
+
+#: server_replication.php:51
+msgid "Unknown error"
+msgstr ""
+
+#: server_replication.php:58
+#, php-format
+msgid "Unable to connect to master %s."
+msgstr ""
+
+#: server_replication.php:65
+msgid ""
+"Unable to read master log position. Possible privilege problem on master."
+msgstr ""
+
+#: server_replication.php:71
+msgid "Unable to change master"
+msgstr ""
+
+#: server_replication.php:74
+#, php-format
+msgid "Master server changed succesfully to %s"
+msgstr ""
+
+#: server_replication.php:182
+msgid "This server is configured as master in a replication process."
+msgstr ""
+
+#: server_replication.php:184 server_status.php:392
+msgid "Show master status"
+msgstr ""
+
+#: server_replication.php:187
+msgid "Show connected slaves"
+msgstr ""
+
+#: server_replication.php:210
+#, php-format
+msgid ""
+"This server is not configured as master in a replication process. Would you "
+"like to configure it?"
+msgstr ""
+
+#: server_replication.php:217
+msgid "Master configuration"
+msgstr ""
+
+#: server_replication.php:218
+msgid ""
+"This server is not configured as master server in a replication process. You "
+"can choose from either replicating all databases and ignoring certain "
+"(useful if you want to replicate majority of databases) or you can choose to "
+"ignore all databases by default and allow only certain databases to be "
+"replicated. Please select the mode:"
+msgstr ""
+
+#: server_replication.php:221
+msgid "Replicate all databases; Ignore:"
+msgstr ""
+
+#: server_replication.php:222
+msgid "Ignore all databases; Replicate:"
+msgstr ""
+
+#: server_replication.php:225
+msgid "Please select databases:"
+msgstr ""
+
+#: server_replication.php:228
+msgid ""
+"Now, add the following lines at the end of [mysqld] section in your my.cnf "
+"and please restart the MySQL server afterwards."
+msgstr ""
+
+#: server_replication.php:230
+msgid ""
+"Once you restarted MySQL server, please click on Go button. Afterwards, you "
+"should see a message informing you, that this server is configured as "
+"master"
+msgstr ""
+
+#: server_replication.php:293
+msgid "Slave SQL Thread not running!"
+msgstr ""
+
+#: server_replication.php:296
+msgid "Slave IO Thread not running!"
+msgstr ""
+
+#: server_replication.php:305
+msgid ""
+"Server is configured as slave in a replication process. Would you like to:"
+msgstr ""
+
+#: server_replication.php:308
+msgid "See slave status table"
+msgstr ""
+
+#: server_replication.php:311
+msgid "Synchronize databases with master"
+msgstr ""
+
+#: server_replication.php:322
+msgid "Control slave:"
+msgstr ""
+
+#: server_replication.php:325
+msgid "Full start"
+msgstr ""
+
+#: server_replication.php:325
+msgid "Full stop"
+msgstr ""
+
+#: server_replication.php:326
+msgid "Reset slave"
+msgstr ""
+
+#: server_replication.php:327
+#, php-format
+msgid "SQL Thread %s only"
+msgstr ""
+
+#: server_replication.php:327 server_replication.php:328
+msgid "Start"
+msgstr ""
+
+#: server_replication.php:327 server_replication.php:328
+msgid "Stop"
+msgstr ""
+
+#: server_replication.php:328
+#, php-format
+msgid "IO Thread %s only"
+msgstr ""
+
+#: server_replication.php:332
+msgid "Error management:"
+msgstr ""
+
+#: server_replication.php:334
+msgid "Skipping errors might lead into unsynchronized master and slave!"
+msgstr ""
+
+#: server_replication.php:336
+msgid "Skip current error"
+msgstr ""
+
+#: server_replication.php:337
+msgid "Skip next"
+msgstr ""
+
+#: server_replication.php:340
+msgid "errors."
+msgstr ""
+
+#: server_replication.php:355
+#, php-format
+msgid ""
+"This server is not configured as slave in a replication process. Would you "
+"like to configure it?"
+msgstr ""
+
+#: server_status.php:40
+msgid ""
+"The number of transactions that used the temporary binary log cache but that "
+"exceeded the value of binlog_cache_size and used a temporary file to store "
+"statements from the transaction."
+msgstr ""
+
+#: server_status.php:41
+msgid "The number of transactions that used the temporary binary log cache."
+msgstr ""
+
+#: server_status.php:42
+msgid ""
+"The number of temporary tables on disk created automatically by the server "
+"while executing statements. If Created_tmp_disk_tables is big, you may want "
+"to increase the tmp_table_size value to cause temporary tables to be memory-"
+"based instead of disk-based."
+msgstr ""
+
+#: server_status.php:43
+msgid "How many temporary files mysqld has created."
+msgstr ""
+
+#: server_status.php:44
+msgid ""
+"The number of in-memory temporary tables created automatically by the server "
+"while executing statements."
+msgstr ""
+
+#: server_status.php:45
+msgid ""
+"The number of rows written with INSERT DELAYED for which some error occurred "
+"(probably duplicate key)."
+msgstr ""
+
+#: server_status.php:46
+msgid ""
+"The number of INSERT DELAYED handler threads in use. Every different table "
+"on which one uses INSERT DELAYED gets its own thread."
+msgstr ""
+
+#: server_status.php:47
+msgid "The number of INSERT DELAYED rows written."
+msgstr ""
+
+#: server_status.php:48
+msgid "The number of executed FLUSH statements."
+msgstr ""
+
+#: server_status.php:49
+msgid "The number of internal COMMIT statements."
+msgstr ""
+
+#: server_status.php:50
+msgid "The number of times a row was deleted from a table."
+msgstr ""
+
+#: server_status.php:51
+msgid ""
+"The MySQL server can ask the NDB Cluster storage engine if it knows about a "
+"table with a given name. This is called discovery. Handler_discover "
+"indicates the number of time tables have been discovered."
+msgstr ""
+
+#: server_status.php:52
+msgid ""
+"The number of times the first entry was read from an index. If this is high, "
+"it suggests that the server is doing a lot of full index scans; for example, "
+"SELECT col1 FROM foo, assuming that col1 is indexed."
+msgstr ""
+
+#: server_status.php:53
+msgid ""
+"The number of requests to read a row based on a key. If this is high, it is "
+"a good indication that your queries and tables are properly indexed."
+msgstr ""
+
+#: server_status.php:54
+msgid ""
+"The number of requests to read the next row in key order. This is "
+"incremented if you are querying an index column with a range constraint or "
+"if you are doing an index scan."
+msgstr ""
+
+#: server_status.php:55
+msgid ""
+"The number of requests to read the previous row in key order. This read "
+"method is mainly used to optimize ORDER BY ... DESC."
+msgstr ""
+
+#: server_status.php:56
+msgid ""
+"The number of requests to read a row based on a fixed position. This is high "
+"if you are doing a lot of queries that require sorting of the result. You "
+"probably have a lot of queries that require MySQL to scan whole tables or "
+"you have joins that don't use keys properly."
+msgstr ""
+
+#: server_status.php:57
+msgid ""
+"The number of requests to read the next row in the data file. This is high "
+"if you are doing a lot of table scans. Generally this suggests that your "
+"tables are not properly indexed or that your queries are not written to take "
+"advantage of the indexes you have."
+msgstr ""
+
+#: server_status.php:58
+msgid "The number of internal ROLLBACK statements."
+msgstr ""
+
+#: server_status.php:59
+msgid "The number of requests to update a row in a table."
+msgstr ""
+
+#: server_status.php:60
+msgid "The number of requests to insert a row in a table."
+msgstr ""
+
+#: server_status.php:61
+msgid "The number of pages containing data (dirty or clean)."
+msgstr ""
+
+#: server_status.php:62
+msgid "The number of pages currently dirty."
+msgstr ""
+
+#: server_status.php:63
+msgid "The number of buffer pool pages that have been requested to be flushed."
+msgstr ""
+
+#: server_status.php:64
+msgid "The number of free pages."
+msgstr ""
+
+#: server_status.php:65
+msgid ""
+"The number of latched pages in InnoDB buffer pool. These are pages currently "
+"being read or written or that can't be flushed or removed for some other "
+"reason."
+msgstr ""
+
+#: server_status.php:66
+msgid ""
+"The number of pages busy because they have been allocated for administrative "
+"overhead such as row locks or the adaptive hash index. This value can also "
+"be calculated as Innodb_buffer_pool_pages_total - "
+"Innodb_buffer_pool_pages_free - Innodb_buffer_pool_pages_data."
+msgstr ""
+
+#: server_status.php:67
+msgid "Total size of buffer pool, in pages."
+msgstr ""
+
+#: server_status.php:68
+msgid ""
+"The number of \"random\" read-aheads InnoDB initiated. This happens when a "
+"query is to scan a large portion of a table but in random order."
+msgstr ""
+
+#: server_status.php:69
+msgid ""
+"The number of sequential read-aheads InnoDB initiated. This happens when "
+"InnoDB does a sequential full table scan."
+msgstr ""
+
+#: server_status.php:70
+msgid "The number of logical read requests InnoDB has done."
+msgstr ""
+
+#: server_status.php:71
+msgid ""
+"The number of logical reads that InnoDB could not satisfy from buffer pool "
+"and had to do a single-page read."
+msgstr ""
+
+#: server_status.php:72
+msgid ""
+"Normally, writes to the InnoDB buffer pool happen in the background. "
+"However, if it's necessary to read or create a page and no clean pages are "
+"available, it's necessary to wait for pages to be flushed first. This "
+"counter counts instances of these waits. If the buffer pool size was set "
+"properly, this value should be small."
+msgstr ""
+
+#: server_status.php:73
+msgid "The number writes done to the InnoDB buffer pool."
+msgstr ""
+
+#: server_status.php:74
+msgid "The number of fsync() operations so far."
+msgstr ""
+
+#: server_status.php:75
+msgid "The current number of pending fsync() operations."
+msgstr ""
+
+#: server_status.php:76
+msgid "The current number of pending reads."
+msgstr ""
+
+#: server_status.php:77
+msgid "The current number of pending writes."
+msgstr ""
+
+#: server_status.php:78
+msgid "The amount of data read so far, in bytes."
+msgstr ""
+
+#: server_status.php:79
+msgid "The total number of data reads."
+msgstr ""
+
+#: server_status.php:80
+msgid "The total number of data writes."
+msgstr ""
+
+#: server_status.php:81
+msgid "The amount of data written so far, in bytes."
+msgstr ""
+
+#: server_status.php:82
+msgid "The number of pages that have been written for doublewrite operations."
+msgstr ""
+
+#: server_status.php:83
+msgid "The number of doublewrite operations that have been performed."
+msgstr ""
+
+#: server_status.php:84
+msgid ""
+"The number of waits we had because log buffer was too small and we had to "
+"wait for it to be flushed before continuing."
+msgstr ""
+
+#: server_status.php:85
+msgid "The number of log write requests."
+msgstr ""
+
+#: server_status.php:86
+msgid "The number of physical writes to the log file."
+msgstr ""
+
+#: server_status.php:87
+msgid "The number of fsync() writes done to the log file."
+msgstr ""
+
+#: server_status.php:88
+msgid "The number of pending log file fsyncs."
+msgstr ""
+
+#: server_status.php:89
+msgid "Pending log file writes."
+msgstr ""
+
+#: server_status.php:90
+msgid "The number of bytes written to the log file."
+msgstr ""
+
+#: server_status.php:91
+msgid "The number of pages created."
+msgstr ""
+
+#: server_status.php:92
+msgid ""
+"The compiled-in InnoDB page size (default 16KB). Many values are counted in "
+"pages; the page size allows them to be easily converted to bytes."
+msgstr ""
+
+#: server_status.php:93
+msgid "The number of pages read."
+msgstr ""
+
+#: server_status.php:94
+msgid "The number of pages written."
+msgstr ""
+
+#: server_status.php:95
+msgid "The number of row locks currently being waited for."
+msgstr ""
+
+#: server_status.php:96
+msgid "The average time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:97
+msgid "The total time spent in acquiring row locks, in milliseconds."
+msgstr ""
+
+#: server_status.php:98
+msgid "The maximum time to acquire a row lock, in milliseconds."
+msgstr ""
+
+#: server_status.php:99
+msgid "The number of times a row lock had to be waited for."
+msgstr ""
+
+#: server_status.php:100
+msgid "The number of rows deleted from InnoDB tables."
+msgstr ""
+
+#: server_status.php:101
+msgid "The number of rows inserted in InnoDB tables."
+msgstr ""
+
+#: server_status.php:102
+msgid "The number of rows read from InnoDB tables."
+msgstr ""
+
+#: server_status.php:103
+msgid "The number of rows updated in InnoDB tables."
+msgstr ""
+
+#: server_status.php:104
+msgid ""
+"The number of key blocks in the key cache that have changed but haven't yet "
+"been flushed to disk. It used to be known as Not_flushed_key_blocks."
+msgstr ""
+
+#: server_status.php:105
+msgid ""
+"The number of unused blocks in the key cache. You can use this value to "
+"determine how much of the key cache is in use."
+msgstr ""
+
+#: server_status.php:106
+msgid ""
+"The number of used blocks in the key cache. This value is a high-water mark "
+"that indicates the maximum number of blocks that have ever been in use at "
+"one time."
+msgstr ""
+
+#: server_status.php:107
+msgid "The number of requests to read a key block from the cache."
+msgstr ""
+
+#: server_status.php:108
+msgid ""
+"The number of physical reads of a key block from disk. If Key_reads is big, "
+"then your key_buffer_size value is probably too small. The cache miss rate "
+"can be calculated as Key_reads/Key_read_requests."
+msgstr ""
+
+#: server_status.php:109
+msgid "The number of requests to write a key block to the cache."
+msgstr ""
+
+#: server_status.php:110
+msgid "The number of physical writes of a key block to disk."
+msgstr ""
+
+#: server_status.php:111
+msgid ""
+"The total cost of the last compiled query as computed by the query "
+"optimizer. Useful for comparing the cost of different query plans for the "
+"same query. The default value of 0 means that no query has been compiled yet."
+msgstr ""
+
+#: server_status.php:112
+msgid "The number of rows waiting to be written in INSERT DELAYED queues."
+msgstr ""
+
+#: server_status.php:113
+msgid ""
+"The number of tables that have been opened. If opened tables is big, your "
+"table cache value is probably too small."
+msgstr ""
+
+#: server_status.php:114
+msgid "The number of files that are open."
+msgstr ""
+
+#: server_status.php:115
+msgid "The number of streams that are open (used mainly for logging)."
+msgstr ""
+
+#: server_status.php:116
+msgid "The number of tables that are open."
+msgstr ""
+
+#: server_status.php:117
+msgid "The number of free memory blocks in query cache."
+msgstr ""
+
+#: server_status.php:118
+msgid "The amount of free memory for query cache."
+msgstr ""
+
+#: server_status.php:119
+msgid "The number of cache hits."
+msgstr ""
+
+#: server_status.php:120
+msgid "The number of queries added to the cache."
+msgstr ""
+
+#: server_status.php:121
+msgid ""
+"The number of queries that have been removed from the cache to free up "
+"memory for caching new queries. This information can help you tune the query "
+"cache size. The query cache uses a least recently used (LRU) strategy to "
+"decide which queries to remove from the cache."
+msgstr ""
+
+#: server_status.php:122
+msgid ""
+"The number of non-cached queries (not cachable, or not cached due to the "
+"query_cache_type setting)."
+msgstr ""
+
+#: server_status.php:123
+msgid "The number of queries registered in the cache."
+msgstr ""
+
+#: server_status.php:124
+msgid "The total number of blocks in the query cache."
+msgstr ""
+
+#: server_status.php:125
+msgctxt "$strShowStatusReset"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:126
+msgid "The status of failsafe replication (not yet implemented)."
+msgstr ""
+
+#: server_status.php:127
+msgid ""
+"The number of joins that do not use indexes. If this value is not 0, you "
+"should carefully check the indexes of your tables."
+msgstr ""
+
+#: server_status.php:128
+msgid "The number of joins that used a range search on a reference table."
+msgstr ""
+
+#: server_status.php:129
+msgid ""
+"The number of joins without keys that check for key usage after each row. "
+"(If this is not 0, you should carefully check the indexes of your tables.)"
+msgstr ""
+
+#: server_status.php:130
+msgid ""
+"The number of joins that used ranges on the first table. (It's normally not "
+"critical even if this is big.)"
+msgstr ""
+
+#: server_status.php:131
+msgid "The number of joins that did a full scan of the first table."
+msgstr ""
+
+#: server_status.php:132
+msgid "The number of temporary tables currently open by the slave SQL thread."
+msgstr ""
+
+#: server_status.php:133
+msgid ""
+"Total (since startup) number of times the replication slave SQL thread has "
+"retried transactions."
+msgstr ""
+
+#: server_status.php:134
+msgid "This is ON if this server is a slave that is connected to a master."
+msgstr ""
+
+#: server_status.php:135
+msgid ""
+"The number of threads that have taken more than slow_launch_time seconds to "
+"create."
+msgstr ""
+
+#: server_status.php:136
+msgid ""
+"The number of queries that have taken more than long_query_time seconds."
+msgstr ""
+
+#: server_status.php:137
+msgid ""
+"The number of merge passes the sort algorithm has had to do. If this value "
+"is large, you should consider increasing the value of the sort_buffer_size "
+"system variable."
+msgstr ""
+
+#: server_status.php:138
+msgid "The number of sorts that were done with ranges."
+msgstr ""
+
+#: server_status.php:139
+msgid "The number of sorted rows."
+msgstr ""
+
+#: server_status.php:140
+msgid "The number of sorts that were done by scanning the table."
+msgstr ""
+
+#: server_status.php:141
+msgid "The number of times that a table lock was acquired immediately."
+msgstr ""
+
+#: server_status.php:142
+msgid ""
+"The number of times that a table lock could not be acquired immediately and "
+"a wait was needed. If this is high, and you have performance problems, you "
+"should first optimize your queries, and then either split your table or "
+"tables or use replication."
+msgstr ""
+
+#: server_status.php:143
+msgid ""
+"The number of threads in the thread cache. The cache hit rate can be "
+"calculated as Threads_created/Connections. If this value is red you should "
+"raise your thread_cache_size."
+msgstr ""
+
+#: server_status.php:144
+msgid "The number of currently open connections."
+msgstr ""
+
+#: server_status.php:145
+msgid ""
+"The number of threads created to handle connections. If Threads_created is "
+"big, you may want to increase the thread_cache_size value. (Normally this "
+"doesn't give a notable performance improvement if you have a good thread "
+"implementation.)"
+msgstr ""
+
+#: server_status.php:146
+msgid "The number of threads that are not sleeping."
+msgstr ""
+
+#: server_status.php:157
+msgid "Runtime Information"
+msgstr ""
+
+#: server_status.php:361
+msgid "Handler"
+msgstr ""
+
+#: server_status.php:362
+msgid "Query cache"
+msgstr ""
+
+#: server_status.php:363
+msgid "Threads"
+msgstr ""
+
+#: server_status.php:365
+msgid "Temporary data"
+msgstr ""
+
+#: server_status.php:366
+msgid "Delayed inserts"
+msgstr ""
+
+#: server_status.php:367
+msgid "Key cache"
+msgstr ""
+
+#: server_status.php:368
+msgid "Joins"
+msgstr ""
+
+#: server_status.php:370
+msgid "Sorting"
+msgstr ""
+
+#: server_status.php:372
+msgid "Transaction coordinator"
+msgstr ""
+
+#: server_status.php:382
+msgid "Flush (close) all tables"
+msgstr ""
+
+#: server_status.php:384
+msgid "Show open tables"
+msgstr ""
+
+#: server_status.php:389
+msgid "Show slave hosts"
+msgstr ""
+
+#: server_status.php:395
+msgid "Show slave status"
+msgstr ""
+
+#: server_status.php:400
+msgid "Flush query cache"
+msgstr ""
+
+#: server_status.php:405
+msgid "Show processes"
+msgstr ""
+
+#: server_status.php:455
+msgctxt "for Show status"
+msgid "Reset"
+msgstr ""
+
+#: server_status.php:461
+#, php-format
+msgid "This MySQL server has been running for %s. It started up on %s."
+msgstr ""
+
+#: server_status.php:471
+msgid ""
+"This MySQL server works as master and slave in replication"
+"b> process."
+msgstr ""
+
+#: server_status.php:473
+msgid "This MySQL server works as master in replication process."
+msgstr ""
+
+#: server_status.php:475
+msgid "This MySQL server works as slave in replication process."
+msgstr ""
+
+#: server_status.php:477
+msgid ""
+"For further information about replication status on the server, please visit "
+"the replication section."
+msgstr ""
+
+#: server_status.php:494
+msgid ""
+"Server traffic: These tables show the network traffic statistics of "
+"this MySQL server since its startup."
+msgstr ""
+
+#: server_status.php:499
+msgid "Traffic"
+msgstr ""
+
+#: server_status.php:499
+msgid ""
+"On a busy server, the byte counters may overrun, so those statistics as "
+"reported by the MySQL server may be incorrect."
+msgstr ""
+
+#: server_status.php:500 server_status.php:545 server_status.php:608
+#: server_status.php:666
+msgid "per hour"
+msgstr ""
+
+#: server_status.php:505
+msgid "Received"
+msgstr ""
+
+#: server_status.php:515
+msgid "Sent"
+msgstr ""
+
+#: server_status.php:544
+msgid "Connections"
+msgstr ""
+
+#: server_status.php:551
+msgid "max. concurrent connections"
+msgstr ""
+
+#: server_status.php:558
+msgid "Failed attempts"
+msgstr ""
+
+#: server_status.php:572
+msgid "Aborted"
+msgstr ""
+
+#: server_status.php:601
+#, php-format
+msgid ""
+"Query statistics: Since its startup, %s queries have been sent to the "
+"server."
+msgstr ""
+
+#: server_status.php:609
+msgid "per minute"
+msgstr ""
+
+#: server_status.php:610
+msgid "per second"
+msgstr ""
+
+#: server_status.php:665
+msgid "Query type"
+msgstr ""
+
+#: server_status.php:832
+msgid "Replication status"
+msgstr ""
+
+#: server_synchronize.php:94
+msgid "Could not connect to the source"
+msgstr ""
+
+#: server_synchronize.php:97
+msgid "Could not connect to the target"
+msgstr ""
+
+#: server_synchronize.php:122 server_synchronize.php:125 tbl_create.php:82
+#: tbl_get_field.php:20
+#, php-format
+msgid "'%s' database does not exist."
+msgstr ""
+
+#: server_synchronize.php:265
+msgid "Structure Synchronization"
+msgstr ""
+
+#: server_synchronize.php:272
+msgid "Data Synchronization"
+msgstr ""
+
+#: server_synchronize.php:400 server_synchronize.php:839
+msgid "not present"
+msgstr ""
+
+#: server_synchronize.php:424 server_synchronize.php:867
+msgid "Structure Difference"
+msgstr ""
+
+#: server_synchronize.php:425 server_synchronize.php:868
+msgid "Data Difference"
+msgstr ""
+
+#: server_synchronize.php:430 server_synchronize.php:873
+msgid "Add column(s)"
+msgstr ""
+
+#: server_synchronize.php:431 server_synchronize.php:874
+msgid "Remove column(s)"
+msgstr ""
+
+#: server_synchronize.php:432 server_synchronize.php:875
+msgid "Alter column(s)"
+msgstr ""
+
+#: server_synchronize.php:433 server_synchronize.php:876
+msgid "Remove index(s)"
+msgstr ""
+
+#: server_synchronize.php:434 server_synchronize.php:877
+msgid "Apply index(s)"
+msgstr ""
+
+#: server_synchronize.php:435 server_synchronize.php:878
+msgid "Update row(s)"
+msgstr ""
+
+#: server_synchronize.php:436 server_synchronize.php:879
+msgid "Insert row(s)"
+msgstr ""
+
+#: server_synchronize.php:446 server_synchronize.php:890
+msgid "Would you like to delete all the previous rows from target tables?"
+msgstr ""
+
+#: server_synchronize.php:449 server_synchronize.php:894
+msgid "Apply Selected Changes"
+msgstr ""
+
+#: server_synchronize.php:451 server_synchronize.php:896
+msgid "Synchronize Databases"
+msgstr ""
+
+#: server_synchronize.php:464
+msgid "Selected target tables have been synchronized with source tables."
+msgstr ""
+
+#: server_synchronize.php:942
+msgid "Target database has been synchronized with source database"
+msgstr ""
+
+#: server_synchronize.php:1003
+msgid "The following queries have been executed:"
+msgstr ""
+
+#: server_synchronize.php:1122
+msgid "Enter manually"
+msgstr ""
+
+#: server_synchronize.php:1123
+msgid "Current connection"
+msgstr ""
+
+#: server_synchronize.php:1152
+#, php-format
+msgid "Configuration: %s"
+msgstr ""
+
+#: server_synchronize.php:1167
+msgid "Socket"
+msgstr ""
+
+#: server_synchronize.php:1213
+msgid ""
+"Target database will be completely synchronized with source database. Source "
+"database will remain unchanged."
+msgstr ""
+
+#: server_variables.php:35
+msgid "Server variables and settings"
+msgstr ""
+
+#: server_variables.php:55
+msgid "Session value"
+msgstr ""
+
+#: server_variables.php:55 server_variables.php:89
+msgid "Global value"
+msgstr ""
+
+#: setup/frames/config.inc.php:25 setup/frames/index.inc.php:152
+#: setup/lib/messages.inc.php:45
+msgid "Configuration file"
+msgstr ""
+
+#: setup/frames/config.inc.php:38 setup/frames/index.inc.php:212
+#: setup/lib/messages.inc.php:65
+msgid "Download"
+msgstr ""
+
+#: setup/frames/index.inc.php:58 setup/lib/messages.inc.php:164
+msgid ""
+"You are not using a secure connection; all data (including potentially "
+"sensitive information, like passwords) is transferred unencrypted!"
+msgstr ""
+
+#: setup/frames/index.inc.php:87 setup/frames/menu.inc.php:17
+#: setup/lib/messages.inc.php:219
+msgid "Overview"
+msgstr ""
+
+#: setup/frames/index.inc.php:95 setup/lib/messages.inc.php:337
+msgid "Show hidden messages (#MSG_COUNT)"
+msgstr ""
+
+#: setup/frames/index.inc.php:135 setup/lib/messages.inc.php:213
+msgid "There are no configured servers"
+msgstr ""
+
+#: setup/frames/index.inc.php:143 setup/lib/messages.inc.php:212
+msgid "New server"
+msgstr ""
+
+#: setup/frames/index.inc.php:172 setup/lib/messages.inc.php:50
+msgid "Default language"
+msgstr ""
+
+#: setup/frames/index.inc.php:182 setup/lib/messages.inc.php:187
+msgid "let the user choose"
+msgstr ""
+
+#: setup/frames/index.inc.php:193 setup/lib/messages.inc.php:216
+msgid "- none -"
+msgstr ""
+
+#: setup/frames/index.inc.php:196 setup/lib/messages.inc.php:51
+msgid "Default server"
+msgstr ""
+
+#: setup/frames/index.inc.php:206 setup/lib/messages.inc.php:66
+msgid "End of line"
+msgstr ""
+
+#: setup/frames/index.inc.php:211 setup/lib/messages.inc.php:61
+msgid "Display"
+msgstr ""
+
+#: setup/frames/index.inc.php:215 setup/lib/messages.inc.php:190
+msgid "Load"
+msgstr ""
+
+#: setup/frames/index.inc.php:226 setup/lib/messages.inc.php:152
+msgid "phpMyAdmin homepage"
+msgstr ""
+
+#: setup/frames/index.inc.php:227 setup/lib/messages.inc.php:64
+msgid "Donate"
+msgstr ""
+
+#: setup/frames/index.inc.php:228 setup/lib/messages.inc.php:370
+msgid "Check for latest version"
+msgstr ""
+
+#: setup/frames/menu.inc.php:18 setup/lib/messages.inc.php:137
+msgid "Features"
+msgstr ""
+
+#: setup/frames/menu.inc.php:19 setup/lib/messages.inc.php:113
+msgid "Navigation frame"
+msgstr ""
+
+#: setup/frames/menu.inc.php:20 setup/lib/messages.inc.php:118
+msgid "Main frame"
+msgstr ""
+
+#: setup/frames/servers.inc.php:28 setup/lib/messages.inc.php:272
+msgid "Edit server"
+msgstr ""
+
+#: setup/frames/servers.inc.php:37 setup/lib/messages.inc.php:241
+msgid "Add a new server"
+msgstr ""
+
+#: setup/lib/FormDisplay.class.php:458 setup/lib/messages.inc.php:76
+msgid "Incorrect value"
+msgstr ""
+
+#: setup/lib/FormDisplay.tpl.php:182 setup/lib/messages.inc.php:328
+#, php-format
+msgid "Set value: %s"
+msgstr ""
+
+#: setup/lib/FormDisplay.tpl.php:187 setup/lib/messages.inc.php:234
+msgid "Restore default value"
+msgstr ""
+
+#: setup/lib/form_processing.lib.php:43 setup/lib/messages.inc.php:377
+msgid "Warning"
+msgstr ""
+
+#: setup/lib/messages.inc.php:16
+msgid "Allow character set conversion"
+msgstr ""
+
+#: setup/lib/messages.inc.php:17
+msgid ""
+"If enabled user can enter any MySQL server in login form for cookie auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:18
+msgid ""
+"This [a@?page=form&formset=features#tab_Security]option[/a] should be "
+"disabled as it allows attackers to bruteforce login to any MySQL server. If "
+"you feel this is necessary, use [a@?page=form&"
+"formset=features#tab_Security]trusted proxies list[/a]. However, IP-based "
+"protection may not be reliable if your IP belongs to an ISP where thousands "
+"of users, including you, are connected to."
+msgstr ""
+
+#: setup/lib/messages.inc.php:19
+msgid "Allow login to any MySQL server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:20
+msgid "Show "Drop database" link to normal users"
+msgstr ""
+
+#: setup/lib/messages.inc.php:21
+msgid "Key should contain letters, numbers [em]and[/em] special characters"
+msgstr ""
+
+#: setup/lib/messages.inc.php:22
+msgid ""
+"Secret passphrase used for encrypting cookies in [kbd]cookie[/kbd] "
+"authentication"
+msgstr ""
+
+#: setup/lib/messages.inc.php:23
+msgid "Key is too short, it should have at least 8 characters"
+msgstr ""
+
+#: setup/lib/messages.inc.php:24
+msgid ""
+"You didn't have blowfish secret set and have enabled cookie authentication, "
+"so a key was automatically generated for you. It is used to encrypt cookies; "
+"you don't need to remember it."
+msgstr ""
+
+#: setup/lib/messages.inc.php:25
+msgid "Blowfish secret"
+msgstr ""
+
+#: setup/lib/messages.inc.php:26
+msgid "Highlight selected rows"
+msgstr ""
+
+#: setup/lib/messages.inc.php:27
+msgid "Row marker"
+msgstr ""
+
+#: setup/lib/messages.inc.php:28
+msgid "Highlight row pointed by the mouse cursor"
+msgstr ""
+
+#: setup/lib/messages.inc.php:29
+msgid "Highlight pointer"
+msgstr ""
+
+#: setup/lib/messages.inc.php:30
+msgid ""
+"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
+"import and export operations"
+msgstr ""
+
+#: setup/lib/messages.inc.php:31
+msgid "Bzip2"
+msgstr ""
+
+#: setup/lib/messages.inc.php:32
+#, php-format
+msgid ""
+"[a@?page=form&formset=features#tab_Import_export]Bzip2 compression and "
+"decompression[/a] requires functions (%s) which are unavailable on this "
+"system."
+msgstr ""
+
+#: setup/lib/messages.inc.php:33
+msgid "Cannot load or save configuration"
+msgstr ""
+
+#: setup/lib/messages.inc.php:34
+msgid ""
+"Please create web server writable folder [em]config[/em] in phpMyAdmin top "
+"level directory as described in [a@../Documentation.html#setup_script]"
+"documentation[/a]. Otherwise you will be only able to download or display it."
+msgstr ""
+
+#: setup/lib/messages.inc.php:35
+msgid ""
+"Defines which type of editing controls should be used for CHAR and VARCHAR "
+"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
+"kbd] - allows newlines in columns"
+msgstr ""
+
+#: setup/lib/messages.inc.php:36
+msgid "CHAR columns editing"
+msgstr ""
+
+#: setup/lib/messages.inc.php:37
+msgid "Number of columns for CHAR/VARCHAR textareas"
+msgstr ""
+
+#: setup/lib/messages.inc.php:38
+msgid "CHAR textarea columns"
+msgstr ""
+
+#: setup/lib/messages.inc.php:39
+msgid "Number of rows for CHAR/VARCHAR textareas"
+msgstr ""
+
+#: setup/lib/messages.inc.php:40
+msgid "CHAR textarea rows"
+msgstr ""
+
+#: setup/lib/messages.inc.php:41
+msgid "Check config file permissions"
+msgstr ""
+
+#: setup/lib/messages.inc.php:43
+msgid ""
+"Compress gzip/bzip2 exports on the fly without the need for much memory; if "
+"you encounter problems with created gzip/bzip2 files disable this feature"
+msgstr ""
+
+#: setup/lib/messages.inc.php:44
+msgid "Compress on the fly"
+msgstr ""
+
+#: setup/lib/messages.inc.php:46
+msgid ""
+"Whether a warning ("Are your really sure...") should be displayed "
+"when you're about to lose data"
+msgstr ""
+
+#: setup/lib/messages.inc.php:47
+msgid "Confirm DROP queries"
+msgstr ""
+
+#: setup/lib/messages.inc.php:48
+msgid "Default character set used for conversions"
+msgstr ""
+
+#: setup/lib/messages.inc.php:49
+msgid "Default character set"
+msgstr ""
+
+#: setup/lib/messages.inc.php:52
+msgid "Tab that is displayed when entering a database"
+msgstr ""
+
+#: setup/lib/messages.inc.php:53
+msgid "Default database tab"
+msgstr ""
+
+#: setup/lib/messages.inc.php:54
+msgid "Tab that is displayed when entering a server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:55
+msgid "Default server tab"
+msgstr ""
+
+#: setup/lib/messages.inc.php:56
+msgid "Tab that is displayed when entering a table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:57
+msgid "Default table tab"
+msgstr ""
+
+#: setup/lib/messages.inc.php:58
+msgid ""
+"This value should be double checked to ensure that this directory is neither "
+"world accessible nor readable or writable by other users on your server."
+msgstr ""
+
+#: setup/lib/messages.inc.php:59
+msgid "Show database listing as a list instead of a drop down"
+msgstr ""
+
+#: setup/lib/messages.inc.php:60
+msgid "Display databases as a list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:62
+msgid "Show server listing as a list instead of a drop down"
+msgstr ""
+
+#: setup/lib/messages.inc.php:63
+msgid "Display servers as a list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:67
+msgid "Could not connect to MySQL server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:68
+msgid "Empty phpMyAdmin control user password while using pmadb"
+msgstr ""
+
+#: setup/lib/messages.inc.php:69
+msgid "Empty phpMyAdmin control user while using pmadb"
+msgstr ""
+
+#: setup/lib/messages.inc.php:70
+msgid "Empty signon session name while using signon authentication method"
+msgstr ""
+
+#: setup/lib/messages.inc.php:71
+msgid "Empty signon URL while using signon authentication method"
+msgstr ""
+
+#: setup/lib/messages.inc.php:72
+msgid "Empty username while using config authentication method"
+msgstr ""
+
+#: setup/lib/messages.inc.php:73
+msgid "Submitted form contains errors"
+msgstr ""
+
+#: setup/lib/messages.inc.php:74
+#, php-format
+msgid "Incorrect IP address: %s"
+msgstr ""
+
+#: setup/lib/messages.inc.php:75
+msgid "Not a valid port number"
+msgstr ""
+
+#: setup/lib/messages.inc.php:77
+#, php-format
+msgid "Missing data for %s"
+msgstr ""
+
+#: setup/lib/messages.inc.php:78
+msgid "Not a non-negative number"
+msgstr ""
+
+#: setup/lib/messages.inc.php:79
+msgid "Not a positive number"
+msgstr ""
+
+#: setup/lib/messages.inc.php:80
+msgid ""
+"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
+"limit)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:81
+msgid "Maximum execution time"
+msgstr ""
+
+#: setup/lib/messages.inc.php:83
+msgid "Character set of the file"
+msgstr ""
+
+#: setup/lib/messages.inc.php:85
+msgid "Database name template"
+msgstr ""
+
+#: setup/lib/messages.inc.php:86
+msgid "Server name template"
+msgstr ""
+
+#: setup/lib/messages.inc.php:87
+msgid "Table name template"
+msgstr ""
+
+#: setup/lib/messages.inc.php:89
+msgid "Save on server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:91
+msgid "Remember file name template"
+msgstr ""
+
+#: setup/lib/messages.inc.php:92
+msgid "no"
+msgstr ""
+
+#: setup/lib/messages.inc.php:93
+msgid "Force secured connection while using phpMyAdmin"
+msgstr ""
+
+#: setup/lib/messages.inc.php:94
+msgid ""
+"This [a@?page=form&formset=features#tab_Security]option[/a] should be "
+"enabled if your web server supports it"
+msgstr ""
+
+#: setup/lib/messages.inc.php:95
+msgid "Force SSL connection"
+msgstr ""
+
+#: setup/lib/messages.inc.php:96
+msgid ""
+"Sort order for items in a foreign-key dropdown box; [kbd]content[/kbd] is "
+"the referenced data, [kbd]id[/kbd] is the key value"
+msgstr ""
+
+#: setup/lib/messages.inc.php:97
+msgid "Foreign key dropdown order"
+msgstr ""
+
+#: setup/lib/messages.inc.php:98
+msgid "A dropdown will be used if fewer items are present"
+msgstr ""
+
+#: setup/lib/messages.inc.php:99
+msgid "Foreign key limit"
+msgstr ""
+
+#: setup/lib/messages.inc.php:100
+msgid "Browse mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:101
+msgid "Customize browse mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:102
+msgid "Customize edit mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:103
+msgid "Edit mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:104
+msgid "Customize default export options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:105
+msgid "Export defaults"
+msgstr ""
+
+#: setup/lib/messages.inc.php:106
+msgid "Customize default common import options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:107
+msgid "Import defaults"
+msgstr ""
+
+#: setup/lib/messages.inc.php:108
+msgid "Set import and export directories and compression options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:109
+msgid "Import / export"
+msgstr ""
+
+#: setup/lib/messages.inc.php:111
+msgid "Databases display options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:112
+msgid "Customize appearance of the navigation frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:114
+msgid "Servers display options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:116
+msgid "Tables display options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:119
+msgid "Settings that didn't fit enywhere else"
+msgstr ""
+
+#: setup/lib/messages.inc.php:120
+msgid "Other core settings"
+msgstr ""
+
+#: setup/lib/messages.inc.php:121
+msgid "Customize query window options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:123
+msgid ""
+"Please note that phpMyAdmin is just a user interface and its features do not "
+"limit MySQL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:124
+msgid "Security"
+msgstr ""
+
+#: setup/lib/messages.inc.php:125
+msgid "Basic settings"
+msgstr ""
+
+#: setup/lib/messages.inc.php:126
+msgid ""
+"Advanced server configuration, do not change these options unless you know "
+"what they are for"
+msgstr ""
+
+#: setup/lib/messages.inc.php:127
+msgid "Server configuration"
+msgstr ""
+
+#: setup/lib/messages.inc.php:128
+msgid "Enter server connection parameters"
+msgstr ""
+
+#: setup/lib/messages.inc.php:129
+msgid "Enter login options for signon authentication"
+msgstr ""
+
+#: setup/lib/messages.inc.php:130
+msgid "Signon login options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:131
+msgid ""
+"Configure phpMyAdmin database to gain access to additional features, see "
+"[a@../Documentation.html#linked-tables]linked-tables infrastructure[/a] in "
+"documentation"
+msgstr ""
+
+#: setup/lib/messages.inc.php:132 setup/lib/messages.inc.php:293
+msgid "PMA database"
+msgstr ""
+
+#: setup/lib/messages.inc.php:133
+msgid "Tracking of changes made in database. Requires configured PMA database."
+msgstr ""
+
+#: setup/lib/messages.inc.php:134
+msgid "Changes tracking"
+msgstr ""
+
+#: setup/lib/messages.inc.php:135
+msgid "Customization"
+msgstr ""
+
+#: setup/lib/messages.inc.php:136
+msgid "Customize export options"
+msgstr ""
+
+#: setup/lib/messages.inc.php:138
+msgid "Customize import defaults"
+msgstr ""
+
+#: setup/lib/messages.inc.php:139
+msgid "Customize navigation frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:140
+msgid "Customize main frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:141
+msgid "Customize links shown in SQL Query boxes"
+msgstr ""
+
+#: setup/lib/messages.inc.php:142
+msgid "SQL Query box"
+msgstr ""
+
+#: setup/lib/messages.inc.php:143
+msgid ""
+"SQL queries settings, for SQL Query box options see [a@?page=form&"
+"formset=main_frame#tab_Sql_box]Navigation frame[/a] settings"
+msgstr ""
+
+#: setup/lib/messages.inc.php:144
+msgid "SQL queries"
+msgstr ""
+
+#: setup/lib/messages.inc.php:145
+msgid "Customize startup page"
+msgstr ""
+
+#: setup/lib/messages.inc.php:146
+msgid "Startup"
+msgstr ""
+
+#: setup/lib/messages.inc.php:147
+msgid "Choose how you want tabs to work"
+msgstr ""
+
+#: setup/lib/messages.inc.php:148
+msgid "Tabs"
+msgstr ""
+
+#: setup/lib/messages.inc.php:149
+msgid ""
+"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
+"and export operations"
+msgstr ""
+
+#: setup/lib/messages.inc.php:150
+msgid "GZip"
+msgstr ""
+
+#: setup/lib/messages.inc.php:151
+#, php-format
+msgid ""
+"[a@?page=form&formset=features#tab_Import_export]GZip compression and "
+"decompression[/a] requires functions (%s) which are unavailable on this "
+"system."
+msgstr ""
+
+#: setup/lib/messages.inc.php:153
+msgid "Extra parameters for iconv"
+msgstr ""
+
+#: setup/lib/messages.inc.php:154
+msgid "Ignore errors"
+msgstr ""
+
+#: setup/lib/messages.inc.php:155
+msgid ""
+"If enabled, phpMyAdmin continues computing multiple-statement queries even "
+"if one of the queries failed"
+msgstr ""
+
+#: setup/lib/messages.inc.php:156
+msgid "Ignore multiple statement errors"
+msgstr ""
+
+#: setup/lib/messages.inc.php:157
+msgid ""
+"Allow interrupt of import in case script detects it is close to time limit. "
+"This might be good way to import large files, however it can break "
+"transactions."
+msgstr ""
+
+#: setup/lib/messages.inc.php:158
+msgid "Partial import: allow interrupt"
+msgstr ""
+
+#: setup/lib/messages.inc.php:159
+msgid ""
+"Default format; be aware that this list depends on location (database, "
+"table) and only SQL is always available"
+msgstr ""
+
+#: setup/lib/messages.inc.php:162
+msgid "Partial import: skip queries"
+msgstr ""
+
+#: setup/lib/messages.inc.php:163
+msgid "Insecure connection"
+msgstr ""
+
+#: setup/lib/messages.inc.php:165
+#, php-format
+msgid ""
+"If your server is also configured to accept HTTPS requests follow [a@%s]this "
+"link[/a] to use a secure connection."
+msgstr ""
+
+#: setup/lib/messages.inc.php:166
+msgid "How many rows can be inserted at one time"
+msgstr ""
+
+#: setup/lib/messages.inc.php:167
+msgid "Number of inserted rows"
+msgstr ""
+
+#: setup/lib/messages.inc.php:168
+msgid "Target for quick access icon"
+msgstr ""
+
+#: setup/lib/messages.inc.php:169
+msgid "Show logo in left frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:170
+msgid "Display logo"
+msgstr ""
+
+#: setup/lib/messages.inc.php:171
+msgid "Display server choice at the top of the left frame"
+msgstr ""
+
+#: setup/lib/messages.inc.php:172
+msgid "Display servers selection"
+msgstr ""
+
+#: setup/lib/messages.inc.php:173
+msgid "String that separates databases into different tree levels"
+msgstr ""
+
+#: setup/lib/messages.inc.php:174
+msgid "Database tree separator"
+msgstr ""
+
+#: setup/lib/messages.inc.php:175
+msgid ""
+"Only light version; display databases in a tree (determined by the separator "
+"defined below)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:176
+msgid "Display databases in a tree"
+msgstr ""
+
+#: setup/lib/messages.inc.php:177
+msgid "Disable this if you want to see all databases at once"
+msgstr ""
+
+#: setup/lib/messages.inc.php:178
+msgid "Use light version"
+msgstr ""
+
+#: setup/lib/messages.inc.php:179
+msgid "Maximum table tree depth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:180
+msgid "String that separates tables into different tree levels"
+msgstr ""
+
+#: setup/lib/messages.inc.php:181
+msgid "Table tree separator"
+msgstr ""
+
+#: setup/lib/messages.inc.php:182
+msgid "Logo link URL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:183
+msgid ""
+"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
+"([kbd]new[/kbd])"
+msgstr ""
+
+#: setup/lib/messages.inc.php:184
+msgid "Logo link target"
+msgstr ""
+
+#: setup/lib/messages.inc.php:185
+msgid "Highlight server under the mouse cursor"
+msgstr ""
+
+#: setup/lib/messages.inc.php:186
+msgid "Enable highlighting"
+msgstr ""
+
+#: setup/lib/messages.inc.php:188
+msgid "Use less graphically intense tabs"
+msgstr ""
+
+#: setup/lib/messages.inc.php:189
+msgid "Light tabs"
+msgstr ""
+
+#: setup/lib/messages.inc.php:191
+msgid ""
+"If TRUE, logout deletes cookies for all servers; when set to FALSE, logout "
+"only occurs for the current server. Setting this to FALSE makes it easy to "
+"forget to log out from other servers when connected to multiple servers."
+msgstr ""
+
+#: setup/lib/messages.inc.php:192
+msgid "Delete all cookies on logout"
+msgstr ""
+
+#: setup/lib/messages.inc.php:193
+msgid ""
+"Define whether the previous login should be recalled or not in cookie "
+"authentication mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:194
+msgid "Recall user name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:195
+msgid ""
+"Defines how long (in seconds) a login cookie should be stored in browser. "
+"The default of 0 means that it will be kept for the existing session only, "
+"and will be deleted as soon as you close the browser window. This is "
+"recommended for non-trusted environments."
+msgstr ""
+
+#: setup/lib/messages.inc.php:196
+msgid "Login cookie store"
+msgstr ""
+
+#: setup/lib/messages.inc.php:197
+msgid "Define how long (in seconds) a login cookie is valid"
+msgstr ""
+
+#: setup/lib/messages.inc.php:198
+msgid ""
+"[a@?page=form&formset=features#tab_Security]Login cookie validity[/a] should "
+"be set to 1800 seconds (30 minutes) at most. Values larger than 1800 may "
+"pose a security risk such as impersonation."
+msgstr ""
+
+#: setup/lib/messages.inc.php:199
+msgid "Login cookie validity"
+msgstr ""
+
+#: setup/lib/messages.inc.php:200
+msgid "Maximum number of characters used when a SQL query is displayed"
+msgstr ""
+
+#: setup/lib/messages.inc.php:201
+msgid "Maximum displayed SQL length"
+msgstr ""
+
+#: setup/lib/messages.inc.php:202
+msgid "Maximum number of databases displayed in left frame and database list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:203
+msgid "Maximum databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:204
+msgid ""
+"Number of rows displayed when browsing a result set. If the result set "
+"contains more rows, "Previous" and "Next" links will be "
+"shown."
+msgstr ""
+
+#: setup/lib/messages.inc.php:205
+msgid "Maximum number of rows to display"
+msgstr ""
+
+#: setup/lib/messages.inc.php:206
+msgid "Maximum number of tables displayed in table list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:207
+msgid "Maximum tables"
+msgstr ""
+
+#: setup/lib/messages.inc.php:208
+msgid ""
+"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
+"([kbd]0[/kbd] for no limit)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:209
+msgid "Memory limit"
+msgstr ""
+
+#: setup/lib/messages.inc.php:210 setup/lib/messages.inc.php:222
+msgid "Use only icons, only text or both"
+msgstr ""
+
+#: setup/lib/messages.inc.php:211
+msgid "Iconic navigation bar"
+msgstr ""
+
+#: setup/lib/messages.inc.php:214
+msgid "use GZip output buffering for increased speed in HTTP transfers"
+msgstr ""
+
+#: setup/lib/messages.inc.php:215
+msgid "GZip output buffering"
+msgstr ""
+
+#: setup/lib/messages.inc.php:217
+msgid ""
+"[kbd]SMART[/kbd] - i.e. descending order for columns of type TIME, DATE, "
+"DATETIME and TIMESTAMP, ascending order otherwise"
+msgstr ""
+
+#: setup/lib/messages.inc.php:218
+msgid "Default sorting order"
+msgstr ""
+
+#: setup/lib/messages.inc.php:220
+msgid "Use persistent connections to MySQL databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:221
+msgid "Persistent connections"
+msgstr ""
+
+#: setup/lib/messages.inc.php:223
+msgid "Iconic table operations"
+msgstr ""
+
+#: setup/lib/messages.inc.php:224
+msgid "Disallow BLOB and BINARY columns from editing"
+msgstr ""
+
+#: setup/lib/messages.inc.php:225
+msgid "Protect binary columns"
+msgstr ""
+
+#: setup/lib/messages.inc.php:226
+msgid ""
+"Enable if you want DB-based query history (requires pmadb). If disabled, "
+"this utilizes JS-routines to display query history (lost by window close)."
+msgstr ""
+
+#: setup/lib/messages.inc.php:227
+msgid "Permanent query history"
+msgstr ""
+
+#: setup/lib/messages.inc.php:228
+msgid "How many queries are kept in history"
+msgstr ""
+
+#: setup/lib/messages.inc.php:229
+msgid "Query history length"
+msgstr ""
+
+#: setup/lib/messages.inc.php:230
+msgid "Tab displayed when opening a new query window"
+msgstr ""
+
+#: setup/lib/messages.inc.php:231
+msgid "Default query window tab"
+msgstr ""
+
+#: setup/lib/messages.inc.php:232
+msgid "Select which functions will be used for character set conversion"
+msgstr ""
+
+#: setup/lib/messages.inc.php:233
+msgid "Recoding engine"
+msgstr ""
+
+#: setup/lib/messages.inc.php:235
+msgid "Try to revert erroneous fields to their default values"
+msgstr ""
+
+#: setup/lib/messages.inc.php:236
+msgid "Directory where exports can be saved on server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:237
+msgid "Save directory"
+msgstr ""
+
+#: setup/lib/messages.inc.php:238
+#, php-format
+msgid ""
+"You set the [kbd]config[/kbd] authentication type and included username and "
+"password for auto-login, which is not a desirable option for live hosts. "
+"Anyone who knows or guesses your phpMyAdmin URL can directly access your "
+"phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1$d#tab_Server]"
+"authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/kbd]."
+msgstr ""
+
+#: setup/lib/messages.inc.php:239
+msgid "You should use mysqli for performance reasons"
+msgstr ""
+
+#: setup/lib/messages.inc.php:240
+msgid "You allow for connecting to the server without a password."
+msgstr ""
+
+#: setup/lib/messages.inc.php:242
+msgid "Leave blank if not used"
+msgstr ""
+
+#: setup/lib/messages.inc.php:243
+msgid "Host authentication order"
+msgstr ""
+
+#: setup/lib/messages.inc.php:244
+msgid "Leave blank for defaults"
+msgstr ""
+
+#: setup/lib/messages.inc.php:245
+msgid "Host authentication rules"
+msgstr ""
+
+#: setup/lib/messages.inc.php:246
+msgid "Allow logins without a password"
+msgstr ""
+
+#: setup/lib/messages.inc.php:247
+msgid "Allow root login"
+msgstr ""
+
+#: setup/lib/messages.inc.php:248
+msgid "HTTP Basic Auth Realm name to display when doing HTTP Auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:249
+msgid "HTTP Realm"
+msgstr ""
+
+#: setup/lib/messages.inc.php:250
+msgid ""
+"The path for the config file for [a@http://swekey.com]SweKey hardware "
+"authentication[/a] (not located in your document root; suggested: /etc/"
+"swekey.conf)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:251
+msgid "SweKey config file"
+msgstr ""
+
+#: setup/lib/messages.inc.php:252
+msgid "Authentication method to use"
+msgstr ""
+
+#: setup/lib/messages.inc.php:253
+msgid "Authentication type"
+msgstr ""
+
+#: setup/lib/messages.inc.php:254
+msgid ""
+"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] "
+"support, suggested: [kbd]pma_bookmark[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:255
+msgid "Bookmark table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:256
+msgid ""
+"Leave blank for no column comments/mime types, suggested: [kbd]"
+"pma_column_info[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:257
+msgid "Column information table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:258
+msgid "Compress connection to MySQL server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:259
+msgid "Compress connection"
+msgstr ""
+
+#: setup/lib/messages.inc.php:260
+msgid "How to connect to server, keep [kbd]tcp[/kbd] if unsure"
+msgstr ""
+
+#: setup/lib/messages.inc.php:261
+msgid "Connection type"
+msgstr ""
+
+#: setup/lib/messages.inc.php:262
+msgid "Control user password"
+msgstr ""
+
+#: setup/lib/messages.inc.php:263
+msgid ""
+"A special MySQL user configured with limited permissions, more information "
+"available on [a@http://wiki.phpmyadmin.net/pma/controluser]wiki[/a]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:264
+msgid "Control user"
+msgstr ""
+
+#: setup/lib/messages.inc.php:265
+msgid "Count tables when showing database list"
+msgstr ""
+
+#: setup/lib/messages.inc.php:266
+msgid "Count tables"
+msgstr ""
+
+#: setup/lib/messages.inc.php:267
+msgid ""
+"Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/"
+"kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:268
+msgid "Designer table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:269
+msgid ""
+"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
+"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:270
+msgid "Disable use of INFORMATION_SCHEMA"
+msgstr ""
+
+#: setup/lib/messages.inc.php:271
+#, php-format
+msgid ""
+"If you feel this is necessary, use additional protection settings - [a@?"
+"page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication"
+"[/a] settings and [a@?page=form&formset=features#tab_Security]trusted "
+"proxies list[/a]. However, IP-based protection may not be reliable if your "
+"IP belongs to an ISP where thousands of users, including you, are connected "
+"to."
+msgstr ""
+
+#: setup/lib/messages.inc.php:273
+msgid "What PHP extension to use; you should use mysqli if supported"
+msgstr ""
+
+#: setup/lib/messages.inc.php:274
+msgid "PHP extension to use"
+msgstr ""
+
+#: setup/lib/messages.inc.php:275
+msgid "Hide databases matching regular expression (PCRE)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:276
+msgid "Hide databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:277
+msgid ""
+"Leave blank for no SQL query history support, suggested: [kbd]pma_history[/"
+"kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:278
+msgid "SQL query history table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:279
+msgid ""
+"Leave blank for no SQL query tracking support, suggested: [kbd]pma_tracking[/"
+"kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:280
+msgid "SQL query tracking table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:281
+msgid "Hostname where MySQL server is running"
+msgstr ""
+
+#: setup/lib/messages.inc.php:282
+msgid "Server hostname"
+msgstr ""
+
+#: setup/lib/messages.inc.php:283
+msgid "Logout URL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:284
+msgid "Try to connect without password"
+msgstr ""
+
+#: setup/lib/messages.inc.php:285
+msgid "Connect without password"
+msgstr ""
+
+#: setup/lib/messages.inc.php:286
+msgid ""
+"You can use MySQL wildcard characters (% and _), escape them if you want to "
+"use their literal instances, i.e. use 'my\\_db' and not 'my_db'"
+msgstr ""
+
+#: setup/lib/messages.inc.php:287
+msgid "Show only listed databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:288 setup/lib/messages.inc.php:322
+msgid "Leave empty if not using config auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:289
+msgid "Password for config auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:290
+msgid ""
+"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:291
+msgid "PDF schema: pages table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:292
+msgid ""
+"Database used for relations, bookmarks, and PDF features. See [a@http://wiki."
+"phpmyadmin.net/pma/pmadb]pmadb[/a] for complete information. Leave blank for "
+"no support. Suggested: [kbd]phpmyadmin[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:294
+msgid "Port on which MySQL server is listening, leave empty for default"
+msgstr ""
+
+#: setup/lib/messages.inc.php:295
+msgid "Server port"
+msgstr ""
+
+#: setup/lib/messages.inc.php:296
+msgid ""
+"Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-links"
+"[/a] support, suggested: [kbd]pma_relation[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:297
+msgid "Relation table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:298
+msgid "SQL command to fetch available databases"
+msgstr ""
+
+#: setup/lib/messages.inc.php:299
+msgid "SHOW DATABASES command"
+msgstr ""
+
+#: setup/lib/messages.inc.php:300
+msgid ""
+"See [a@http://wiki.phpmyadmin.net/pma/auth_types#signon]authentication types"
+"[/a] for an example"
+msgstr ""
+
+#: setup/lib/messages.inc.php:301
+msgid "Signon session name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:302
+msgid "Signon URL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:303
+msgid ""
+"Whether the tracking mechanism creates versions for tables and views "
+"automatically."
+msgstr ""
+
+#: setup/lib/messages.inc.php:304
+msgid "Automatically create versions"
+msgstr ""
+
+#: setup/lib/messages.inc.php:305
+msgid "Defines the list of statements the auto-creation uses for new versions."
+msgstr ""
+
+#: setup/lib/messages.inc.php:306
+msgid "Statements to track"
+msgstr ""
+
+#: setup/lib/messages.inc.php:307
+msgid ""
+"Whether a DROP VIEW IF EXISTS statement will be added as first line to the "
+"log when creating a view."
+msgstr ""
+
+#: setup/lib/messages.inc.php:308
+msgid "Add DROP VIEW"
+msgstr ""
+
+#: setup/lib/messages.inc.php:309
+msgid ""
+"Whether a DROP TABLE IF EXISTS statement will be added as first line to the "
+"log when creating a table."
+msgstr ""
+
+#: setup/lib/messages.inc.php:310
+msgid "Add DROP TABLE"
+msgstr ""
+
+#: setup/lib/messages.inc.php:311
+msgid ""
+"Whether a DROP DATABASE IF EXISTS statement will be added as first line to "
+"the log when creating a database."
+msgstr ""
+
+#: setup/lib/messages.inc.php:312
+msgid "Add DROP DATABASE"
+msgstr ""
+
+#: setup/lib/messages.inc.php:313
+msgid "You should use SSL connections if your web server supports it"
+msgstr ""
+
+#: setup/lib/messages.inc.php:314
+msgid "Socket on which MySQL server is listening, leave empty for default"
+msgstr ""
+
+#: setup/lib/messages.inc.php:315
+msgid "Server socket"
+msgstr ""
+
+#: setup/lib/messages.inc.php:316
+msgid "Enable SSL for connection to MySQL server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:317
+msgid "Use SSL"
+msgstr ""
+
+#: setup/lib/messages.inc.php:318
+msgid ""
+"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:319
+msgid "PDF schema: table coordinates"
+msgstr ""
+
+#: setup/lib/messages.inc.php:320
+msgid ""
+"Table to describe the display columns, leave blank for no support; "
+"suggested: [kbd]pma_table_info[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:321
+msgid "Display columns table"
+msgstr ""
+
+#: setup/lib/messages.inc.php:323
+msgid "User for config auth"
+msgstr ""
+
+#: setup/lib/messages.inc.php:324
+msgid ""
+"Disable if you know that your pma_* tables are up to date. This prevents "
+"compatibility checks and thereby increases performance"
+msgstr ""
+
+#: setup/lib/messages.inc.php:325
+msgid "Verbose check"
+msgstr ""
+
+#: setup/lib/messages.inc.php:326
+msgid ""
+"A user-friendly description of this server. Leave blank to display the "
+"hostname instead."
+msgstr ""
+
+#: setup/lib/messages.inc.php:327
+msgid "Verbose name of this server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:329
+msgid "Whether a user should be displayed a "show all (rows)" button"
+msgstr ""
+
+#: setup/lib/messages.inc.php:330
+msgid "Allow to display all the rows"
+msgstr ""
+
+#: setup/lib/messages.inc.php:331
+msgid ""
+"Please note that enabling this has no effect with [kbd]config[/kbd] "
+"authentication mode because the password is hard coded in the configuration "
+"file; this does not limit the ability to execute the same command directly"
+msgstr ""
+
+#: setup/lib/messages.inc.php:332
+msgid "Show password change form"
+msgstr ""
+
+#: setup/lib/messages.inc.php:333
+msgid "Show create database form"
+msgstr ""
+
+#: setup/lib/messages.inc.php:334
+msgid "Show form"
+msgstr ""
+
+#: setup/lib/messages.inc.php:335
+msgid "Display the function fields in edit/insert mode"
+msgstr ""
+
+#: setup/lib/messages.inc.php:336
+msgid "Show function fields"
+msgstr ""
+
+#: setup/lib/messages.inc.php:338
+msgid ""
+"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
+"output"
+msgstr ""
+
+#: setup/lib/messages.inc.php:339
+msgid "Show phpinfo() link"
+msgstr ""
+
+#: setup/lib/messages.inc.php:340
+msgid "Show detailed MySQL server information"
+msgstr ""
+
+#: setup/lib/messages.inc.php:341
+msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
+msgstr ""
+
+#: setup/lib/messages.inc.php:342
+msgid "Show SQL queries"
+msgstr ""
+
+#: setup/lib/messages.inc.php:343
+msgid "Allow to display database and table statistics (eg. space usage)"
+msgstr ""
+
+#: setup/lib/messages.inc.php:344
+msgid "Show statistics"
+msgstr ""
+
+#: setup/lib/messages.inc.php:345
+msgid ""
+"If tooltips are enabled and a database comment is set, this will flip the "
+"comment and the real name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:346
+msgid "Display database comment instead of its name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:347
+msgid ""
+"When setting this to [kbd]nested[/kbd], the alias of the table name is only "
+"used to split/nest the tables according to the $cfg"
+"['LeftFrameTableSeparator'] directive, so only the folder is called like the "
+"alias, the table name itself stays unchanged"
+msgstr ""
+
+#: setup/lib/messages.inc.php:348
+msgid "Display table comment instead of its name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:349
+msgid "Display table comments in tooltips"
+msgstr ""
+
+#: setup/lib/messages.inc.php:350
+msgid ""
+"Mark used tables and make it possible to show databases with locked tables"
+msgstr ""
+
+#: setup/lib/messages.inc.php:351
+msgid "Skip locked tables"
+msgstr ""
+
+#: setup/lib/messages.inc.php:357
+msgid ""
+"Suggest a database name on the "Create Database" form (if "
+"possible) or keep the text field empty"
+msgstr ""
+
+#: setup/lib/messages.inc.php:358
+msgid "Suggest new database name"
+msgstr ""
+
+#: setup/lib/messages.inc.php:359
+msgid "yes"
+msgstr ""
+
+#: setup/lib/messages.inc.php:360
+msgid ""
+"Input proxies as [kbd]IP: trusted HTTP header[/kbd]. The following example "
+"specifies that phpMyAdmin should trust a HTTP_X_FORWARDED_FOR (X-Forwarded-"
+"For) header coming from the proxy 1.2.3.4:[br][kbd]1.2.3.4: "
+"HTTP_X_FORWARDED_FOR[/kbd]"
+msgstr ""
+
+#: setup/lib/messages.inc.php:361
+msgid "List of trusted proxies for IP allow/deny"
+msgstr ""
+
+#: setup/lib/messages.inc.php:362
+msgid "Directory on server where you can upload files for import"
+msgstr ""
+
+#: setup/lib/messages.inc.php:363
+msgid "Upload directory"
+msgstr ""
+
+#: setup/lib/messages.inc.php:364
+msgid "Allow for searching inside the entire database"
+msgstr ""
+
+#: setup/lib/messages.inc.php:365
+msgid "Use database search"
+msgstr ""
+
+#: setup/lib/messages.inc.php:366
+msgid ""
+"Show affected rows of each statement on multiple-statement queries. See "
+"libraries/import.lib.php for defaults on how many queries a statement may "
+"contain."
+msgstr ""
+
+#: setup/lib/messages.inc.php:367
+msgid "Verbose multiple statements"
+msgstr ""
+
+#: setup/lib/messages.inc.php:368
+msgid ""
+"Reading of version failed. Maybe you're offline or the upgrade server does "
+"not respond."
+msgstr ""
+
+#: setup/lib/messages.inc.php:369
+msgid "Got invalid version string from server"
+msgstr ""
+
+#: setup/lib/messages.inc.php:371
+#, php-format
+msgid ""
+"A newer version of phpMyAdmin is available and you should consider "
+"upgrading. The newest version is %s, released on %s."
+msgstr ""
+
+#: setup/lib/messages.inc.php:372
+#, php-format
+msgid ""
+"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
+"version is %s, released on %s."
+msgstr ""
+
+#: setup/lib/messages.inc.php:373
+msgid "No newer stable version is available"
+msgstr ""
+
+#: setup/lib/messages.inc.php:374
+msgid "Unparsable version string"
+msgstr ""
+
+#: setup/lib/messages.inc.php:375
+msgid "Version check"
+msgstr ""
+
+#: setup/lib/messages.inc.php:376
+msgid ""
+"Neither URL wrapper nor CURL is available. Version check is not possible."
+msgstr ""
+
+#: setup/lib/messages.inc.php:378
+msgid ""
+"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
+"for import and export operations"
+msgstr ""
+
+#: setup/lib/messages.inc.php:379
+#, php-format
+msgid ""
+"[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] "
+"requires functions (%s) which are unavailable on this system."
+msgstr ""
+
+#: setup/lib/messages.inc.php:380
+#, php-format
+msgid ""
+"[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] "
+"requires functions (%s) which are unavailable on this system."
+msgstr ""
+
+#: setup/lib/messages.inc.php:381
+msgid "ZIP"
+msgstr ""
+
+#: sql.php:496 tbl_replace.php:386
+#, php-format
+msgid "Inserted row id: %1$d"
+msgstr ""
+
+#: sql.php:513
+msgid "Showing as PHP code"
+msgstr ""
+
+#: sql.php:516 tbl_replace.php:360
+msgid "Showing SQL query"
+msgstr ""
+
+#: sql.php:639
+#, php-format
+msgid "Problems with indexes of table `%s`"
+msgstr ""
+
+#: sql.php:671
+msgid "Label"
+msgstr ""
+
+#: tbl_addfield.php:189 tbl_alter.php:103 tbl_indexes.php:98
+#, php-format
+msgid "Table %1$s has been altered successfully"
+msgstr ""
+
+#: tbl_change.php:251 tbl_select.php:27 tbl_select.php:28 tbl_select.php:31
+#: tbl_select.php:34
+msgid "Browse foreign values"
+msgstr ""
+
+#: tbl_change.php:281 tbl_change.php:319
+msgid "Function"
+msgstr ""
+
+#: tbl_change.php:301 tbl_indexes.php:200 tbl_indexes.php:225
+msgid "Ignore"
+msgstr ""
+
+#: tbl_change.php:726
+msgid " Because of its length, this column might not be editable "
+msgstr ""
+
+#: tbl_change.php:885
+msgid "Remove BLOB Repository Reference"
+msgstr ""
+
+#: tbl_change.php:891
+msgid "Binary - do not edit"
+msgstr ""
+
+#: tbl_change.php:984
+msgid "Upload to BLOB repository"
+msgstr ""
+
+#: tbl_change.php:1129
+msgid "Insert as new row"
+msgstr ""
+
+#: tbl_change.php:1130
+msgid "Insert as new row and ignore errors"
+msgstr ""
+
+#: tbl_change.php:1131
+msgid "Show insert query"
+msgstr ""
+
+#: tbl_change.php:1146
+msgid "Go back to previous page"
+msgstr ""
+
+#: tbl_change.php:1147
+msgid "Insert another new row"
+msgstr ""
+
+#: tbl_change.php:1151
+msgid "Go back to this page"
+msgstr ""
+
+#: tbl_change.php:1159
+msgid "Edit next row"
+msgstr ""
+
+#: tbl_change.php:1170
+msgid ""
+"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
+msgstr ""
+
+#: tbl_change.php:1208
+#, php-format
+msgid "Restart insertion with %s rows"
+msgstr ""
+
+#: tbl_create.php:62
+#, php-format
+msgid "Table %s already exists!"
+msgstr ""
+
+#: tbl_create.php:249
+#, php-format
+msgid "Table %1$s has been created."
+msgstr ""
+
+#: tbl_export.php:23
+msgid "View dump (schema) of table"
+msgstr ""
+
+#: tbl_indexes.php:67
+msgid "The name of the primary key must be \"PRIMARY\"!"
+msgstr ""
+
+#: tbl_indexes.php:75
+msgid "Can't rename index to PRIMARY!"
+msgstr ""
+
+#: tbl_indexes.php:91
+msgid "No index parts defined!"
+msgstr ""
+
+#: tbl_indexes.php:160
+msgid "Create a new index"
+msgstr ""
+
+#: tbl_indexes.php:162
+msgid "Modify an index"
+msgstr ""
+
+#: tbl_indexes.php:168
+msgid "Index name:"
+msgstr ""
+
+#: tbl_indexes.php:174
+msgid "Index type:"
+msgstr ""
+
+#: tbl_indexes.php:184
+msgid ""
+"(\"PRIMARY\" must be the name of and only of a primary key!)"
+msgstr ""
+
+#: tbl_indexes.php:251
+#, php-format
+msgid "Add to index %s column(s)"
+msgstr ""
+
+#: tbl_indexes.php:256 tbl_structure.php:589 tbl_structure.php:600
+msgid "Column count has to be larger than zero."
+msgstr ""
+
+#: tbl_move_copy.php:46
+msgid "Can't move table to same one!"
+msgstr ""
+
+#: tbl_move_copy.php:48
+msgid "Can't copy table to same one!"
+msgstr ""
+
+#: tbl_move_copy.php:56
+#, php-format
+msgid "Table %s has been moved to %s."
+msgstr ""
+
+#: tbl_move_copy.php:58
+#, php-format
+msgid "Table %s has been copied to %s."
+msgstr ""
+
+#: tbl_move_copy.php:82
+msgid "The table name is empty!"
+msgstr ""
+
+#: tbl_operations.php:249
+msgid "Alter table order by"
+msgstr ""
+
+#: tbl_operations.php:258
+msgid "(singly)"
+msgstr ""
+
+#: tbl_operations.php:278
+msgid "Move table to (database.table):"
+msgstr ""
+
+#: tbl_operations.php:336
+msgid "Table options"
+msgstr ""
+
+#: tbl_operations.php:340
+msgid "Rename table to"
+msgstr ""
+
+#: tbl_operations.php:511
+msgid "Copy table to (database.table):"
+msgstr ""
+
+#: tbl_operations.php:558
+msgid "Switch to copied table"
+msgstr ""
+
+#: tbl_operations.php:570
+msgid "Table maintenance"
+msgstr ""
+
+#: tbl_operations.php:591
+msgid "Defragment table"
+msgstr ""
+
+#: tbl_operations.php:630
+#, php-format
+msgid "Table %s has been flushed"
+msgstr ""
+
+#: tbl_operations.php:636
+msgid "Flush the table (FLUSH)"
+msgstr ""
+
+#: tbl_operations.php:651
+msgid "Partition maintenance"
+msgstr ""
+
+#: tbl_operations.php:659
+#, php-format
+msgid "Partition %s"
+msgstr ""
+
+#: tbl_operations.php:662
+msgid "Analyze"
+msgstr ""
+
+#: tbl_operations.php:663
+msgid "Check"
+msgstr ""
+
+#: tbl_operations.php:664
+msgid "Optimize"
+msgstr ""
+
+#: tbl_operations.php:665
+msgid "Rebuild"
+msgstr ""
+
+#: tbl_operations.php:666
+msgid "Repair"
+msgstr ""
+
+#: tbl_operations.php:678
+msgid "Remove partitioning"
+msgstr ""
+
+#: tbl_operations.php:704
+msgid "Check referential integrity:"
+msgstr ""
+
+#: tbl_printview.php:74
+msgid "Show tables"
+msgstr ""
+
+#: tbl_printview.php:309 tbl_structure.php:656
+msgid "Space usage"
+msgstr ""
+
+#: tbl_printview.php:313 tbl_structure.php:660
+msgid "Usage"
+msgstr ""
+
+#: tbl_printview.php:340 tbl_structure.php:687
+msgid "Effective"
+msgstr ""
+
+#: tbl_printview.php:365 tbl_structure.php:725
+msgid "Row Statistics"
+msgstr ""
+
+#: tbl_printview.php:368 tbl_structure.php:728
+msgid "Statements"
+msgstr ""
+
+#: tbl_printview.php:379 tbl_structure.php:740
+msgid "static"
+msgstr ""
+
+#: tbl_printview.php:381 tbl_structure.php:742
+msgid "dynamic"
+msgstr ""
+
+#: tbl_printview.php:403 tbl_structure.php:785
+msgid "Row length"
+msgstr ""
+
+#: tbl_printview.php:413 tbl_structure.php:793
+msgid " Row size "
+msgstr ""
+
+#: tbl_relation.php:279
+#, php-format
+msgid "Error creating foreign key on %1$s (check data types)"
+msgstr ""
+
+#: tbl_relation.php:405
+msgid "Internal relation"
+msgstr ""
+
+#: tbl_relation.php:407
+msgid ""
+"An internal relation is not necessary when a corresponding FOREIGN KEY "
+"relation exists."
+msgstr ""
+
+#: tbl_relation.php:413
+msgid "Foreign key constraint"
+msgstr ""
+
+#: tbl_row_action.php:29
+msgid "No rows selected"
+msgstr ""
+
+#: tbl_select.php:131
+msgid "Do a \"query by example\" (wildcard: \"%\")"
+msgstr ""
+
+#: tbl_select.php:137
+msgid "Operator"
+msgstr ""
+
+#: tbl_select.php:268
+msgid "Select columns (at least one):"
+msgstr ""
+
+#: tbl_select.php:286
+msgid "Add search conditions (body of the \"where\" clause):"
+msgstr ""
+
+#: tbl_select.php:293
+msgid "Number of rows per page"
+msgstr ""
+
+#: tbl_select.php:299
+msgid "Display order:"
+msgstr ""
+
+#: tbl_structure.php:161
+msgid "Browse distinct values"
+msgstr ""
+
+#: tbl_structure.php:361
+msgctxt "None for default"
+msgid "None"
+msgstr ""
+
+#: tbl_structure.php:374
+#, php-format
+msgid "Column %s has been dropped"
+msgstr ""
+
+#: tbl_structure.php:385
+#, php-format
+msgid "A primary key has been added on %s"
+msgstr ""
+
+#: tbl_structure.php:400 tbl_structure.php:414 tbl_structure.php:428
+#, php-format
+msgid "An index has been added on %s"
+msgstr ""
+
+#: tbl_structure.php:506 tbl_structure.php:508
+msgid "Relation view"
+msgstr ""
+
+#: tbl_structure.php:515 tbl_structure.php:517
+msgid "Propose table structure"
+msgstr ""
+
+#: tbl_structure.php:540
+msgid "Add column"
+msgstr ""
+
+#: tbl_structure.php:554
+msgid "At End of Table"
+msgstr ""
+
+#: tbl_structure.php:555
+msgid "At Beginning of Table"
+msgstr ""
+
+#: tbl_structure.php:556
+#, php-format
+msgid "After %s"
+msgstr ""
+
+#: tbl_structure.php:594
+#, php-format
+msgid "Create an index on %s columns"
+msgstr ""
+
+#: tbl_structure.php:756
+msgid "partitioned"
+msgstr ""
+
+#: tbl_tracking.php:114
+#, php-format
+msgid "Tracking report for table `%s`"
+msgstr ""
+
+#: tbl_tracking.php:187
+#, php-format
+msgid "Version %s is created, tracking for %s.%s is activated."
+msgstr ""
+
+#: tbl_tracking.php:195
+#, php-format
+msgid "Tracking for %s.%s , version %s is deactivated."
+msgstr ""
+
+#: tbl_tracking.php:203
+#, php-format
+msgid "Tracking for %s.%s , version %s is activated."
+msgstr ""
+
+#: tbl_tracking.php:213
+msgid "SQL statements executed."
+msgstr ""
+
+#: tbl_tracking.php:220
+msgid ""
+"You can execute the dump by creating and using a temporary database. Please "
+"ensure that you have the privileges to do so."
+msgstr ""
+
+#: tbl_tracking.php:221
+msgid "Comment out these two lines if you do not need them."
+msgstr ""
+
+#: tbl_tracking.php:230
+msgid "SQL statements exported. Please copy the dump or execute it."
+msgstr ""
+
+#: tbl_tracking.php:251 tbl_tracking.php:379
+msgid "Close"
+msgstr ""
+
+#: tbl_tracking.php:262
+#, php-format
+msgid "Version %s snapshot (SQL code)"
+msgstr ""
+
+#: tbl_tracking.php:381
+msgid "Tracking statements"
+msgstr ""
+
+#: tbl_tracking.php:397 tbl_tracking.php:504
+#, php-format
+msgid "Show %s with dates from %s to %s by user %s %s"
+msgstr ""
+
+#: tbl_tracking.php:410 tbl_tracking.php:461
+msgid "Date"
+msgstr ""
+
+#: tbl_tracking.php:411 tbl_tracking.php:462
+msgid "Username"
+msgstr ""
+
+#: tbl_tracking.php:412
+msgid "Data definition statement"
+msgstr ""
+
+#: tbl_tracking.php:463
+msgid "Data manipulation statement"
+msgstr ""
+
+#: tbl_tracking.php:507
+msgid "SQL dump (file download)"
+msgstr ""
+
+#: tbl_tracking.php:508
+msgid "SQL dump"
+msgstr ""
+
+#: tbl_tracking.php:509
+msgid "This option will replace your table and contained data."
+msgstr ""
+
+#: tbl_tracking.php:509
+msgid "SQL execution"
+msgstr ""
+
+#: tbl_tracking.php:521
+#, php-format
+msgid "Export as %s"
+msgstr ""
+
+#: tbl_tracking.php:561
+msgid "Show versions"
+msgstr ""
+
+#: tbl_tracking.php:593
+msgid "Version"
+msgstr ""
+
+#: tbl_tracking.php:640
+#, php-format
+msgid "Deactivate tracking for %s.%s"
+msgstr ""
+
+#: tbl_tracking.php:642
+msgid "Deactivate now"
+msgstr ""
+
+#: tbl_tracking.php:653
+#, php-format
+msgid "Activate tracking for %s.%s"
+msgstr ""
+
+#: tbl_tracking.php:655
+msgid "Activate now"
+msgstr ""
+
+#: tbl_tracking.php:668
+#, php-format
+msgid "Create version %s of %s.%s"
+msgstr ""
+
+#: tbl_tracking.php:672
+msgid "Track these data definition statements:"
+msgstr ""
+
+#: tbl_tracking.php:680
+msgid "Track these data manipulation statements:"
+msgstr ""
+
+#: tbl_tracking.php:688
+msgid "Create version"
+msgstr ""
+
+#: themes.php:32
+#, php-format
+msgid ""
+"No themes support; please check your configuration and/or your themes in "
+"directory %s."
+msgstr ""
+
+#: themes.php:42
+msgid "Get more themes!"
+msgstr ""
+
+#: transformation_overview.php:25
+msgid "Available MIME types"
+msgstr ""
+
+#: transformation_overview.php:38
+msgid ""
+"MIME types printed in italics do not have a separate transformation function"
+msgstr ""
+
+#: transformation_overview.php:43
+msgid "Available transformations"
+msgstr ""
+
+#: transformation_overview.php:48
+msgctxt "for MIME transformation"
+msgid "Description"
+msgstr ""
+
+#: user_password.php:54
+msgid "You don't have sufficient privileges to be here right now!"
+msgstr ""
+
+#: user_password.php:112
+msgid "The profile has been updated."
+msgstr ""
+
+#: view_create.php:142
+msgid "VIEW name"
+msgstr ""
+
+#: view_operations.php:93
+msgid "Rename view to"
+msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 53245d88a..b0ec810b4 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -60,8 +60,8 @@ msgstr "Шукати"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -228,7 +228,7 @@ msgstr ""
msgid "Command"
msgstr "Команда"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr ""
@@ -571,7 +571,7 @@ msgstr "Вставити"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -621,8 +621,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -812,8 +812,8 @@ msgstr "Dump збережено у файл %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1361,7 +1361,7 @@ msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1502,8 +1502,8 @@ msgstr "Ласкаво просимо до %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2066,8 +2066,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2265,8 +2265,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2994,41 +2994,41 @@ msgstr "Згенеровано"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL повернула пустий результат (тобто нуль рядків)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3771,8 +3771,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %"
-"sописи перетворень%s"
+"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
+"%sописи перетворень%s"
#: libraries/tbl_properties.inc.php:145
msgid "Transformation options"
@@ -3820,7 +3820,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Зберегти"
@@ -4004,7 +4004,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Перевстановити"
@@ -4774,8 +4774,8 @@ msgstr "Усунути бази даних, які мають такі ж наз
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав "
"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються "
@@ -7510,40 +7510,40 @@ msgstr " Двійкові дані - не редагуються "
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Вставити як новий рядок"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Повернутись"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Вставити новий запис"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index f7ef5857a..eb35bd35c 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,14 +6,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-05-14 12:35+0200\n"
"Last-Translator: \n"
"Language-Team: Urdu \n"
+"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -67,8 +67,8 @@ msgstr "تلاش"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -235,7 +235,7 @@ msgstr "ڈیٹا بیس کا نام بدلیں"
msgid "Command"
msgstr "کمانڈ"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "اور پھر"
@@ -572,7 +572,7 @@ msgstr "داخل کریں"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -622,11 +622,11 @@ msgstr "ٹریکنگ ایکٹو نہیں ہے"
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
#: libraries/tbl_info.inc.php:66 tbl_structure.php:185 test/theme.php:74
@@ -814,11 +814,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1324,7 +1324,7 @@ msgstr ""
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1465,8 +1465,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:116
@@ -2007,8 +2007,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2204,8 +2204,8 @@ msgstr ""
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2921,41 +2921,41 @@ msgstr ""
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr ""
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr ""
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3707,7 +3707,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr ""
@@ -3843,7 +3843,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr ""
@@ -4585,8 +4585,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1684
@@ -7297,40 +7297,40 @@ msgstr ""
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr ""
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr ""
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr ""
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr ""
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr ""
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index 07c019fee..7257fdcb4 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -62,8 +62,8 @@ msgstr "Қидириш"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "Маълумотлар базаси номини қуйидагига ў
msgid "Command"
msgstr "Буйруқ"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "ва сўнг"
@@ -573,7 +573,7 @@ msgstr "Қўйиш"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -623,8 +623,8 @@ msgstr "Кузатиш фаол эмас."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
"учун %sдокументацияга%s қаранг."
@@ -816,11 +816,11 @@ msgstr "Дамп \"%s\" файлида сақланди."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
-"sдокументацияда%s келтирилган."
+"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
+"%sдокументацияда%s келтирилган."
#: import.php:279 import.php:332 libraries/File.class.php:849
#: libraries/File.class.php:961
@@ -1393,7 +1393,7 @@ msgstr "Изоҳ"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1537,8 +1537,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш "
"сценарийсидан%2$s фойдаланишингиз мумкин."
@@ -2126,12 +2126,12 @@ msgstr "жадвал номи"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги "
-"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %"
-"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
+"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: "
+"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
#: libraries/display_export.lib.php:202
msgid "remember template"
@@ -2341,8 +2341,8 @@ msgstr "Индекс бўйича сортировка қилиш"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3119,43 +3119,43 @@ msgstr "Тузилган"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL бўш натижа берди (яъни нольта сатр)."
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
"Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни "
"бажаришингиз мумкин:"
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг"
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Ушбу базага ўтиш"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "танловлар"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Ушбу жадвалга ўтиш"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "тузилиш"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Ушбу кўринишга ўтиш"
@@ -3966,7 +3966,7 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Сақлаш"
@@ -4186,7 +4186,7 @@ msgid "Custom color"
msgstr "Рангни танлаш"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Тозалаш"
@@ -5001,8 +5001,8 @@ msgstr "Фойдаланувчилар номлари билан аталган
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни "
"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги "
@@ -5756,8 +5756,8 @@ msgstr "Очиқ файллар сони."
#: server_status.php:115
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()"
-"\" функцияси ёрдамида очилган файлга айтилади."
+"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen"
+"()\" функцияси ёрдамида очилган файлга айтилади."
#: server_status.php:116
msgid "The number of tables that are open."
@@ -7638,8 +7638,8 @@ msgstr "\"config\" аутентификация усули пароли"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
-"\"pma_pdf_pages\"[/kbd]"
+"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
+"[kbd]\"pma_pdf_pages\"[/kbd]"
#: setup/lib/messages.inc.php:291
msgid "PDF schema: pages table"
@@ -7779,8 +7779,8 @@ msgstr "SSL уланишдан фойдаланиш"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
-"\"pma_table_coords\"[/kbd]"
+"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
+"[kbd]\"pma_table_coords\"[/kbd]"
#: setup/lib/messages.inc.php:319
msgid "PDF schema: table coordinates"
@@ -8151,41 +8151,41 @@ msgstr "Иккилик маълумот - таҳрирлаш мумкин эма
msgid "Upload to BLOB repository"
msgstr "BLOB омборига юклаш"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Ёзув киритиш"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Янги қатор сифатида қўшиш ва хатоликларга эътибор бермаслик"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Киритилган сўровни кўрсатиш"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Олдинги саҳифага ўтиш"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Янги ёзув киритиш"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Ушбу саҳифага қайтиш"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Кейинги қаторни таҳрирлаш"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
"Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Қўйилаётган қаторлар сони: \"%s\""
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 7d4711775..2fc8f15c6 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -63,8 +63,8 @@ msgstr "Qidirish"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -231,7 +231,7 @@ msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
msgid "Command"
msgstr "Buyruq"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "va so‘ng"
@@ -575,7 +575,7 @@ msgstr "Qo‘yish"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -625,8 +625,8 @@ msgstr "Kuzatish faol emas."
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
@@ -818,8 +818,8 @@ msgstr "Damp \"%s\" faylida saqlandi."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
@@ -1398,7 +1398,7 @@ msgstr "Izoh"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1542,8 +1542,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish "
"ssenariysidan%2$s foydalanishingiz mumkin."
@@ -1981,8 +1981,8 @@ msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
-"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
-"\"FAQ 3.11\"[/a]ga qarang"
+"Taxminiy bo‘lishi mumkin. [a@./Documentation."
+"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
#: libraries/db_structure.lib.php:69 server_databases.php:142
#: tbl_printview.php:335 tbl_structure.php:682
@@ -2133,8 +2133,8 @@ msgstr "jadval nomi"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun "
"hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar "
@@ -2351,8 +2351,8 @@ msgstr "Indeks bo‘yicha sortirovka qilish"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3133,43 +3133,43 @@ msgstr "Tuzilgan"
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:1080
+#: libraries/import.lib.php:1095
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:1081
+#: libraries/import.lib.php:1096
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:1082
+#: libraries/import.lib.php:1097
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:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "Ushbu bazaga o‘tish"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "tanlovlar"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "Ushbu jadvalga o‘tish"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "tuzilish"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "Ushbu ko‘rinishga o‘tish"
@@ -3985,7 +3985,7 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "Saqlash"
@@ -4208,7 +4208,7 @@ msgid "Custom color"
msgstr "Rangni tanlash"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "Tozalash"
@@ -5032,8 +5032,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni "
"to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi "
@@ -7423,9 +7423,9 @@ msgstr ""
"real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog "
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
-"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
-"kbd] deb belgilash tavsiya etiladi."
+"oshirishi mumkin. Server [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
+"[/kbd] deb belgilash tavsiya etiladi."
#: setup/lib/messages.inc.php:239
msgid "You should use mysqli for performance reasons"
@@ -7573,9 +7573,9 @@ msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]"
-"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
-"larga qarang"
+"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
+"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
+"com/19588]\"MySQL Bugs\"[/a]larga qarang"
#: setup/lib/messages.inc.php:270
msgid "Disable use of INFORMATION_SCHEMA"
@@ -7694,8 +7694,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]"
-"\"pma_pdf_pages\"[/kbd]"
+"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
+"[kbd]\"pma_pdf_pages\"[/kbd]"
#: setup/lib/messages.inc.php:291
msgid "PDF schema: pages table"
@@ -7709,8 +7709,8 @@ msgid ""
msgstr ""
"Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
-"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]"
-"\"phpmyadmin\"[/kbd]"
+"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
+"[kbd]\"phpmyadmin\"[/kbd]"
#: setup/lib/messages.inc.php:294
msgid "Port on which MySQL server is listening, leave empty for default"
@@ -7835,8 +7835,8 @@ msgstr "SSL ulanishdan foydalanish"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]"
-"\"pma_table_coords\"[/kbd]"
+"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
+"[kbd]\"pma_table_coords\"[/kbd]"
#: setup/lib/messages.inc.php:319
msgid "PDF schema: table coordinates"
@@ -8213,42 +8213,42 @@ msgstr "Ikkilik ma`lumot - tahrirlash mumkin emas"
msgid "Upload to BLOB repository"
msgstr "BLOB omboriga yuklash"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "Yozuv kiritish"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "Yangi qator sifatida qo‘shish va xatoliklarga e’tibor bеrmaslik"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "Kiritilgan so‘rovni ko‘rsatish"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "Oldingi sahifaga o‘tish"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "Yangi yozuv kiritish"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "Ushbu sahifaga qaytish"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "Keyingi qatorni tahrirlash"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
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"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "Qo‘yilayotgan qatorlar soni: \"%s\""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index c6236ee9b..e60a1a81b 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-06-04 14:09+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
+"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -63,8 +63,8 @@ msgstr "搜索"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -229,7 +229,7 @@ msgstr "将数据库改名为"
msgid "Command"
msgstr "命令"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "然后"
@@ -560,7 +560,7 @@ msgstr "插入"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -610,8 +610,8 @@ msgstr "追踪已禁用。"
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "该视图最少包含的行数,参见%s文档%s。"
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -799,8 +799,8 @@ msgstr "转存已经保存到文件 %s 中。"
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1305,7 +1305,7 @@ msgstr "注释"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1443,8 +1443,8 @@ msgstr "欢迎使用 %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。"
@@ -1997,8 +1997,8 @@ msgstr "数据表名"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
"这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下"
"列内容也将被转换:%3$s。其他文本将保持原样。"
@@ -2200,8 +2200,8 @@ msgstr "主键排序"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -2936,41 +2936,41 @@ msgstr "生成者"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查询结果为空 (即零行)。"
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr "下列结构被创建或修改。你可以:"
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr "点击它的名字查看内容"
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr "点击相应的“选项”链接修改它的设置"
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr "点击“结构”链接编辑它的结构"
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
msgid "Go to database"
msgstr "转到数据库"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr "设置"
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr "转到数据表"
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
msgid "structure"
msgstr "结构"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr "转到视图"
@@ -3737,7 +3737,7 @@ msgstr "分区定义"
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "保存"
@@ -3904,7 +3904,7 @@ msgid "Custom color"
msgstr "自定义颜色"
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "重置"
@@ -4672,12 +4672,12 @@ msgstr "删除与用户同名的数据库。"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容"
-"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
-"s。"
+"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权"
+"限%s。"
#: server_privileges.php:1684
msgid "The selected user was not found in the privilege table."
@@ -6842,9 +6842,9 @@ msgid ""
msgstr ""
"您设置了 [kbd]config[/kbd] 认证方式,且为了能够自动登录而保存了用户名和密码,"
"但在常用主机上不建议这样设置。如果有人知道 phpMyAdmin 的地址,他们就能够进入 "
-"phpMyAdmin 的管理界面。建议将[a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server]登录认证方式[/a]设置为 [kbd]cookie 认证[/kbd]或 [kbd]HTTP 认证"
-"[/kbd]。"
+"phpMyAdmin 的管理界面。建议将[a@?page=servers&mode=edit&id="
+"%1$d#tab_Server]登录认证方式[/a]设置为 [kbd]cookie 认证[/kbd]或 [kbd]HTTP 认"
+"证[/kbd]。"
#: setup/lib/messages.inc.php:239
msgid "You should use mysqli for performance reasons"
@@ -7551,40 +7551,40 @@ msgstr "二进制 - 无法编辑"
msgid "Upload to BLOB repository"
msgstr "上传到 BLOB 容器"
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "以新行插入"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr "以新行插入 (忽略错误)"
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr "显示插入语句"
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "返回上一页"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "插入新数据"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "返回到本页"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "编辑下一行"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr "重新进行插入操作,共 %s 行"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 867e81733..772b69a34 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,14 +3,14 @@ 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-07-03 09:00-0400\n"
+"POT-Creation-Date: 2010-07-14 11:36+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -62,8 +62,8 @@ msgstr "搜索"
#: server_privileges.php:1971 server_privileges.php:2018
#: server_privileges.php:2057 server_replication.php:235
#: server_replication.php:318 server_replication.php:341
-#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1171
-#: tbl_change.php:1208 tbl_indexes.php:254 tbl_operations.php:265
+#: server_synchronize.php:1209 tbl_change.php:329 tbl_change.php:1173
+#: tbl_change.php:1210 tbl_indexes.php:254 tbl_operations.php:265
#: tbl_operations.php:302 tbl_operations.php:499 tbl_operations.php:561
#: tbl_operations.php:681 tbl_select.php:325 tbl_structure.php:562
#: tbl_structure.php:597 tbl_tracking.php:395 tbl_tracking.php:512
@@ -230,7 +230,7 @@ msgstr "更改資料庫名稱到"
msgid "Command"
msgstr "指令"
-#: db_operations.php:429 tbl_change.php:1140
+#: db_operations.php:429 tbl_change.php:1142
msgid "and then"
msgstr "然後"
@@ -572,7 +572,7 @@ msgstr "新增"
#: libraries/db_links.inc.php:63 libraries/export/htmlword.php:23
#: libraries/export/latex.php:33 libraries/export/latex.php:337
#: libraries/export/odt.php:32 libraries/export/sql.php:60
-#: libraries/export/texytext.php:23 libraries/import.lib.php:1106
+#: libraries/export/texytext.php:23 libraries/import.lib.php:1121
#: libraries/tbl_links.inc.php:56 pmd_general.php:134
#: server_privileges.php:593 server_replication.php:315 tbl_tracking.php:269
msgid "Structure"
@@ -622,8 +622,8 @@ msgstr ""
#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:434 db_structure.php:448 libraries/header.inc.php:126
@@ -816,8 +816,8 @@ msgstr "備份已儲到檔案 %s."
#: import.php:60
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr "你正嘗試上載大容量檔案,請查看此 %s文件%s 如何略過此限制."
#: import.php:279 import.php:332 libraries/File.class.php:849
@@ -1369,7 +1369,7 @@ msgstr "註解"
#: libraries/Index.class.php:466 libraries/common.lib.php:616
#: libraries/common.lib.php:1201 libraries/display_tbl.lib.php:1117
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
#: pdf_pages.php:285 setup/frames/index.inc.php:124
#: setup/lib/messages.inc.php:352 tbl_row_action.php:69
msgid "Edit"
@@ -1512,8 +1512,8 @@ msgstr "歡迎使用 %s"
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr "有可能你未建立設定檔. 你可利用此 %1$s安裝程序%2$s 建立設定檔."
#: libraries/auth/config.auth.lib.php:116
@@ -2077,8 +2077,8 @@ msgstr "資料表名稱"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
msgstr ""
#: libraries/display_export.lib.php:202
@@ -2278,8 +2278,8 @@ msgstr "依鍵名排序"
#: libraries/export/php_array.php:25 libraries/export/sql.php:34
#: libraries/export/texytext.php:37 libraries/export/xls.php:27
#: libraries/export/xlsx.php:27 libraries/export/xml.php:24
-#: libraries/export/yaml.php:28 libraries/import.lib.php:1084
-#: libraries/import.lib.php:1106 libraries/import/csv.php:32
+#: libraries/export/yaml.php:28 libraries/import.lib.php:1099
+#: libraries/import.lib.php:1121 libraries/import/csv.php:32
#: libraries/import/docsql.php:34 libraries/import/ldi.php:47
#: libraries/import/ods.php:30 libraries/import/sql.php:20
#: libraries/import/xls.php:26 libraries/import/xlsx.php:26
@@ -3025,43 +3025,43 @@ msgstr "建立"
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 傳回的查詢結果為空 (原因可能為:沒有找到符合條件的記錄)"
-#: libraries/import.lib.php:1080
+#: libraries/import.lib.php:1095
msgid ""
"The following structures have either been created or altered. Here you can:"
msgstr ""
-#: libraries/import.lib.php:1081
+#: libraries/import.lib.php:1096
msgid "View a structure`s contents by clicking on its name"
msgstr ""
-#: libraries/import.lib.php:1082
+#: libraries/import.lib.php:1097
msgid ""
"Change any of its settings by clicking the corresponding \"Options\" link"
msgstr ""
-#: libraries/import.lib.php:1083
+#: libraries/import.lib.php:1098
msgid "Edit its structure by following the \"Structure\" link"
msgstr ""
-#: libraries/import.lib.php:1086
+#: libraries/import.lib.php:1101
#, fuzzy
msgid "Go to database"
msgstr "沒有資料庫"
-#: libraries/import.lib.php:1089 libraries/import.lib.php:1113
+#: libraries/import.lib.php:1104 libraries/import.lib.php:1128
msgid "settings"
msgstr ""
-#: libraries/import.lib.php:1108
+#: libraries/import.lib.php:1123
msgid "Go to table"
msgstr ""
-#: libraries/import.lib.php:1111
+#: libraries/import.lib.php:1126
#, fuzzy
msgid "structure"
msgstr "結構"
-#: libraries/import.lib.php:1117
+#: libraries/import.lib.php:1132
msgid "Go to view"
msgstr ""
@@ -3844,7 +3844,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:776 pdf_pages.php:503
#: setup/frames/config.inc.php:39 setup/frames/index.inc.php:214
-#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1123 tbl_indexes.php:248
+#: setup/lib/FormDisplay.tpl.php:215 tbl_change.php:1125 tbl_indexes.php:248
#: tbl_relation.php:566
msgid "Save"
msgstr "儲存"
@@ -4030,7 +4030,7 @@ msgid "Custom color"
msgstr ""
#: main.php:163 pdf_pages.php:363 setup/lib/FormDisplay.tpl.php:216
-#: tbl_change.php:1172
+#: tbl_change.php:1174
msgid "Reset"
msgstr "重設"
@@ -4798,8 +4798,8 @@ msgstr "刪除與使用者相同名稱之資料庫."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"註: phpMyAdmin 直接由 MySQL 權限資料表取得使用者權限. 如果使用者自行更改資料"
"表, 資料表內容將可能與實際使用者情況有異. 在這情況下, 您應在繼續前 %s重新載"
@@ -7567,40 +7567,40 @@ msgstr "二進制碼 - 不能編輯"
msgid "Upload to BLOB repository"
msgstr ""
-#: tbl_change.php:1127
+#: tbl_change.php:1129
msgid "Insert as new row"
msgstr "儲存為新記錄"
-#: tbl_change.php:1128
+#: tbl_change.php:1130
msgid "Insert as new row and ignore errors"
msgstr ""
-#: tbl_change.php:1129
+#: tbl_change.php:1131
msgid "Show insert query"
msgstr ""
-#: tbl_change.php:1144
+#: tbl_change.php:1146
msgid "Go back to previous page"
msgstr "返回"
-#: tbl_change.php:1145
+#: tbl_change.php:1147
msgid "Insert another new row"
msgstr "新增一筆記錄"
-#: tbl_change.php:1149
+#: tbl_change.php:1151
msgid "Go back to this page"
msgstr "返回這頁"
-#: tbl_change.php:1157
+#: tbl_change.php:1159
msgid "Edit next row"
msgstr "編輯新一列"
-#: tbl_change.php:1168
+#: tbl_change.php:1170
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr "按 TAB 鍵跳到下一個數值, 或 CTRL+方向鍵 作隨意移動"
-#: tbl_change.php:1206
+#: tbl_change.php:1208
#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
| |