diff --git a/db_qbe.php b/db_qbe.php
index 5bffabbdc..984180ab5 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -39,7 +39,7 @@ if (isset($_REQUEST['submit_sql']) && ! empty($sql_query)) {
if (isset($_REQUEST['submit_sql'])
&& ! preg_match('@^SELECT@i', $sql_query)) {
- PMA_Message::warning('strHaveToShow')->display();
+ PMA_Message::warning(__('You have to choose at least one column to display'))->display();
}
@@ -99,7 +99,7 @@ if (PMA_isValid($_REQUEST['TableList'], 'array')) {
$tbl_result = PMA_DBI_query('SHOW TABLES FROM ' . PMA_backquote($db) . ';', null, PMA_DBI_QUERY_STORE);
$tbl_result_cnt = PMA_DBI_num_rows($tbl_result);
if (0 == $tbl_result_cnt) {
- PMA_Message::error('strNoTablesFound')->display();
+ PMA_Message::error(__('No tables found in database.'))->display();
require_once './libraries/footer.inc.php';
exit;
}
diff --git a/export.php b/export.php
index 5399d43bf..5d487a107 100644
--- a/export.php
+++ b/export.php
@@ -59,7 +59,7 @@ if (empty($_REQUEST['asfile'])) {
// Does export require to be into file?
if (isset($export_list[$type]['force_file']) && ! $asfile) {
- $message = PMA_Message::error('strExportMustBeFile');
+ $message = PMA_Message::error(__('Selected export type has to be saved in file!'));
$GLOBALS['js_include'][] = 'functions.js';
require_once './libraries/header.inc.php';
if ($export_type == 'server') {
@@ -151,7 +151,7 @@ function PMA_exportOutputHandler($line)
if ($GLOBALS['save_on_server']) {
$write_result = @fwrite($GLOBALS['file_handle'], $dump_buffer);
if (!$write_result || ($write_result != strlen($dump_buffer))) {
- $GLOBALS['message'] = PMA_Message::error('strNoSpace');
+ $GLOBALS['message'] = PMA_Message::error(__('Insufficient space to save the file %s.'));
$GLOBALS['message']->addParam($save_filename);
return false;
}
@@ -176,7 +176,7 @@ function PMA_exportOutputHandler($line)
if ($GLOBALS['save_on_server'] && strlen($line) > 0) {
$write_result = @fwrite($GLOBALS['file_handle'], $line);
if (!$write_result || ($write_result != strlen($line))) {
- $GLOBALS['message'] = PMA_Message::error('strNoSpace');
+ $GLOBALS['message'] = PMA_Message::error(__('Insufficient space to save the file %s.'));
$GLOBALS['message']->addParam($save_filename);
return false;
}
@@ -291,15 +291,15 @@ if ($save_on_server) {
$save_filename = PMA_userDir($cfg['SaveDir']) . preg_replace('@[/\\\\]@', '_', $filename);
unset($message);
if (file_exists($save_filename) && empty($onserverover)) {
- $message = PMA_Message::error('strFileAlreadyExists');
+ $message = PMA_Message::error(__('File %s already exists on server, change filename or check overwrite option.'));
$message->addParam($save_filename);
} else {
if (is_file($save_filename) && !is_writable($save_filename)) {
- $message = PMA_Message::error('strNoPermission');
+ $message = PMA_Message::error(__('The web server does not have permission to save the file %s.'));
$message->addParam($save_filename);
} else {
if (!$file_handle = @fopen($save_filename, 'w')) {
- $message = PMA_Message::error('strNoPermission');
+ $message = PMA_Message::error(__('The web server does not have permission to save the file %s.'));
$message->addParam($save_filename);
}
}
@@ -356,7 +356,7 @@ if (!$save_on_server) {
if ($export_type == 'database') {
$num_tables = count($tables);
if ($num_tables == 0) {
- $message = PMA_Message::error('strNoTablesFound');
+ $message = PMA_Message::error(__('No tables found in database.'));
$GLOBALS['js_include'][] = 'functions.js';
require_once './libraries/header.inc.php';
$active_page = 'db_export.php';
@@ -624,9 +624,9 @@ if (!empty($asfile)) {
$write_result = @fwrite($file_handle, $dump_buffer);
fclose($file_handle);
if (strlen($dump_buffer) !=0 && (!$write_result || ($write_result != strlen($dump_buffer)))) {
- $message = new PMA_Message('strNoSpace', PMA_Message::ERROR, $save_filename);
+ $message = new PMA_Message(__('Insufficient space to save the file %s.'), PMA_Message::ERROR, $save_filename);
} else {
- $message = new PMA_Message('strDumpSaved', PMA_Message::SUCCESS, $save_filename);
+ $message = new PMA_Message(__('Dump has been saved to file %s.'), PMA_Message::SUCCESS, $save_filename);
}
$GLOBALS['js_include'][] = 'functions.js';
diff --git a/libraries/import/csv.php b/libraries/import/csv.php
index c6aebdf72..ee257393b 100644
--- a/libraries/import/csv.php
+++ b/libraries/import/csv.php
@@ -55,8 +55,8 @@ $csv_escaped = strtr($csv_escaped, $replacements);
$csv_new_line = strtr($csv_new_line, $replacements);
if (strlen($csv_terminated) != 1) {
- $message = PMA_Message::error('strInvalidCSVParameter');
- $message->addParam('strFieldsTerminatedBy', false);
+ $message = PMA_Message::error(__('Invalid parameter for CSV import: %s'));
+ $message->addParam(__('Fields terminated by'), false);
$error = TRUE;
// The default dialog of MS Excel when generating a CSV produces a
// semi-colon-separated file with no chance of specifying the
@@ -67,16 +67,16 @@ if (strlen($csv_terminated) != 1) {
// But the parser won't work correctly with strings so we allow just
// one character.
} elseif (strlen($csv_enclosed) > 1) {
- $message = PMA_Message::error('strInvalidCSVParameter');
- $message->addParam('strFieldsEnclosedBy', false);
+ $message = PMA_Message::error(__('Invalid parameter for CSV import: %s'));
+ $message->addParam(__('Fields enclosed by'), false);
$error = TRUE;
} elseif (strlen($csv_escaped) != 1) {
- $message = PMA_Message::error('strInvalidCSVParameter');
- $message->addParam('strFieldsEscapedBy', false);
+ $message = PMA_Message::error(__('Invalid parameter for CSV import: %s'));
+ $message->addParam(__('Fields escaped by'), false);
$error = TRUE;
} elseif (strlen($csv_new_line) != 1 && $csv_new_line != 'auto') {
- $message = PMA_Message::error('strInvalidCSVParameter');
- $message->addParam('strLinesTerminatedBy', false);
+ $message = PMA_Message::error(__('Invalid parameter for CSV import: %s'));
+ $message->addParam(__('Lines terminated by'), false);
$error = TRUE;
}
@@ -116,7 +116,7 @@ if (!$analyze) {
}
}
if (!$found) {
- $message = PMA_Message::error('strInvalidColumn');
+ $message = PMA_Message::error(__('Invalid column (%s) specified!'));
$message->addParam($val);
$error = TRUE;
break;
@@ -174,7 +174,7 @@ while (!($finished && $i >= $len) && !$error && !$timeout_passed) {
while ($i < $len) {
// Deadlock protection
if ($lasti == $i && $lastlen == $len) {
- $message = PMA_Message::error('strInvalidCSVFormat');
+ $message = PMA_Message::error(__('Invalid format of CSV input on line %d.'));
$message->addParam($line);
$error = TRUE;
break;
@@ -309,7 +309,7 @@ while (!($finished && $i >= $len) && !$error && !$timeout_passed) {
if ($values[count($values) - 1] == ';') {
unset($values[count($values) - 1]);
} else {
- $message = PMA_Message::error('strInvalidCSVFieldCount');
+ $message = PMA_Message::error(__('Invalid field count in CSV input on line %d.'));
$message->addParam($line);
$error = TRUE;
break;
@@ -421,7 +421,7 @@ if ($analyze) {
PMA_importRunQuery();
if (count($values) != 0 && !$error) {
- $message = PMA_Message::error('strInvalidCSVFormat');
+ $message = PMA_Message::error(__('Invalid format of CSV input on line %d.'));
$message->addParam($line);
$error = TRUE;
}
diff --git a/libraries/import/ldi.php b/libraries/import/ldi.php
index f939a2d56..4124ca2cf 100644
--- a/libraries/import/ldi.php
+++ b/libraries/import/ldi.php
@@ -52,7 +52,7 @@ if (isset($plugin_list)) {
if ($import_file == 'none' || $compression != 'none' || $charset_conversion) {
// We handle only some kind of data!
- $message = PMA_Message::error('strInvalidLDIImport');
+ $message = PMA_Message::error(__('This plugin does not support compressed imports!'));
$error = TRUE;
return;
}
diff --git a/libraries/import/xml.php b/libraries/import/xml.php
index f62328eaa..a4c873b07 100644
--- a/libraries/import/xml.php
+++ b/libraries/import/xml.php
@@ -71,7 +71,7 @@ unset($buffer);
* The XML was malformed
*/
if ($xml === FALSE) {
- PMA_Message::error('strXMLError')->display();
+ PMA_Message::error(__('The XML file specified was either malformed or incomplete. Please correct the issue and try again.'))->display();
unset($xml);
$GLOBALS['finished'] = false;
return;
@@ -127,7 +127,7 @@ if ($db_attr instanceof SimpleXMLElement) {
* The XML was malformed
*/
if ($db_name === NULL) {
- PMA_Message::error('strXMLError')->display();
+ PMA_Message::error(__('The XML file specified was either malformed or incomplete. Please correct the issue and try again.'))->display();
unset($xml);
$GLOBALS['finished'] = false;
return;
diff --git a/main.php b/main.php
index 6dfe68a0c..360e98881 100644
--- a/main.php
+++ b/main.php
@@ -313,7 +313,7 @@ if ($server > 0) {
require_once './libraries/relation.lib.php';
$cfgRelation = PMA_getRelationsParam();
if(!$cfgRelation['allworks'] && $cfg['PmaNoRelation_DisableWarning'] == false) {
- $message = PMA_Message::notice('strRelationNotWorking');
+ $message = PMA_Message::notice(__('The additional features for working with linked tables have been deactivated. To find out why click %shere%s.'));
$message->addParam('', false);
$message->addParam('', false);
/* Show error if user has configured something, notice elsewhere */
@@ -328,7 +328,7 @@ if ($server > 0) {
* Show warning when javascript support is missing.
*/
echo '';
diff --git a/po/af.po b/po/af.po
index 7c2f5ab1e..2591612e5 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal \n"
"Language-Team: afrikaans \n"
@@ -340,7 +340,8 @@ msgstr "Beskikbaar"
msgid "Collation"
msgstr ""
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -398,8 +399,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr "Verander PDF Bladsye"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Geen tabelle in databasis gevind nie."
@@ -451,13 +452,17 @@ msgstr ""
msgid "%s table(s)"
msgstr "%s tabel(le)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Jou SQL-navraag is suksesvol uitgevoer"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Jy moet ten minste een Kolom kies om te vertoon"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -579,7 +584,7 @@ msgid "Browse"
msgstr "Beloer Data"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -677,7 +682,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -708,20 +713,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Met gekose:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Kies Alles"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -733,7 +738,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -761,8 +766,8 @@ msgid "Analyze table"
msgstr "Analiseer tabel"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -851,6 +856,31 @@ msgstr "Kontroleer tabel"
msgid "Database Log"
msgstr "Databasis"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1038,21 +1068,21 @@ msgid "Choose field to display"
msgstr "Kies 'n Veld om te vertoon"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Geen"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Vorige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1060,95 +1090,95 @@ msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
msgid "Today"
msgstr "totaal"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Biner"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mei"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1156,176 +1186,176 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Des"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "So"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Di"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fr"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wo"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in gebruik"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -2013,6 +2043,7 @@ msgstr "Skep"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Geen Regte"
@@ -2297,46 +2328,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr "Die ry is verwyder"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Vermoor"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "in navraag"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Vertoon rye"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Verander"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Skakel nie gevind nie"
@@ -2804,6 +2835,56 @@ msgstr "Struktuur"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Velde beeindig deur"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Velde omring met"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Velde ontsnap (escaped) deur"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Lyne beeindig deur"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3284,12 +3365,12 @@ msgstr ""
msgid "Copy table to (database.table):"
msgstr "Kopieer tabel na (databasis.tabel):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabel %s is gekopieer na %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3552,11 +3633,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamies"
@@ -3625,10 +3701,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Uitgebreide toevoegings"
@@ -3647,28 +3719,10 @@ msgstr ""
msgid "Field %s has been dropped"
msgstr "Veld %s is verwyder"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Velde omring met"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Velde ontsnap (escaped) deur"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Velde"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Velde beeindig deur"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3767,10 +3821,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Jy moet ten minste een Kolom kies om te vertoon"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr ""
@@ -3940,35 +3990,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3979,7 +4005,7 @@ msgstr ""
msgid "Japanese"
msgstr ""
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4062,10 +4088,6 @@ msgstr "Lengte/Waardes*"
msgid "Number of rows per page"
msgstr "Hoeveelheid rye per bladsy"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Lyne beeindig deur"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr ""
@@ -4175,12 +4197,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Skuif tabel na (databasis.tabel):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabel %s is geskuif na %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4249,11 +4271,6 @@ msgstr "Geen"
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Jy het nie genoeg regte om nou hier te wees nie!"
@@ -4262,11 +4279,6 @@ msgstr "Jy het nie genoeg regte om nou hier te wees nie!"
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4899,7 +4911,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4934,7 +4946,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5924,7 +5936,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5939,7 +5952,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Die tabel naam is leeg!"
@@ -6464,12 +6477,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index d250b7812..11918de0e 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: arabic \n"
@@ -333,7 +333,8 @@ msgstr "فعل"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -391,8 +392,8 @@ msgstr "حجم الورق"
msgid "Edit PDF Pages"
msgstr "عدل صفحات PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!."
@@ -443,13 +444,17 @@ msgstr "التحقق الأخير"
msgid "%s table(s)"
msgstr "%s جدول (جداول)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "الخاص بك تم تنفيذه بنجاح SQL-استعلام"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "عليك اختيار عمود واحد على الأقل للعرض"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -571,7 +576,7 @@ msgid "Browse"
msgstr "استعراض"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -669,7 +674,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -700,20 +705,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr ": على المحدد"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "اختر الكل"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -725,7 +730,7 @@ msgid "Check tables having overhead"
msgstr "تحقق من overhead"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -753,8 +758,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -838,6 +843,33 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "لا توجد مساحة كافية لحفظ الملف %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"المف %s موجود أصلا على الخادم. غير الاسم أو حدد خيار التسجيل على الملف "
+"الموجود."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "تم حفظ الـDump إلى الملف %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1023,21 +1055,21 @@ msgid "Choose field to display"
msgstr "اختر الحقل لإظهاره"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "تبرع"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "سابق"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1045,96 +1077,96 @@ msgid "Next"
msgstr "التالي"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "مجموع كلي"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ثنائي"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "مارس"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "أبريل"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "مايو"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "يونيو"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "يوليو"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "أغسطس"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "أكتوبر"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "يناير"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "فبراير"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "أبريل"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1142,178 +1174,178 @@ msgid "May"
msgstr "مايو"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "يونيو"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "يوليو"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "أغسطس"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "سبتمبر"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "أكتوبر"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "نوفمبر"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "ديسمبر"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "الأحد"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "الإثنين"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "الثلاثاء"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "الجمعة"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "الأحد"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "الإثنين"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "الثلاثاء"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "الأربعاء"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "الخميس"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "الجمعة"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "السبت"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "الأحد"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "الإثنين"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "الثلاثاء"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "الأربعاء"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "الخميس"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "الجمعة"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "السبت"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "ويكي"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "قيد الإستعمال"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2002,6 +2034,7 @@ msgstr "تكوين"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "امتياز غير موجود"
@@ -2283,46 +2316,46 @@ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
msgid "The row has been deleted"
msgstr "لقد تم حذف الصف"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "إبطال"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "في الاستعلام"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "مشاهدة السجلات "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "المجموع"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "استغرق الاستعلام %01.4f ثانية"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "تغيير"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "عرض الطباعة (مع النصوص الكاملة)."
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "لم يمكن إيجاد الوصلة"
@@ -2781,6 +2814,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "حقل مفصول بـ"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "حقل مضمن بـ"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "حقل متجاهل بـ"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "خطوط مفصولة بـ"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3253,12 +3336,12 @@ msgstr "اتصالات"
msgid "Copy table to (database.table):"
msgstr "نسخ الجدول إلى"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "الجدول %s لقد تم نسخه إلى %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "لا يمكن نسخ الجدول إلى نفسه!"
@@ -3519,11 +3602,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "احذف قواعد البيانات التي لها نفس أسماء المستخدمين."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "تم حفظ الـDump إلى الملف %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "ديناميكي"
@@ -3592,10 +3670,6 @@ msgstr "إصدارة إكسل"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "إدخال مدد"
@@ -3614,30 +3688,10 @@ msgstr "محاولات أخفقت"
msgid "Field %s has been dropped"
msgstr "حقل محذوف %s"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "حقل مضمن بـ"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "حقل متجاهل بـ"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr " عدد الحقول"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "حقل مفصول بـ"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"المف %s موجود أصلا على الخادم. غير الاسم أو حدد خيار التسجيل على الملف "
-"الموجود."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "الملفات"
@@ -3737,10 +3791,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "عليك اختيار عمود واحد على الأقل للعرض"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "العبرية"
@@ -3913,35 +3963,11 @@ msgstr "العلاقات الداخلية"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3952,7 +3978,7 @@ msgstr ""
msgid "Japanese"
msgstr "اليابانية"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4034,10 +4060,6 @@ msgstr "الطول/القيمة"
msgid "Number of rows per page"
msgstr "رقم السجلات لكل صفحة"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "خطوط مفصولة بـ"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "الليتوانية"
@@ -4145,12 +4167,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "نقل جدول إلى (قاعدة بيانات.جدول):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "%s جدول تم نقله إلى %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "لايمكن نقل الجدول إلى نفسه!"
@@ -4218,11 +4240,6 @@ msgstr ""
msgid "This format has no options"
msgstr "هذا التنسيق ليس له أي خيارات"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "خادم الويب ليس لديه صلاحية لحفظ الملف %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!"
@@ -4231,11 +4248,6 @@ msgstr "ليس لديك الحقوق الكافية بأن تكون هنا ال
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "لا توجد مساحة كافية لحفظ الملف %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4855,7 +4867,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4890,7 +4902,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5871,7 +5883,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5886,7 +5899,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "اسم الجدول فارغ!"
@@ -6425,12 +6438,6 @@ msgstr "ويكي"
msgid "wildcard"
msgstr "حرف شامل"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/az.po b/po/az.po
index 739984097..e6f723cb6 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
@@ -337,7 +337,8 @@ msgstr "Enabled"
msgid "Collation"
msgstr "Quruluş"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr "PDF Sehifelerini Deyişdir"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Me'lumat bazasında cedvel yoxdur."
@@ -447,13 +448,17 @@ msgstr "En son yoxlama"
msgid "%s table(s)"
msgstr "%s cedvel"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -575,7 +580,7 @@ msgid "Browse"
msgstr "İçindekiler"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -673,7 +678,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL serverinde esas depolama motoru olaraq qurulmuşdur."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Seçilenleri:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Hamısını Seç"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Cedveli analiz et"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -848,6 +853,33 @@ msgstr "Cedveli yoxla"
msgid "Database Log"
msgstr "Me'lumat Bazası"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "%s faylını saxlamaq üçün lazım olan yer çatışmır."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"%s faylı serverda onsuz da mövcuddur, ya faylın adını deyişdir ya da üzerine "
+"yazma variantlarını."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Webserver-in %s faylını saxlama izni yoxdur."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Sxem %s faylına qeyd edildi."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1037,21 +1069,21 @@ msgid "Choose field to display"
msgstr "Gösterilecek Saheni Seç"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Heç biri"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Evvelki"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1059,96 +1091,96 @@ msgid "Next"
msgstr "Sonrakı"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Cemi"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binary"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "May"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "İyun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "İyul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avq"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Yan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1156,176 +1188,176 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "İyun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "İyul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Avq"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sent"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Noy"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Baz"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Baz Ert"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Çerş Axş"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cüme"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Baz"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Baz Ert"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Çerş Axş"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Çerş"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Cüme Axş"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Cüme"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Şen"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Baz"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Baz Ert"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Çerş Axş"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çerş"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cüme Axş"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cüme"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şen"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "istifadede"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2020,6 +2052,7 @@ msgstr "Qur"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Selahiyyet çatışmazlığı"
@@ -2304,46 +2337,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr "Setir silindi"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Söndür"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Gösterilen setirler"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "cemi"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "sorğu %01.4f saniyede icra edildi"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Deyişdir"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link tapılmadı"
@@ -2812,6 +2845,56 @@ msgstr "Quruluş"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Sahelerin yox edildiyi (terminate) işare"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Saheler ehate edildiyi işare"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Sahelerin escape edildiyi işare"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Setir leğvedicisi (Lines terminated by)"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3296,12 +3379,12 @@ msgstr "Elaqeler"
msgid "Copy table to (database.table):"
msgstr "Cedveli kopyala (me'lumat bazası.cedvel):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "%s cedveli %s - e kopyalandı."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Cedveli eynisinin üzerine kopyalaya bilmerem!"
@@ -3571,11 +3654,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Sxem %s faylına qeyd edildi."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamik"
@@ -3645,10 +3723,6 @@ msgstr "Excel versiyası"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Genişletilmiş girişli"
@@ -3667,30 +3741,10 @@ msgstr "Uğursuz Cehdler"
msgid "Field %s has been dropped"
msgstr "%s sahesi leğv edildi"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Saheler ehate edildiyi işare"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Sahelerin escape edildiyi işare"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Sahe sayı"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Sahelerin yox edildiyi (terminate) işare"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"%s faylı serverda onsuz da mövcuddur, ya faylın adını deyişdir ya da üzerine "
-"yazma variantlarını."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3793,10 +3847,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Gösterilmesi üçün en az bir sütun seçmelisiniz"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "İbrani Dili"
@@ -3969,35 +4019,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4008,7 +4034,7 @@ msgstr ""
msgid "Japanese"
msgstr ""
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4090,10 +4116,6 @@ msgstr "Uzunluq/Deyerler*"
msgid "Number of rows per page"
msgstr "Sehife başına düşen setir sayı"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Setir leğvedicisi (Lines terminated by)"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litva Dili"
@@ -4205,12 +4227,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Cedveli daşı (me'lumat bazası.cedvel):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "%s cedveli %s - e daşınmışdır."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Can't move table to same one!"
@@ -4279,11 +4301,6 @@ msgstr "Heç biri"
msgid "This format has no options"
msgstr "Bu formatın variantları yoxdur"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Webserver-in %s faylını saxlama izni yoxdur."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Burada olma haqqınız yoxdur!"
@@ -4292,11 +4309,6 @@ msgstr "Burada olma haqqınız yoxdur!"
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "%s faylını saxlamaq üçün lazım olan yer çatışmır."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4935,7 +4947,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4970,7 +4982,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5960,7 +5972,8 @@ msgstr "%s istifadeçisi mövcuddur!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "The selected users have been deleted successfully."
@@ -5975,7 +5988,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Cedveli adı boşdur!"
@@ -6524,12 +6537,6 @@ msgstr ""
msgid "wildcard"
msgstr "xüsusi işare"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/be.po b/po/be.po
index c052c7ce4..7d116ee0b 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
@@ -336,7 +336,8 @@ msgstr "Уключана"
msgid "Collation"
msgstr "Супастаўленьне"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Памер паперы"
msgid "Edit PDF Pages"
msgstr "Рэдагаваць PDF-старонкі"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "У базе дадзеных табліц ня выяўлена."
@@ -446,13 +447,17 @@ msgstr "Апошняя праверка"
msgid "%s table(s)"
msgstr "%s табліц(ы)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Ваш SQL-запыт быў пасьпяхова выкананы"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Прагляд"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -707,20 +712,20 @@ msgstr ""
"сэрвэры."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "З адзначанымі:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Адзначыць усё"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -732,7 +737,7 @@ msgid "Check tables having overhead"
msgstr "Адзначыць тыя, што патрабуюць аптымізацыі"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -760,8 +765,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -853,6 +858,33 @@ msgstr "Праверыць табліцу"
msgid "Database Log"
msgstr "База дадзеных"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Дадзеныя выбранага тыпу экспартаваньня мусяць быць зазаванымі ў файл!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Недастаткова месца для захаваньня ў файл %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Файл %s ужо існуе на сэрвэры, зьмяніце імя файла або праверце опцыю "
+"перазапісу."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Вэб-сэрвэр ня мае дазволу для захаваньня ў файл %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Дамп захаваны ў файл %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1050,20 +1082,20 @@ msgid "Choose field to display"
msgstr "Выберыце поле для адлюстраваньня"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Дадзеныя"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Папярэдняя старонка"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1071,96 +1103,96 @@ msgid "Next"
msgstr "Наступная старонка"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Агулам"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Двайковы"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Сак"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Кра"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Тра"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Чэр"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Ліп"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Жні"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Кас"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Сту"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Сак"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Кра"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1168,178 +1200,178 @@ msgid "May"
msgstr "Тра"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Чэр"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Ліп"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Жні"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Кас"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Ліс"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Сьн"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ндз"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пан"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Аўт"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пят"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ндз"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Пан"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Аўт"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Сер"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Цач"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Пят"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ндз"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пан"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Аўт"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сер"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Цач"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пят"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "выкарыстоўваецца"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2056,6 +2088,7 @@ msgstr "Стварыць"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Без прывілеяў"
@@ -2347,46 +2380,46 @@ msgstr "Выканаць запыт з закладак"
msgid "The row has been deleted"
msgstr "Радок быў выдалены"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Спыніць"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "па запыту"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Паказаныя запісы"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "усяго"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запыт выконваўся %01.4f сэк"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Зьмяніць"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Дзеяньні з вынікамі запытаў"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Вэрсія для друку (з усім тэкстам)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Сувязь ня знойдзеная"
@@ -2897,6 +2930,56 @@ msgstr "Структура"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Недапушчальны парэмэтар для імпарту дадзеных у CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Палі падзеленыя"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Палі ўзятыя ў"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Палі экрануюцца"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Радкі падзеленыя"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Вызначаная некарэктная калёнка (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Некарэктны фармат CSV-дадзеных у радку %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Няправільная колькасьць палёў у CSV-дадзеных у радку %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3376,12 +3459,12 @@ msgstr "Падлучэньні"
msgid "Copy table to (database.table):"
msgstr "Скапіяваць табліцу ў (база дадзеных.табліца):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Табліца %s была скапіяваная ў %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Немагчыма скапіяваць табліцу ў саму сябе!"
@@ -3652,11 +3735,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Выдаліць базы дадзеных, якія маюць такія ж імёны як і карыстальнікі."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Дамп захаваны ў файл %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "дынамічны"
@@ -3725,10 +3803,6 @@ msgstr "Вэрсія Excel"
msgid "Export/Import to scale"
msgstr "Маштаб"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Дадзеныя выбранага тыпу экспартаваньня мусяць быць зазаванымі ў файл!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Пашыраныя ўстаўкі"
@@ -3747,30 +3821,10 @@ msgstr "Няўдалых спробаў"
msgid "Field %s has been dropped"
msgstr "Поле %s было выдаленае"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Палі ўзятыя ў"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Палі экрануюцца"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Палі"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Палі падзеленыя"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Файл %s ужо існуе на сэрвэры, зьмяніце імя файла або праверце опцыю "
-"перазапісу."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Файлы"
@@ -3872,10 +3926,6 @@ msgstr "Апрацоўнік"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Вам неабходна выбраць прынамсі адну калёнку для адлюстраваньня"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Габрэйская"
@@ -4051,35 +4101,11 @@ msgstr "Унутраныя сувязі"
msgid "Column count has to be larger than zero."
msgstr "Колькасьць калёнак мусіць быць большай за нуль."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Вызначаная некарэктная калёнка (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Няправільная колькасьць палёў у CSV-дадзеных у радку %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Некарэктны фармат CSV-дадзеных у радку %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Недапушчальны парэмэтар для імпарту дадзеных у CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Трэба дадаць прынамсі адно поле."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4090,7 +4116,7 @@ msgstr "Некарэктны індэкс сэрвэра: \"%s\""
msgid "Japanese"
msgstr "Японская"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4172,10 +4198,6 @@ msgstr "Даўжыня/Значэньні*"
msgid "Number of rows per page"
msgstr "Колькасьць радкоў на старонку"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Радкі падзеленыя"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Літоўская"
@@ -4291,12 +4313,12 @@ msgstr "Перасунуць мэню"
msgid "Move table to (database.table):"
msgstr "Перанесьці табліцу ў (база дадзеных.табліца):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Табліца %s была перанесеная ў %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Немагчыма перанесьці табліцу ў саму сябе!"
@@ -4367,11 +4389,6 @@ msgstr "Няма"
msgid "This format has no options"
msgstr "Гэты фармат ня мае опцыяў"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Вэб-сэрвэр ня мае дазволу для захаваньня ў файл %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Вы ня маеце дастатковых прывілеяў быць у гэтым месцы ў гэты час!"
@@ -4380,11 +4397,6 @@ msgstr "Вы ня маеце дастатковых прывілеяў быць
msgid "No rows selected"
msgstr "Ніводны радок ня выбраны"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Недастаткова месца для захаваньня ў файл %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5024,7 +5036,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5059,7 +5071,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6188,7 +6200,8 @@ msgstr "Табліца %s ужо існуе!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Табліца %1$s была пасьпяхова зьмененая"
@@ -6203,7 +6216,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Пустая назва табліцы!"
@@ -6776,12 +6789,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "шаблён"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/be@latin.po b/po/be@latin.po
index ec0f6eca1..dd1683d97 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \n"
@@ -337,7 +337,8 @@ msgstr ""
msgid "Collation"
msgstr "Supastaŭleńnie"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr "Pamier papiery"
msgid "Edit PDF Pages"
msgstr "Redagavać PDF-staronki"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "U bazie dadzienych tablic nia vyjaŭlena."
@@ -447,13 +448,17 @@ msgstr "Apošniaja pravierka"
msgid "%s table(s)"
msgstr "%s tablic(y)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -575,7 +580,7 @@ msgid "Browse"
msgstr "Prahlad"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -673,7 +678,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -708,20 +713,20 @@ msgstr ""
"servery."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Z adznačanymi:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Adznačyć usio"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -733,7 +738,7 @@ msgid "Check tables having overhead"
msgstr "Adznačyć tyja, što patrabujuć aptymizacyi"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -761,8 +766,8 @@ msgid "Analyze table"
msgstr "Analizavać tablicu"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -846,6 +851,33 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Dadzienyja vybranaha typu ekspartavańnia musiać być zazavanymi ŭ fajł!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Niedastatkova miesca dla zachavańnia ŭ fajł %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Fajł %s užo isnuje na servery, źmianicie imia fajła abo praviercie opcyju "
+"pierazapisu."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Web-server nia maje dazvołu dla zachavańnia ŭ fajł %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Damp zachavany ŭ fajł %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1043,21 +1075,21 @@ msgid "Choose field to display"
msgstr "Vybierycie pole dla adlustravańnia"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nijakaja"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Papiaredniaja staronka"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1065,96 +1097,96 @@ msgid "Next"
msgstr "Nastupnaja staronka"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ahułam"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Dvajkovy"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Sak"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Kra"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Tra"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Čer"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Lip"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Žni"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Kas"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Sak"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Kra"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1162,178 +1194,178 @@ msgid "May"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Čer"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Žni"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Vier"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Śn"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ndz"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pan"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Aŭt"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Piat"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ndz"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Pan"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Aŭt"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Sier"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Cač"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Piat"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ndz"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pan"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Aŭt"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sier"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cač"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Piat"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "vykarystoŭvajecca"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2051,6 +2083,7 @@ msgstr "Stvaryć"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Biez pryvilejaŭ"
@@ -2342,46 +2375,46 @@ msgstr "Vykanać zapyt z zakładak"
msgid "The row has been deleted"
msgstr "Radok byŭ vydaleny"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Spynić"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "pa zapytu"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Pakazanyja zapisy"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "usiaho"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Zapyt vykonvaŭsia %01.4f sek"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Źmianić"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Dziejańni z vynikami zapytaŭ"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Versija dla druku (z usim tekstam)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Suviaź nia znojdzienaja"
@@ -2892,6 +2925,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Niedapuščalny paremetar dla impartu dadzienych u CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Pali padzielenyja"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Pali ŭziatyja ŭ"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Pali ekranujucca"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Radki padzielenyja"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Vyznačanaja niekarektnaja kalonka (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Niekarektny farmat CSV-dadzienych u radku %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3365,12 +3448,12 @@ msgstr "Padłučeńni"
msgid "Copy table to (database.table):"
msgstr "Skapijavać tablicu ŭ (baza dadzienych.tablica):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tablica %s była skapijavanaja ŭ %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Niemahčyma skapijavać tablicu ŭ samu siabie!"
@@ -3639,11 +3722,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Vydalić bazy dadzienych, jakija majuć takija ž imiony jak i karystalniki."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Damp zachavany ŭ fajł %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamičny"
@@ -3712,10 +3790,6 @@ msgstr "Versija Excel"
msgid "Export/Import to scale"
msgstr "Maštab"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Dadzienyja vybranaha typu ekspartavańnia musiać być zazavanymi ŭ fajł!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Pašyranyja ŭstaŭki"
@@ -3734,30 +3808,10 @@ msgstr "Niaŭdałych sprobaŭ"
msgid "Field %s has been dropped"
msgstr "Pole %s było vydalenaje"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Pali ŭziatyja ŭ"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Pali ekranujucca"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Pali"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Pali padzielenyja"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Fajł %s užo isnuje na servery, źmianicie imia fajła abo praviercie opcyju "
-"pierazapisu."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Fajły"
@@ -3857,10 +3911,6 @@ msgstr "Apracoŭnik"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Vam nieabchodna vybrać prynamsi adnu kalonku dla adlustravańnia"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Habrejskaja"
@@ -4036,35 +4086,11 @@ msgstr "Unutranyja suviazi"
msgid "Column count has to be larger than zero."
msgstr "Kolkaść kalonak musić być bolšaj za nul."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Vyznačanaja niekarektnaja kalonka (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Niapravilnaja kolkaść paloŭ u CSV-dadzienych u radku %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Niekarektny farmat CSV-dadzienych u radku %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Niedapuščalny paremetar dla impartu dadzienych u CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Treba dadać prynamsi adno pole."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4075,7 +4101,7 @@ msgstr "Niekarektny indeks servera: \"%s\""
msgid "Japanese"
msgstr "Japonskaja"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 main.php:331
msgid ""
"Javascript support is missing or disabled in your browser, some phpMyAdmin "
"functionality will be missing. For example navigation frame will not refresh "
@@ -4157,10 +4183,6 @@ msgstr "Daŭžynia/Značeńni*"
msgid "Number of rows per page"
msgstr "Kolkaść radkoŭ na staronku"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Radki padzielenyja"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litoŭskaja"
@@ -4277,12 +4299,12 @@ msgstr "Pierasunuć meniu"
msgid "Move table to (database.table):"
msgstr "Pieranieści tablicu ŭ (baza dadzienych.tablica):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tablica %s była pieraniesienaja ŭ %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Niemahčyma pieranieści tablicu ŭ samu siabie!"
@@ -4352,11 +4374,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Hety farmat nia maje opcyjaŭ"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Web-server nia maje dazvołu dla zachavańnia ŭ fajł %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas!"
@@ -4365,11 +4382,6 @@ msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas
msgid "No rows selected"
msgstr "Nivodny radok nia vybrany"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Niedastatkova miesca dla zachavańnia ŭ fajł %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5002,7 +5014,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5037,7 +5049,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6163,7 +6175,8 @@ msgstr "Tablica %s užo isnuje!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tablica %1$s była paśpiachova źmienienaja"
@@ -6178,7 +6191,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Pustaja nazva tablicy!"
@@ -6750,12 +6763,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "šablon"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index ef228d407..544da1029 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bulgarian \n"
@@ -335,7 +335,8 @@ msgstr "Позволено"
msgid "Collation"
msgstr "Колация"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -393,8 +394,8 @@ msgstr "Размер на хартията"
msgid "Edit PDF Pages"
msgstr "Редактиране на PDF Страници"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "В базата от данни няма таблици."
@@ -445,13 +446,17 @@ msgstr "Последна проверка"
msgid "%s table(s)"
msgstr "%s таблица(и)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL заявката беше изпълнена успешно"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Трябва да изберете поне една Колона за показване"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -573,7 +578,7 @@ msgid "Browse"
msgstr "Прелистване"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -702,20 +707,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е хранилището на данни по подразбиране на този MySQL сървър."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Когато има отметка:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Маркиране на всичко"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -727,7 +732,7 @@ msgid "Check tables having overhead"
msgstr "Маркиране на таблиците със загубено място"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -755,8 +760,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -845,6 +850,33 @@ msgstr "Проверка на таблицата"
msgid "Database Log"
msgstr "БД"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Недостатъчно свободно пространство за записване на файла %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Файлът %s вече съществува на сървъра, сменете името на файла или включете "
+"опцията за препокриване."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Уеб сървъра няма права за запис на файла %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Схемата(дъмп) беше записана във файл %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1038,21 +1070,21 @@ msgid "Choose field to display"
msgstr "Изберете Полета за показване"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Няма"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Предишен"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1060,96 +1092,96 @@ msgid "Next"
msgstr "Следващ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Общо"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Двоично "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "март"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "април"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "май"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "юни"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "юли"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "август"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "октомври"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "януари"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "февруари"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "март"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "април"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1157,176 +1189,176 @@ msgid "May"
msgstr "май"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "юни"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "юли"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "август"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "септември"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "октомври"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "ноември"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "декември"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "нд"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "пн"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "вт"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "пт"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "нд"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "пн"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "вт"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "ср"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "чт"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "пт"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "сб"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "нд"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "пн"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "вт"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ср"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "чт"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "пт"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "Заето"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2029,6 +2061,7 @@ msgstr "Създай"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Няма привилегии"
@@ -2314,46 +2347,46 @@ msgstr "Стартиране на запазена SQL-заявка"
msgid "The row has been deleted"
msgstr "Редът беше изтрит"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "СТОП"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "в запитването"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Показване на записи "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "Общо"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Заявката отне %01.4f секунди"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Променяне"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Операции с резулатата от заявката"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Преглед за печат (с пълните текстове)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Връзките не са намерени"
@@ -2820,6 +2853,56 @@ msgstr "Структура"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Полетата завършват с"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Полетата са оградени с"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Представка на специалните знаци"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Редовете завършват с"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Невалидна колона (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3305,12 +3388,12 @@ msgstr "Конекции"
msgid "Copy table to (database.table):"
msgstr "Копиране на таблица (база от данни.таблица):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Таблица %s беше копирана в %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Не може да се копира таблицата към себе си!"
@@ -3578,11 +3661,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Изтриване на базите от данни които имат имена като тези на потребителите."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Схемата(дъмп) беше записана във файл %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "динамичен"
@@ -3653,10 +3731,6 @@ msgstr "Версия на Excel"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Разширени INSERT-и"
@@ -3675,30 +3749,10 @@ msgstr "Провалили се опити"
msgid "Field %s has been dropped"
msgstr "Полето %s беше изтрито"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Полетата са оградени с"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Представка на специалните знаци"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Полета"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Полетата завършват с"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Файлът %s вече съществува на сървъра, сменете името на файла или включете "
-"опцията за препокриване."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3801,10 +3855,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Трябва да изберете поне една Колона за показване"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Иврит"
@@ -3978,35 +4028,11 @@ msgstr "Вътрешни релации"
msgid "Column count has to be larger than zero."
msgstr "Броя на колоните трябва да е по-голям от нула."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Невалидна колона (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Трябва да добавите поне едно поле."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4017,7 +4043,7 @@ msgstr ""
msgid "Japanese"
msgstr "Японски"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4100,10 +4126,6 @@ msgstr "Дължина/Стойност*"
msgid "Number of rows per page"
msgstr "редове на страница"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Редовете завършват с"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Литовски"
@@ -4217,12 +4239,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Преместване на таблица към (база от данни.таблица):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Таблицата %s беше преместена към %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Не може да се премести таблицата към себе си!"
@@ -4291,11 +4313,6 @@ msgstr "Няма"
msgid "This format has no options"
msgstr "Този формат няма опции"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Уеб сървъра няма права за запис на файла %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "В момента не разполагате с достатъчно права за да се намирате тук!"
@@ -4304,11 +4321,6 @@ msgstr "В момента не разполагате с достатъчно п
msgid "No rows selected"
msgstr "Няма върнати редове"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Недостатъчно свободно пространство за записване на файла %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4952,7 +4964,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4987,7 +4999,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5987,7 +5999,8 @@ msgstr "Таблица %s вече съществува!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Избраните потребители бяха изтрити успешно."
@@ -6002,7 +6015,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Името на таблицата е празно!"
@@ -6558,12 +6571,6 @@ msgstr ""
msgid "wildcard"
msgstr "знак за заместване"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index e23caefb3..92d53bd9f 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla \n"
@@ -335,7 +335,8 @@ msgstr "Enabled"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -393,8 +394,8 @@ msgstr "পাতার আকার"
msgid "Edit PDF Pages"
msgstr "পিডিএফ পাতাগুলো সম্পাদনা কর"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "No tables found in database."
@@ -445,13 +446,17 @@ msgstr "Last check"
msgid "%s table(s)"
msgstr "%s table(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Your SQL query has been executed successfully"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "আপনাকে প্রদর্শন করার জন্য কমপক্ষে একটি কলাম নির্দিষ্ট করতে হবে"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -573,7 +578,7 @@ msgid "Browse"
msgstr "ব্রাউজ করুন"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -702,20 +707,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s MySQL সার্ভার এর ডিফল্ট ষ্টোরেজ ইঞ্জিন"
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "সব পরীক্ষা করুন"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -727,7 +732,7 @@ msgid "Check tables having overhead"
msgstr "ওভারহেড সহ টেবিল পরীক্ষা কর"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -755,8 +760,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -848,6 +853,32 @@ msgstr "টেবিল পরীক্ষা কর"
msgid "Database Log"
msgstr "ডাটাবেজ"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Selected export type has to be saved in file!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Insufficient space to save the file %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"File %s already exists on server, change filename or check overwrite option."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "The web server does not have permission to save the file %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে"
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1044,20 +1075,20 @@ msgid "Choose field to display"
msgstr "প্রদর্শনের জন্য ক্ষেত্র পছন্দ কর"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "ডাটা"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "পূর্ববর্তী"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1065,96 +1096,96 @@ msgid "Next"
msgstr "পরবর্তী"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "মোট"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "বাইনারী"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "মার্চ"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "এপ্রিল"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "মে"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "জুন"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "জুলাই"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "আগস্ট"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "অক্টোবর"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "জানুয়ারী"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "ফেব্রুয়ারী"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "মার্চ"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "এপ্রিল"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1162,176 +1193,176 @@ msgid "May"
msgstr "মে"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "জুন"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "জুলাই"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "আগস্ট"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "সেপ্টেমবর"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "অক্টোবর"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "নভেম্বর"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "ডিসেম্বর"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "রবিবার"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "সোমবার"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "মঙ্গলবার"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "শুক্রবার"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "রবিবার"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "সোমবার"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "মঙ্গলবার"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "বুধবার"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "বৃহস্পতিবার"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "শুক্রবার"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "শনিবার"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "রবিবার"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "সোমবার"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "মঙ্গলবার"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "বুধবার"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "বৃহস্পতিবার"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "শুক্রবার"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "শনিবার"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2039,6 +2070,7 @@ msgstr "তৈরী করুন"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "কোন সুবিধা নাই"
@@ -2329,46 +2361,46 @@ msgstr "Execute bookmarked query"
msgid "The row has been deleted"
msgstr "সারিটি মুছে ফেলা হয়েছে"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "মোট"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Change"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Print view (with full texts)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "লিংক পাওয়া যায়নি"
@@ -2853,6 +2885,56 @@ msgstr "Structure"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Invalid parameter for CSV import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Fields terminated by"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Fields enclosed by"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Fields escaped by"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Lines terminated by"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Invalid column (%s) specified!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Invalid format of CSV input on line %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Invalid field count in CSV input on line %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "This plugin does not support compressed imports!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3337,12 +3419,12 @@ msgstr "সংযোগসমূহ"
msgid "Copy table to (database.table):"
msgstr "Copy table to (database.table):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "%s টেবিল %s তে কপি করা হয়েছে"
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Can't copy table to same one!"
@@ -3613,11 +3695,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "ব্যাবহারকারীর নামে নাম এমন ডাটাবেজসমূহ মুছে ফেল"
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে"
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "ডায়নামিক"
@@ -3689,10 +3766,6 @@ msgstr "Excel edition"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Selected export type has to be saved in file!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Extended inserts"
@@ -3711,29 +3784,10 @@ msgstr "ব্যার্থ হওয়া চেষ্টাসমূহ"
msgid "Field %s has been dropped"
msgstr "%s ক্ষেত্র মুছে ফেলা হয়েছে"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Fields enclosed by"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Fields escaped by"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "ক্ষেত্রসমূহ"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Fields terminated by"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"File %s already exists on server, change filename or check overwrite option."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3836,10 +3890,6 @@ msgstr "Handler"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "আপনাকে প্রদর্শন করার জন্য কমপক্ষে একটি কলাম নির্দিষ্ট করতে হবে"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "হীব্রূ"
@@ -4013,35 +4063,11 @@ msgstr "Internal relations"
msgid "Column count has to be larger than zero."
msgstr "Column count has to be larger than zero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Invalid column (%s) specified!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Invalid field count in CSV input on line %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Invalid format of CSV input on line %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Invalid parameter for CSV import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "You have to add at least one field."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "This plugin does not support compressed imports!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4052,7 +4078,7 @@ msgstr "Invalid server index: \"%s\""
msgid "Japanese"
msgstr "Japanese"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4134,10 +4160,6 @@ msgstr "Length/Values"
msgid "Number of rows per page"
msgstr "Number of rows per page"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Lines terminated by"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lithuanian"
@@ -4255,12 +4277,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Move table to (database.table):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Table %s has been moved to %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Can't move table to same one!"
@@ -4329,11 +4351,6 @@ msgstr "কোনটিই নয়"
msgid "This format has no options"
msgstr "This format has no options"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "The web server does not have permission to save the file %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "You don't have sufficient privileges to be here right now!"
@@ -4342,11 +4359,6 @@ msgstr "You don't have sufficient privileges to be here right now!"
msgid "No rows selected"
msgstr "No rows selected"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Insufficient space to save the file %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4982,7 +4994,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5017,7 +5029,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6117,7 +6129,8 @@ msgstr "Table %s already exists!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "The selected users have been deleted successfully."
@@ -6132,7 +6145,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "টেবিল এর নাম পূরন করা হয়নি"
@@ -6696,12 +6709,6 @@ msgstr ""
msgid "wildcard"
msgstr "wildcard"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/bs.po b/po/bs.po
index 211538857..4c4f7a407 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
@@ -339,7 +339,8 @@ msgstr "Omogućeno"
msgid "Collation"
msgstr "Sortiranje"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -397,8 +398,8 @@ msgstr "Dimenzije papira"
msgid "Edit PDF Pages"
msgstr "Izmena PDF strana"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Tabele nisu pronađene u bazi."
@@ -449,13 +450,17 @@ msgstr "Posljednja provjera"
msgid "%s table(s)"
msgstr "%s tabela"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Vaš SQL upit je uspešno izvršen"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Morate izabrati bar jednu kolonu za prikaz"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -577,7 +582,7 @@ msgid "Browse"
msgstr "Pregled"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -675,7 +680,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -707,20 +712,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Označeno:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -732,7 +737,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -760,8 +765,8 @@ msgid "Analyze table"
msgstr "Analiziraj tabelu"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -850,6 +855,33 @@ msgstr "Provjeri tabelu"
msgid "Database Log"
msgstr "Baza podataka"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Nedovoljno prostora za snimanje datoteke %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Datoteka %s već postoji na serveru, promijenite ime datoteke ili uključite "
+"opciju prepisivanja."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Sadržaj baze je sačuvan u fajl %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1037,21 +1069,21 @@ msgid "Choose field to display"
msgstr "Izaberi polja za prikaz"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "nema"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodna"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1059,96 +1091,96 @@ msgid "Next"
msgstr "Slijedeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "maj"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1156,176 +1188,176 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2020,6 +2052,7 @@ msgstr "Napravi"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Nema privilegija"
@@ -2304,46 +2337,46 @@ msgstr "Izvrši upamćen upit"
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Obustavi"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "u upitu"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Prikaz zapisa"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Promijeni"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -2811,6 +2844,56 @@ msgstr "Struktura"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Polja razdvojena sa"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Polja ograničena sa"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Escape karakter "
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linije se završavaju sa"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3296,12 +3379,12 @@ msgstr "Konekcije"
msgid "Copy table to (database.table):"
msgstr "Kopiraj tabelu u (baza.tabela):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabela %s je kopirana u %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Ne mogu da kopiram tabelu u samu sebe!"
@@ -3569,11 +3652,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Odbaci baze koje se zovu isto kao korisnici."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Sadržaj baze je sačuvan u fajl %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamički"
@@ -3643,10 +3721,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Prošireni INSERT"
@@ -3665,30 +3739,10 @@ msgstr "Neuspelih pokušaja"
msgid "Field %s has been dropped"
msgstr "Polje %s je obrisano"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Polja ograničena sa"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Escape karakter "
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Polja"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Polja razdvojena sa"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Datoteka %s već postoji na serveru, promijenite ime datoteke ili uključite "
-"opciju prepisivanja."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3791,10 +3845,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Morate izabrati bar jednu kolonu za prikaz"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Jevrejski"
@@ -3968,35 +4018,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4007,7 +4033,7 @@ msgstr ""
msgid "Japanese"
msgstr "Japanski"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4090,10 +4116,6 @@ msgstr "Dužina/Vrijednost*"
msgid "Number of rows per page"
msgstr "Broj redova po strani"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linije se završavaju sa"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litvanski"
@@ -4204,12 +4226,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Pomjeri tabelu u (baza.tabela):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabela %s je pomjerena u %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Ne mogu da premjestim tabelu u samu sebe!"
@@ -4278,11 +4300,6 @@ msgstr "nema"
msgid "This format has no options"
msgstr "Ne postoje opcije za ovaj format"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Nije Vam dozvoljeno da budete ovdje!"
@@ -4291,11 +4308,6 @@ msgstr "Nije Vam dozvoljeno da budete ovdje!"
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Nedovoljno prostora za snimanje datoteke %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4934,7 +4946,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4969,7 +4981,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5959,7 +5971,8 @@ msgstr "Korisnik %s već postoji!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Izabrani korisnici su uspješno obrisani."
@@ -5974,7 +5987,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Ima tabele je prazno!"
@@ -6521,12 +6534,6 @@ msgstr ""
msgid "wildcard"
msgstr "Džoker"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index f977b0aa1..10822af87 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan \n"
@@ -334,7 +334,8 @@ msgstr "Activa"
msgid "Collation"
msgstr "Ordenació"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "Tamany de paper"
msgid "Edit PDF Pages"
msgstr "Edita pàgines PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Base de dades sense taules."
@@ -444,13 +445,17 @@ msgstr "Darrera comprovació"
msgid "%s table(s)"
msgstr "%s taula(es)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "La vostra comanda SQL ha estat executada amb èxit"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Has de triar al menys una columna per mostrar"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -572,7 +577,7 @@ msgid "Browse"
msgstr "Navega"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -670,7 +675,7 @@ msgstr "El seguiment està actiu."
msgid "Tracking is not active."
msgstr "El seguiment no està actiu."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -702,20 +707,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s és el motor d'emmagatzematge per defecte en aquest servidor MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Amb marca:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Marcar-ho tot"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -727,7 +732,7 @@ msgid "Check tables having overhead"
msgstr "Comprova taules desfragmentades"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -755,8 +760,8 @@ msgid "Analyze table"
msgstr "Analitza la taula"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -840,6 +845,33 @@ msgstr "Segueix taula"
msgid "Database Log"
msgstr "Registre de la base de dades"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "El tipus d'exportació triat s'ha de desar en un arxiu!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "No hi ha prou espai per desar l'arxiu %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"L'arxiu %s ja existeix al servidor, canvia el nom o marca l'opció de "
+"sobreescriure."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "El servidor web no té permisos per a desar l'arxiu %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1038,21 +1070,21 @@ msgid "Choose field to display"
msgstr "Tria el camp a mostrar"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Donacions"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1060,96 +1092,96 @@ msgid "Next"
msgstr "Següent"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binari "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Oct"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Gen"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1157,178 +1189,178 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Diu"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dll"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Dma"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Div"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Diu"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Dll"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Dma"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Dcr"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Dij"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Div"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Dis"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Diu"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dll"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Dma"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Dcr"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Dij"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Div"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Dis"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "en ús"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2043,6 +2075,7 @@ msgstr "Crea"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Sense permisos"
@@ -2339,46 +2372,46 @@ msgstr "Executa una consulta desada"
msgid "The row has been deleted"
msgstr "S'ha esborrat la fila"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Finalitzar"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "en consulta"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Mostrant registres: "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tarda %01.4f seg"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Canvi"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operacions de resultats de consultes"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Vista d'impresió (amb texts sencers)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "No s'ha trobat l'enllaç "
@@ -2889,6 +2922,58 @@ msgstr "estructura"
msgid "Go to view"
msgstr "Vés a la vista"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Paràmetre incorrecte per importació CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Camps acabats per"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Camps englobats per"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Camps amb marca d'escapada"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Línies acabades amb"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "S'ha especificat una columna incorrecta (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Format incorrecte a l'entrada CSV a la línia %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Comptador de camps incorrecte en l'entrada CSV a la línia %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Aquesta extensió no suporta importacions comprimides!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"El fitxer XML especificat era incorrecte o incomplet. Si us plau, arreglar-"
+"lo i torna a intentar-ho."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3371,12 +3456,12 @@ msgstr "Connexions"
msgid "Copy table to (database.table):"
msgstr "Còpia taula a (base-de-dades.taula):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "La taula %s s'ha copiat a %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "No es pot copiar la taula sobre ella mateixa"
@@ -3644,11 +3729,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Esborra les bases de dades que tenen els mateixos noms que els usuaris."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinàmic"
@@ -3717,10 +3797,6 @@ msgstr "Edició per Excel"
msgid "Export/Import to scale"
msgstr "Exporta/Importa a escala"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "El tipus d'exportació triat s'ha de desar en un arxiu!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Insercions ampliades"
@@ -3739,30 +3815,10 @@ msgstr "Intents erronis"
msgid "Field %s has been dropped"
msgstr "S'ha esborrat el camp %s"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Camps englobats per"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Camps amb marca d'escapada"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Camps"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Camps acabats per"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"L'arxiu %s ja existeix al servidor, canvia el nom o marca l'opció de "
-"sobreescriure."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Arxius"
@@ -3865,10 +3921,6 @@ msgstr ""
"Les taules de destinació seleccionades s'han sincronitzat amb les taules "
"d'origen."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Has de triar al menys una columna per mostrar"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebreu"
@@ -4046,35 +4098,11 @@ msgstr "Relacions internes"
msgid "Column count has to be larger than zero."
msgstr "El comptador de columnes ha de ser més gran que zero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "S'ha especificat una columna incorrecta (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Comptador de camps incorrecte en l'entrada CSV a la línia %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Format incorrecte a l'entrada CSV a la línia %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Paràmetre incorrecte per importació CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Has d'afegir al menys un camp."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Aquesta extensió no suporta importacions comprimides!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4085,7 +4113,7 @@ msgstr "Index de servidor invàlid: \"%s\""
msgid "Japanese"
msgstr "Japonès"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4167,10 +4195,6 @@ msgstr "Longitud/Valors*"
msgid "Number of rows per page"
msgstr "registres per pàgina"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Línies acabades amb"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lituà "
@@ -4287,12 +4311,12 @@ msgstr "Menú Mou"
msgid "Move table to (database.table):"
msgstr "Mou la taula a (base-de-dades.taula):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Taula %s moguda a %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "No es pot moure la taula sobre ella mateixa!"
@@ -4362,11 +4386,6 @@ msgstr "Cap"
msgid "This format has no options"
msgstr "Aquest format no té opcions"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "El servidor web no té permisos per a desar l'arxiu %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "No tens prou permisos per visualitzar aquesta informació!"
@@ -4375,11 +4394,6 @@ msgstr "No tens prou permisos per visualitzar aquesta informació!"
msgid "No rows selected"
msgstr "No s'han triat arxius"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "No hi ha prou espai per desar l'arxiu %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5033,7 +5047,7 @@ msgstr "Gestió d'errors:"
msgid "IO Thread %s only"
msgstr "Només fils IO %s"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "El fil IO de l'esclau IO no va!"
@@ -5070,7 +5084,7 @@ msgstr "Salta el següent"
msgid "Slave replication"
msgstr "Replicació de l'esclau"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "El fil SQL de l'esclau SQL no va!"
@@ -6194,7 +6208,8 @@ msgstr "La taula %s ja existeix!"
msgid "Alter column(s)"
msgstr "Canvia columna(es)"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "S'ha modificat la taula %1$s correctament"
@@ -6209,7 +6224,7 @@ msgstr "Aplica index(s)"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Vols eliminar totes les files anteriors de les taules de destinació?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "El nom de la taula és buit!"
@@ -6776,14 +6791,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "comodins"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"El fitxer XML especificat era incorrecte o incomplet. Si us plau, arreglar-"
-"lo i torna a intentar-ho."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Exporta contingut"
diff --git a/po/cs.po b/po/cs.po
index 70c8f9ba3..92af8476a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,14 +4,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-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-05-10 14:24+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"
@@ -331,7 +331,8 @@ msgstr "Zapnout"
msgid "Collation"
msgstr "Porovnávání"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -389,8 +390,8 @@ msgstr "Velikost stránky"
msgid "Edit PDF Pages"
msgstr "Upravit PDF stránky"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "V databázi nebyla nalezena žádná tabulka."
@@ -441,13 +442,17 @@ msgstr "Poslední kontrola"
msgid "%s table(s)"
msgstr "%s tabulek"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Váš SQL-dotaz byl úspěšně vykonán"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Musíte zvolit alespoň jeden sloupec, který chcete zobrazit"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -569,7 +574,7 @@ msgid "Browse"
msgstr "Projít"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -667,7 +672,7 @@ msgstr "Sledování je zapnuté."
msgid "Tracking is not active."
msgstr "Sledování není zapnuté."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -699,20 +704,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je výchozí úložiště na tomto MySQL serveru."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Zaškrtnuté:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Zaškrtnout vše"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -724,7 +729,7 @@ msgid "Check tables having overhead"
msgstr "Zaškrtnout neoptimální"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -752,8 +757,8 @@ msgid "Analyze table"
msgstr "Analyzovat tabulku"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -837,6 +842,33 @@ msgstr "Sledovat tabulku"
msgid "Database Log"
msgstr "Historie databáze"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Zvolený export musí být uložen do souboru!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Nedostatek místa pro uložení souboru %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Soubor %s již na serveru existuje, změňte jméno souboru, nebo zvolte "
+"přepsání souboru."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Web server nemá oprávnění uložit výpis do souboru %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Výpis byl uložen do souboru %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1032,17 +1064,17 @@ msgid "Choose field to display"
msgstr "Zvolte které sloupce zobrazit"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr "Hotovo"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr "Předchozí"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1050,231 +1082,231 @@ msgid "Next"
msgstr "Další"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr "Dnešek"
-#: js/messages.php:81
+#: js/messages.php:82
msgid "January"
msgstr "leden"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr "únor"
-#: js/messages.php:83
+#: js/messages.php:84
msgid "March"
msgstr "březen"
-#: js/messages.php:84
+#: js/messages.php:85
msgid "April"
msgstr "duben"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "květen"
-#: js/messages.php:86
+#: js/messages.php:87
msgid "June"
msgstr "červen"
-#: js/messages.php:87
+#: js/messages.php:88
msgid "July"
msgstr "červenec"
-#: js/messages.php:88
+#: js/messages.php:89
msgid "August"
msgstr "srpen"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr "září"
-#: js/messages.php:90
+#: js/messages.php:91
msgid "October"
msgstr "říjen"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr "listopad"
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr "prosinec"
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "led"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "úno"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "bře"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "dub"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
msgctxt "Short month name"
msgid "May"
msgstr "kvě"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "čen"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "čec"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "srp"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "zář"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "říj"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "lis"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "pro"
-#: js/messages.php:121
+#: js/messages.php:122
msgid "Sunday"
msgstr "Neděle"
-#: js/messages.php:122
+#: js/messages.php:123
msgid "Monday"
msgstr "Pondělí"
-#: js/messages.php:123
+#: js/messages.php:124
msgid "Tuesday"
msgstr "Úterý"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr "Středa"
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr "Čtvrtek"
-#: js/messages.php:126
+#: js/messages.php:127
msgid "Friday"
msgstr "Pátek"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr "Sobota"
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Úte"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Stř"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Čtv"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pát"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
msgid "Tu"
msgstr "Út"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
msgid "Th"
msgstr "Čt"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
msgid "Fr"
msgstr "Pá"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr "Týd"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr "Hodiny"
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr "Minuty"
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr "Sekundy"
@@ -1980,6 +2012,7 @@ msgstr "Vytvořit"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Nemáte oprávnění"
@@ -2271,46 +2304,46 @@ msgstr "Spustit oblíbený dotaz"
msgid "The row has been deleted"
msgstr "Řádek byl smazán"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Ukončit"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "v dotazu"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Zobrazeny záznamy"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "celkem"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "dotaz trval %01.4f sekund"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Změnit"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operace s výsledky dotazu"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Náhled pro tisk (s kompletními texty)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Odkaz nenalezen"
@@ -2810,9 +2843,60 @@ msgstr "struktura"
msgid "Go to view"
msgstr "Přejít na podhled"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Neznámý parametr pro import CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Sloupce oddělené"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Názvy sloupců uzavřené"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Názvy sloupců escapovány"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Řádky ukončené"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Byl zadán chybný sloupec (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Chybný formát CSV dat na řádku %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Chybný počet položek v CSV datech na řádku %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Tento plugin nepodporuje komprimované soubory!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Zadaný XML soubor je buď poškozený nebo nekompletní. Prosím opravte ho a "
+"zkuste to znovu."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
-#| msgid "encoding conversion"
msgid "Encoding conversion"
msgstr "Převod znakové sady"
@@ -3284,12 +3368,12 @@ msgstr "Připojení"
msgid "Copy table to (database.table):"
msgstr "Kopírovat tabulku do (databáze.tabulka):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabulka %s byla zkopírována do %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Nelze kopírovat tabulku na sebe samu!"
@@ -3555,11 +3639,6 @@ msgstr "Nepoužívat AUTO_INCREMENT pro nulové hodnoty"
msgid "Drop the databases that have the same names as the users."
msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Výpis byl uložen do souboru %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamický"
@@ -3628,10 +3707,6 @@ msgstr "Verze Excelu"
msgid "Export/Import to scale"
msgstr "Exportovat/Importovat v měřítku"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Zvolený export musí být uložen do souboru!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Rozšířené inserty"
@@ -3650,30 +3725,10 @@ msgstr "Nepovedených pokusů"
msgid "Field %s has been dropped"
msgstr "Sloupec %s byl odstraněn"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Názvy sloupců uzavřené"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Názvy sloupců escapovány"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Sloupce"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Sloupce oddělené"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Soubor %s již na serveru existuje, změňte jméno souboru, nebo zvolte "
-"přepsání souboru."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Soubory"
@@ -3773,10 +3828,6 @@ msgstr "Obslužné rutiny"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Vybrané cílové tabulky byly synchronizovány se zdrojovými."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Musíte zvolit alespoň jeden sloupec, který chcete zobrazit"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebrejština"
@@ -3950,35 +4001,11 @@ msgstr "Interní relace"
msgid "Column count has to be larger than zero."
msgstr "Počet sloupců musí být větší než nula."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Byl zadán chybný sloupec (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Chybný počet položek v CSV datech na řádku %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Chybný formát CSV dat na řádku %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Neznámý parametr pro import CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Musíte přidat alespoň jeden sloupec."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Tento plugin nepodporuje komprimované soubory!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3989,7 +4016,7 @@ msgstr "Chybný index serveru: „%s“"
msgid "Japanese"
msgstr "Japonština"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4074,10 +4101,6 @@ msgstr "Délka/Množina"
msgid "Number of rows per page"
msgstr "záznamů na stránku"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Řádky ukončené"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litevština"
@@ -4193,12 +4216,12 @@ msgstr "Přesun menu"
msgid "Move table to (database.table):"
msgstr "Přesunout tabulku do (databáze.tabulka):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabulka %s byla přesunuta do %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Nelze přesunout tabulku na sebe samu!"
@@ -4268,11 +4291,6 @@ msgstr "Žádná"
msgid "This format has no options"
msgstr "Tento formát nemá žádná nastavení"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Web server nemá oprávnění uložit výpis do souboru %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Nemáte dostatečná práva na provedení této akce!"
@@ -4281,11 +4299,6 @@ msgstr "Nemáte dostatečná práva na provedení této akce!"
msgid "No rows selected"
msgstr "Nebyl vybrán žádný řádek"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Nedostatek místa pro uložení souboru %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4932,7 +4945,7 @@ msgstr "Práce s chybami:"
msgid "IO Thread %s only"
msgstr "%s jen IO vlákno"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "IO vlákno pro podřízený server neběží!"
@@ -4969,7 +4982,7 @@ msgstr "Přeskočit dalších"
msgid "Slave replication"
msgstr "Replikace podřízeného"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "SQL vlákno pro podřízený server neběží!"
@@ -6065,7 +6078,8 @@ msgstr "Tabulka %s již existuje!"
msgid "Alter column(s)"
msgstr "Změnit sloupce"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabulka %1$s byla úspěšně změněna"
@@ -6080,7 +6094,7 @@ msgstr "Applikovat indexy"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Chcete odstranit všechny stávající řídky z cílových tabulek?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Jméno tabulky je prázdné!"
@@ -6645,14 +6659,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "maska"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Zadaný XML soubor je buď poškozený nebo nekompletní. Prosím opravte ho a "
-"zkuste to znovu."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Exportovat obsah"
diff --git a/po/da.po b/po/da.po
index 415fe4394..1ae07f1c9 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish \n"
@@ -334,7 +334,8 @@ msgstr ""
msgid "Collation"
msgstr "Kollation (Collation)"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "Papirstørrelse"
msgid "Edit PDF Pages"
msgstr "Redigér PDF-sider"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Ingen tabeller fundet i databasen."
@@ -444,13 +445,17 @@ msgstr "Sidste check"
msgid "%s table(s)"
msgstr "%s tabel(ler)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Din SQL-forespørgsel blev udført korrekt"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Du skal vælge mindst en kolonne der skal vises"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -572,7 +577,7 @@ msgid "Browse"
msgstr "Vis"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -670,7 +675,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -701,20 +706,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard datalageret på denne MySQL-server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Med det markerede:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Afmærk alt"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -726,7 +731,7 @@ msgid "Check tables having overhead"
msgstr "Check tabeller der har overhead"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -754,8 +759,8 @@ msgid "Analyze table"
msgstr "Analysér tabel"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -839,6 +844,33 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Valgte eksporttype skal gemmes som fil!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Utilstrækkeligt plads til at gemme filen %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Filen %s findes allerede på serveren, lav filnavnet om eller tillad at der "
+"overskrives."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Webserveren har ikke tilladelse til at gemme filen %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump er blevet gemt i filen %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1036,21 +1068,21 @@ msgid "Choose field to display"
msgstr "Vælg felt der skal vises"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Ingen"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1058,96 +1090,96 @@ msgid "Next"
msgstr "Næste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binært "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "maj"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1155,176 +1187,176 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "søn"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "man"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "tir"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "fre"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "søn"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "man"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "tir"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "ons"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "tor"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "fre"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "lør"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "søn"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "man"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "tir"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ons"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "tor"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "fre"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "lør"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "i brug"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2031,6 +2063,7 @@ msgstr "Opret"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Ingen privilegier"
@@ -2320,46 +2353,46 @@ msgstr "Udfør forespørgsel iflg. bogmærke"
msgid "The row has been deleted"
msgstr "Rækken er slettet!"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Dræb (Kill)"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "i forespørgsel"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Viser poster "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Forepørgsel tog %01.4f sek"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Ændre"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Forespørgselsresultat operationer"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Udskrift-visning (med fulde tekster)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link ikke fundet"
@@ -2836,6 +2869,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Ugyldigt parameter for CSV-import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Felter afsluttet med"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Felter indrammet med"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Felter escaped med"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linjer afsluttet med"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Ugyldig kolonne (%s) angivet!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Ugyldigt format for CSV-input på linie %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Ugyldigt feltantal i CSV-input på linie %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Denne plugin understøtter ikke komprimeret import!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3312,12 +3395,12 @@ msgstr "Forbindelser"
msgid "Copy table to (database.table):"
msgstr "Kopier tabel til (database.tabel):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabellen %s er nu kopieret til: %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Kan ikke kopiere tabellen til den samme!"
@@ -3583,11 +3666,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Drop databaser der har samme navne som brugernes."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump er blevet gemt i filen %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamisk"
@@ -3656,10 +3734,6 @@ msgstr "Excel-udgave"
msgid "Export/Import to scale"
msgstr "Eksporter/Importer til skala"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Valgte eksporttype skal gemmes som fil!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Udvidede inserts"
@@ -3678,30 +3752,10 @@ msgstr "Mislykkede forsøg"
msgid "Field %s has been dropped"
msgstr "Felt %s er slettet"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Felter indrammet med"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Felter escaped med"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Felter"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Felter afsluttet med"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Filen %s findes allerede på serveren, lav filnavnet om eller tillad at der "
-"overskrives."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Filer"
@@ -3802,10 +3856,6 @@ msgstr "Handler"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Du skal vælge mindst en kolonne der skal vises"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebræisk"
@@ -3978,35 +4028,11 @@ msgstr "Interne relationer"
msgid "Column count has to be larger than zero."
msgstr "Kolonneantal skal være større end nul."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Ugyldig kolonne (%s) angivet!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Ugyldigt feltantal i CSV-input på linie %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Ugyldigt format for CSV-input på linie %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Ugyldigt parameter for CSV-import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Du skal tilføje mindst ét felt."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Denne plugin understøtter ikke komprimeret import!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4017,7 +4043,7 @@ msgstr "Ugyldigt server indeks: \"%s\""
msgid "Japanese"
msgstr "Japansk"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4099,10 +4125,6 @@ msgstr "Længde/Værdi*"
msgid "Number of rows per page"
msgstr "poster pr. side"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linjer afsluttet med"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litauisk"
@@ -4220,12 +4242,12 @@ msgstr "Flyt Menu"
msgid "Move table to (database.table):"
msgstr "Flyt tabel til (database.tabel):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabel %s er flyttet til %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Kan ikke flytte tabellen til den samme!"
@@ -4295,11 +4317,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Dette format har ingen indstillinger"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Webserveren har ikke tilladelse til at gemme filen %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Du har ikke tilstrækkelige rettigheder til at være her!"
@@ -4308,11 +4325,6 @@ msgstr "Du har ikke tilstrækkelige rettigheder til at være her!"
msgid "No rows selected"
msgstr "Ingen rækker valgt"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Utilstrækkeligt plads til at gemme filen %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4940,7 +4952,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4975,7 +4987,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6082,7 +6094,8 @@ msgstr "Table %s already exists!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -6097,7 +6110,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Intet tabelnavn!"
@@ -6661,12 +6674,6 @@ msgstr ""
msgid "wildcard"
msgstr "jokertegn"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/de.po b/po/de.po
index a96ea127b..b8c22a78d 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-23 21:07+0200\n"
"Last-Translator: \n"
"Language-Team: german \n"
@@ -336,7 +336,8 @@ msgstr "Aktivieren"
msgid "Collation"
msgstr "Kollation"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Papiergröße"
msgid "Edit PDF Pages"
msgstr "PDF-Seiten bearbeiten"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Es wurden keine Tabellen in der Datenbank gefunden."
@@ -446,13 +447,17 @@ msgstr "Letzter Check am"
msgid "%s table(s)"
msgstr "%s Tabellen"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt."
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Anzeigen"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -673,7 +678,7 @@ msgstr "Tracking ist aktiviert."
msgid "Tracking is not active."
msgstr "Tracking ist aktiviert."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -706,20 +711,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "Neue Tabellen werden standardmäßig im Format %s angelegt."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "markierte:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Alle auswählen"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -731,7 +736,7 @@ msgid "Check tables having overhead"
msgstr "Tabellen m. Überhang ausw."
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -759,8 +764,8 @@ msgid "Analyze table"
msgstr "Analysiere Tabelle"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -846,6 +851,33 @@ msgstr "Verfolge Tabelle"
msgid "Database Log"
msgstr "Datenbank"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Der gewählte Export-Typ kann nur als Datei exportiert werden!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Zu wenig Speicherplatz um die Datei %s zu speichern."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Die Datei %s besteht bereits auf dem Server. Bitte ändern Sie den Dateinamen "
+"oder wählen Sie die Überschreibungs-Option."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump (Schema) wurde in Datei %s gespeichert."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1044,21 +1076,21 @@ msgid "Choose field to display"
msgstr "Anzuzeigende Spalte bestimmen"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Spenden"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Vorherige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1066,96 +1098,96 @@ msgid "Next"
msgstr "Nächste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Insgesamt"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binär"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "März"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "April"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Juni"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Juli"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "August"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Oktober"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Januar"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Februar"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "März"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "April"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1163,178 +1195,178 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Juni"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Juli"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "August"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "September"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Oktober"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "November"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dezember"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "So"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Mo"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Di"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fr"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "So"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Mo"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Mi"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Fr"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sa"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mi"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in Benutzung"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2064,6 +2096,7 @@ msgstr "Anlegen"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Keine Rechte"
@@ -2357,46 +2390,46 @@ msgstr "Gespeicherte SQL-Anfrage ausführen"
msgid "The row has been deleted"
msgstr "Die Zeile wurde gelöscht."
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Beenden"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "in der Abfrage"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Zeige Datensätze "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "insgesamt"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "die Abfrage dauerte %01.4f sek."
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Ändern"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operationen für das Abfrageergebnis"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Druckansicht (vollständige Textfelder)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Der Verweis wurde nicht gefunden."
@@ -2901,6 +2934,56 @@ msgstr "Struktur"
msgid "Go to view"
msgstr "Gehe zum View"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Ungültiger Parameter für CSV-Import: \"%s\""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Felder getrennt mit"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Felder eingeschlossen von"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Felder escaped von"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Zeilen getrennt mit"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Ungültige Spalte angegeben (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Ungültiges Format in Zeile %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Ungültige Anzahl an Feldern in Zeile %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Dieses Plugin unterstützt keine Kompression!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3380,12 +3463,12 @@ msgstr "Verbindungen"
msgid "Copy table to (database.table):"
msgstr "Kopiere Tabelle nach (Datenbank.Tabellenname):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabelle %s wurde nach %s kopiert."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Tabelle kann nicht mit gleichem Namen kopiert werden!"
@@ -3661,11 +3744,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Die gleichnamigen Datenbanken löschen."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump (Schema) wurde in Datei %s gespeichert."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamisch"
@@ -3734,10 +3812,6 @@ msgstr "Excel-Ausgabe"
msgid "Export/Import to scale"
msgstr "Export/Import skalieren"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Der gewählte Export-Typ kann nur als Datei exportiert werden!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Erweiterte 'INSERT's"
@@ -3756,30 +3830,10 @@ msgstr "Fehlgeschlagen"
msgid "Field %s has been dropped"
msgstr "Spalte %s wurde entfernt."
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Felder eingeschlossen von"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Felder escaped von"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Felder"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Felder getrennt mit"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Die Datei %s besteht bereits auf dem Server. Bitte ändern Sie den Dateinamen "
-"oder wählen Sie die Überschreibungs-Option."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Dateien"
@@ -3884,10 +3938,6 @@ msgstr "Handler"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Bitte wählen Sie mindestens eine anzuzeigende Spalte"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebräisch"
@@ -4065,35 +4115,11 @@ msgstr "Interne Beziehungen"
msgid "Column count has to be larger than zero."
msgstr "Die Spaltenanzahl muss größer als 0 sein."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Ungültige Spalte angegeben (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Ungültige Anzahl an Feldern in Zeile %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Ungültiges Format in Zeile %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Ungültiger Parameter für CSV-Import: \"%s\""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Sie müssen mindestens ein Feld hinzufügen."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Dieses Plugin unterstützt keine Kompression!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4104,7 +4130,7 @@ msgstr "Ungültige Server-Nummer: \"%s\""
msgid "Japanese"
msgstr "Japanisch"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4186,10 +4212,6 @@ msgstr "Länge/Set"
msgid "Number of rows per page"
msgstr "Einträge pro Seite"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Zeilen getrennt mit"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litauisch"
@@ -4309,12 +4331,12 @@ msgstr "Verschiebe Menü"
msgid "Move table to (database.table):"
msgstr "Verschiebe Tabelle nach (Datenbank.Tabellenname):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabelle %s wurde nach %s verschoben."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Tabelle kann nicht mit gleichem Namen verschoben werden!"
@@ -4384,11 +4406,6 @@ msgstr "Kein"
msgid "This format has no options"
msgstr "Für dieses Format sind keine Optionen vorhanden"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Der Webserver hat keine Schreibrechte um die Datei %s zu speichern."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Sie haben nicht genug Rechte um fortzufahren!"
@@ -4397,11 +4414,6 @@ msgstr "Sie haben nicht genug Rechte um fortzufahren!"
msgid "No rows selected"
msgstr "Es wurden keine Datensätze ausgewählt."
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Zu wenig Speicherplatz um die Datei %s zu speichern."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5049,7 +5061,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5085,7 +5097,7 @@ msgstr ""
msgid "Slave replication"
msgstr "Serverkonfiguration"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6228,7 +6240,8 @@ msgstr "Die Tabelle %s existiert bereits!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Die Tabelle %1$s wurde erfolgreich geändert"
@@ -6243,7 +6256,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Der Tabellenname ist leer!"
@@ -6819,12 +6832,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "Platzhalter"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/el.po b/po/el.po
index c529b7f3b..0a16f212c 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal \n"
"Language-Team: greek \n"
@@ -336,7 +336,8 @@ msgstr "Ενεργοποίηση"
msgid "Collation"
msgstr "Σύνθεση"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Μέγεθος χαρτιού"
msgid "Edit PDF Pages"
msgstr "Αλλαγή σελίδων PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Δεν βρέθηκαν Πίνακες στη βάση δεδομένων."
@@ -446,13 +447,17 @@ msgstr "τελευταίος έλεγχος"
msgid "%s table(s)"
msgstr "%s Πίνακας/Πίνακες"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Η SQL εντολή σας εκτελέσθηκε επιτυχώς"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Περιήγηση"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr "Η παρακολούθηση είναι ενεργοποιημένη."
msgid "Tracking is not active."
msgstr "Η παρακολούθηση δεν έιναι ενεργοποιημένη."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -706,20 +711,20 @@ msgstr ""
"Η %s είναι η προεπιλεγμένη μηχανή αποθήκευσης σε αυτόν τον διακομιστή MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Με τους επιλεγμένους:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Επιλογή όλων"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -731,7 +736,7 @@ msgid "Check tables having overhead"
msgstr "Έλεγχος πινάκων με υπερκεφαλίδα"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -759,8 +764,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -844,6 +849,33 @@ msgstr "Παρακολούθηση πίνακα"
msgid "Database Log"
msgstr "Καταγραφή Βάσης Δεδομένων"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Ο επιλεγμένος τύπος εξαγωγής πρέπει να αποθηκευτεί σε αρχείο!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Δεν υπάρχει διαθέσιμος χώρος για την αποθήκευση του αρχείου %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Το αρχείο %s υπάρχει ήδη στον διακομιστή. Επιλέξτε διαφορετικό όνομα αρχείου "
+"ή ενεργοποιήστε την επιλογή αντικατάστασης."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθήκευσης του αρχείου %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1042,21 +1074,21 @@ msgid "Choose field to display"
msgstr "Επιλέξτε πεδίο για εμφάνιση"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Δωρεά"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Προηγούμενο"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1064,96 +1096,96 @@ msgid "Next"
msgstr "Επόμενο"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Σύνολο"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Δυαδικό"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Μαρτίου"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Απριλίου"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Μαΐου"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Ιουνίου"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Ιουλίου"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Αυγούστου"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Οκτωβρίου"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Ιανουαρίου"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Φεβρουαρίου"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Μαρτίου"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Απριλίου"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1161,178 +1193,178 @@ msgid "May"
msgstr "Μαΐου"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Ιουνίου"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Ιουλίου"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Αυγούστου"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Σεπτεμβρίου"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Οκτωβρίου"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Νοεμβρίου"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Δεκεμβρίου"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Κυριακή"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Δευτέρα"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Τρίτη"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Παρασκευή"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Κυριακή"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Δευτέρα"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Τρίτη"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Τετάρτη"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Πέμπτη"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Παρασκευή"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Σάββατο"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Κυριακή"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Δευτέρα"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Τρίτη"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Τετάρτη"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Πέμπτη"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Παρασκευή"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Σάββατο"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "σε χρήση"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2053,6 +2085,7 @@ msgstr "Δημιουργία"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Χωρίς Δικαιώματα"
@@ -2349,46 +2382,46 @@ msgstr "Εκτέλεση αποθηκευμένου ερωτήματος"
msgid "The row has been deleted"
msgstr "Η Εγγραφή έχει διαγραφεί"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Τερματισμός"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "στην εντολή"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Εμφάνιση εγγραφής "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "συνολικά"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Αλλαγή"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Δεν βρέθηκε η σύνδεση"
@@ -2900,6 +2933,58 @@ msgstr "δομή"
msgid "Go to view"
msgstr "Μετάβαση στην προβολή"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Μη έγκυρη παράμετρος στο εισαχθέν CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Πεδία που τελειώνουν σε"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Πεδία που περικλείονται σε"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής "
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Γραμμές που τελειώνουν σε"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Ορίστηκε μη έγκυρη στήλη (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Μη έγκυρη μορφή στο εισαχθέν CSV στη γραμμή %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Μη έγκυρο πλήθος πεδίων στο εισαχθέν CSV στη γραμμή %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Το αρχείο XML που ορίστηκε ήταν σε λανθασμένη μορφή ή ανεπαρκές. Διορθώστε "
+"το θέμα και δοκιμάστε ξανά."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3379,12 +3464,12 @@ msgstr "Συνδέσεις"
msgid "Copy table to (database.table):"
msgstr "Αντιγραφή πίνακα σε (βάση.πίνακας):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Ο Πίνακας %s αντιγράφηκε στο %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Δεν είναι δυνατή η αντιγραφή του πίνακα στον εαυτό του!"
@@ -3652,11 +3737,6 @@ msgstr "Να μην γίνεται αυτόματη αρίθμηση σε μηδ
msgid "Drop the databases that have the same names as the users."
msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδια ονόματα με χρήστες."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "δυναμικά"
@@ -3725,10 +3805,6 @@ msgstr "Έκδοση Excel"
msgid "Export/Import to scale"
msgstr "Εξαγωγή/Εισαγωγή σε κλίμακα"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Ο επιλεγμένος τύπος εξαγωγής πρέπει να αποθηκευτεί σε αρχείο!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Εκτεταμένες εντολές «Insert»"
@@ -3747,30 +3823,10 @@ msgstr "Αποτυχημένες προσπάθειες"
msgid "Field %s has been dropped"
msgstr "Το πεδίο %s διεγράφη"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Πεδία που περικλείονται σε"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Τα πεδία χρησιμοποιούν το χαρακτήρα διαφυγής "
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Πεδία"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Πεδία που τελειώνουν σε"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Το αρχείο %s υπάρχει ήδη στον διακομιστή. Επιλέξτε διαφορετικό όνομα αρχείου "
-"ή ενεργοποιήστε την επιλογή αντικατάστασης."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Αρχεία"
@@ -3875,10 +3931,6 @@ msgstr ""
"Οι επιλεγμένοι πίνακες προορισμου έχουν συγχρονιστεί με τους πίνακες "
"προέλευσης."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Πρέπει να επιλέξετε τουλάχιστον μία στήλη για εμφάνιση"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Εβραϊκά"
@@ -4055,35 +4107,11 @@ msgstr "Εσωτερικές συσχετίσεις"
msgid "Column count has to be larger than zero."
msgstr "Το πλήθος των στηλών δεν πρέπει να είναι μηδέν."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Ορίστηκε μη έγκυρη στήλη (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Μη έγκυρο πλήθος πεδίων στο εισαχθέν CSV στη γραμμή %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Μη έγκυρη μορφή στο εισαχθέν CSV στη γραμμή %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Μη έγκυρη παράμετρος στο εισαχθέν CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα πεδίο."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4094,7 +4122,7 @@ msgstr "Μη έγκυρο ευρετήριο διακομιστή: «%s»"
msgid "Japanese"
msgstr "Ιαπωνικά"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4179,10 +4207,6 @@ msgstr "Μήκος/Τιμές*"
msgid "Number of rows per page"
msgstr "Εγγραφές ανά σελίδα"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Γραμμές που τελειώνουν σε"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Λιθουανικά"
@@ -4302,12 +4326,12 @@ msgstr "Μενου μετακίνησης"
msgid "Move table to (database.table):"
msgstr "Μεταφορά πίνακα σε (βάση.πίνακας):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Ο πίνακας %s μεταφέρθηκε στο %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Δεν είναι δυνατή η μεταφορά του πίνακα στον εαυτό του!"
@@ -4377,11 +4401,6 @@ msgstr "Κανένα"
msgid "This format has no options"
msgstr "Αυτή η μορφή δεν έχει επιλογές"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Ο διακομιστής δεν έχει δικαιώματα αποθήκευσης του αρχείου %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Δεν έχετε αρκετά δικαιώματα να είσαστε εδώ τώρα!"
@@ -4390,11 +4409,6 @@ msgstr "Δεν έχετε αρκετά δικαιώματα να είσαστε
msgid "No rows selected"
msgstr "Δεν επιλέχθηκαν γραμμές"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Δεν υπάρχει διαθέσιμος χώρος για την αποθήκευση του αρχείου %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5056,7 +5070,7 @@ msgstr "Διαχείριση σφάλματος:"
msgid "IO Thread %s only"
msgstr "Διεργασία IO %s μόνο"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5093,7 +5107,7 @@ msgstr "Παράβλεψη επόμενου"
msgid "Slave replication"
msgstr "Δευτερεύουσα αναπαραγωγή"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6248,7 +6262,8 @@ msgstr "Ο πίνακας %s υπάρχει ήδη!"
msgid "Alter column(s)"
msgstr "Αλλαγή στήλης(ών)"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς"
@@ -6265,7 +6280,7 @@ msgstr ""
"Θέλετε να διαγράψετε όλες τις προηγούμενες γραμμές από τους πίνακες "
"προορισμού;"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Το όνομα του Πίνακα είναι κενό!"
@@ -6843,14 +6858,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "μπαλαντέρ"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Το αρχείο XML που ορίστηκε ήταν σε λανθασμένη μορφή ή ανεπαρκές. Διορθώστε "
-"το θέμα και δοκιμάστε ξανά."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Εξαγωγή περιεχομένων"
diff --git a/po/en_GB.po b/po/en_GB.po
index e105fee22..1fe9a8712 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-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-05-10 14:24+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"
@@ -330,7 +330,8 @@ msgstr "Enable"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -388,8 +389,8 @@ msgstr "Paper size"
msgid "Edit PDF Pages"
msgstr "Edit PDF Pages"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "No tables found in database."
@@ -440,13 +441,17 @@ msgstr "Last check"
msgid "%s table(s)"
msgstr "%s table(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Your SQL query has been executed successfully"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "You have to choose at least one column to display"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -568,7 +573,7 @@ msgid "Browse"
msgstr "Browse"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -666,7 +671,7 @@ msgstr "Tracking is active."
msgid "Tracking is not active."
msgstr "Tracking is not active."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -699,20 +704,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Check All"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -724,7 +729,7 @@ msgid "Check tables having overhead"
msgstr "Check tables having overhead"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -752,8 +757,8 @@ msgid "Analyze table"
msgstr "Analyse table"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -837,6 +842,32 @@ msgstr "Track table"
msgid "Database Log"
msgstr "Database Log"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Selected export type has to be saved in file!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Insufficient space to save the file %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"File %s already exists on server, change filename or check overwrite option."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "The web server does not have permission to save the file %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump has been saved to file %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1031,17 +1062,17 @@ msgid "Choose field to display"
msgstr "Choose field to display"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr "Done"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr "Prev"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1049,231 +1080,231 @@ msgid "Next"
msgstr "Next"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr "Today"
-#: js/messages.php:81
+#: js/messages.php:82
msgid "January"
msgstr "January"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr "February"
-#: js/messages.php:83
+#: js/messages.php:84
msgid "March"
msgstr "March"
-#: js/messages.php:84
+#: js/messages.php:85
msgid "April"
msgstr "April"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "May"
-#: js/messages.php:86
+#: js/messages.php:87
msgid "June"
msgstr "June"
-#: js/messages.php:87
+#: js/messages.php:88
msgid "July"
msgstr "July"
-#: js/messages.php:88
+#: js/messages.php:89
msgid "August"
msgstr "August"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr "September"
-#: js/messages.php:90
+#: js/messages.php:91
msgid "October"
msgstr "October"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr "November"
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr "December"
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
msgctxt "Short month name"
msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:121
+#: js/messages.php:122
msgid "Sunday"
msgstr "Sunday"
-#: js/messages.php:122
+#: js/messages.php:123
msgid "Monday"
msgstr "Monday"
-#: js/messages.php:123
+#: js/messages.php:124
msgid "Tuesday"
msgstr "Tuesday"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr "Wednesday"
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr "Thursday"
-#: js/messages.php:126
+#: js/messages.php:127
msgid "Friday"
msgstr "Friday"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr "Saturday"
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sat"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
msgid "Mo"
msgstr "Mo"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
msgid "Tu"
msgstr "Tu"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
msgid "We"
msgstr "We"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
msgid "Th"
msgstr "Th"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
msgid "Fr"
msgstr "Fr"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr "Wk"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr "Hour"
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr "Second"
@@ -1975,6 +2006,7 @@ msgstr "Create"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "No Privileges"
@@ -2262,46 +2294,46 @@ msgstr "Execute bookmarked query"
msgid "The row has been deleted"
msgstr "The row has been deleted"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Change"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Print view (with full texts)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link not found"
@@ -2806,9 +2838,60 @@ msgstr "structure"
msgid "Go to view"
msgstr "Go to view"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Invalid parameter for CSV import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Fields terminated by"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Fields enclosed by"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Fields escaped by"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Lines terminated by"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Invalid column (%s) specified!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Invalid format of CSV input on line %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Invalid field count in CSV input on line %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "This plug-in does not support compressed imports!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
-#| msgid "encoding conversion"
msgid "Encoding conversion"
msgstr "Encoding conversion"
@@ -3283,12 +3366,12 @@ msgstr "Connections"
msgid "Copy table to (database.table):"
msgstr "Copy table to (database.table):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Table %s has been copied to %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Can't copy table to same one!"
@@ -3554,11 +3637,6 @@ msgstr "Do not use AUTO_INCREMENT for zero values"
msgid "Drop the databases that have the same names as the users."
msgstr "Drop the databases that have the same names as the users."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump has been saved to file %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamic"
@@ -3627,10 +3705,6 @@ msgstr "Excel edition"
msgid "Export/Import to scale"
msgstr "Export/Import to scale"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Selected export type has to be saved in file!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Extended inserts"
@@ -3649,29 +3723,10 @@ msgstr "Failed attempts"
msgid "Field %s has been dropped"
msgstr "Field %s has been dropped"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Fields enclosed by"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Fields escaped by"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Fields"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Fields terminated by"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"File %s already exists on server, change filename or check overwrite option."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Files"
@@ -3771,10 +3826,6 @@ msgstr "Handler"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Selected target tables have been synchronised with source tables."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "You have to choose at least one column to display"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebrew"
@@ -3951,35 +4002,11 @@ msgstr "Internal relations"
msgid "Column count has to be larger than zero."
msgstr "Column count has to be larger than zero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Invalid column (%s) specified!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Invalid field count in CSV input on line %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Invalid format of CSV input on line %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Invalid parameter for CSV import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "You have to add at least one field."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "This plug-in does not support compressed imports!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3990,7 +4017,7 @@ msgstr "Invalid server index: \"%s\""
msgid "Japanese"
msgstr "Japanese"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4075,10 +4102,6 @@ msgstr "Length/Values"
msgid "Number of rows per page"
msgstr "Number of rows per page"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Lines terminated by"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lithuanian"
@@ -4196,12 +4219,12 @@ msgstr "Move Menu"
msgid "Move table to (database.table):"
msgstr "Move table to (database.table):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Table %s has been moved to %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Can't move table to same one!"
@@ -4271,11 +4294,6 @@ msgstr "None"
msgid "This format has no options"
msgstr "This format has no options"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "The web server does not have permission to save the file %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "You don't have sufficient privileges to be here right now!"
@@ -4284,11 +4302,6 @@ msgstr "You don't have sufficient privileges to be here right now!"
msgid "No rows selected"
msgstr "No rows selected"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Insufficient space to save the file %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4933,7 +4946,7 @@ msgstr "Error management:"
msgid "IO Thread %s only"
msgstr "IO Thread %s only"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "Slave IO Thread not running!"
@@ -4970,7 +4983,7 @@ msgstr "Skip next"
msgid "Slave replication"
msgstr "Slave replication"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "Slave SQL Thread not running!"
@@ -6075,7 +6088,8 @@ msgstr "Table %s already exists!"
msgid "Alter column(s)"
msgstr "Alter column(s)"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Table %1$s has been altered successfully"
@@ -6090,7 +6104,7 @@ msgstr "Apply index(s)"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Would you like to delete all the previous rows from target tables?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "The table name is empty!"
@@ -6655,14 +6669,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "wildcard"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Export contents"
diff --git a/po/es.po b/po/es.po
index b7259ad2d..0ecb7485f 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal \n"
"Language-Team: spanish \n"
@@ -336,7 +336,8 @@ msgstr "Habilite"
msgid "Collation"
msgstr "Cotejamiento"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Tamaño del papel"
msgid "Edit PDF Pages"
msgstr "Editar las páginas PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "No se han encontrado tablas en la base de datos."
@@ -446,13 +447,17 @@ msgstr "Última revisión"
msgid "%s table(s)"
msgstr "%s tabla(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Su consulta se ejecutó con éxito"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Debe elegir al menos una columna para mostrar"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Examinar"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -706,20 +711,20 @@ msgstr ""
"%s es el motor de almacenamiento predeterminado en este servidor MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Para los elementos que están marcados:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Marcar todos/as"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -731,7 +736,7 @@ msgid "Check tables having overhead"
msgstr "Marcar las tablas con residuo a depurar"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -759,8 +764,8 @@ msgid "Analyze table"
msgstr "Analizar la tabla"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -852,6 +857,33 @@ msgstr "Revisar la tabla"
msgid "Database Log"
msgstr "Base de datos"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "El formato de exportación seleccionado ¡debe grabarse en el archivo!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "No hay suficiente espacio para guardar el archivo %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"El archivo %s ya existe en el servidor, cambie el nombre del archivo o "
+"revise la opción de sobreescritura."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "El servidor web no tiene permiso para guardar el archivo %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Su archivo (MySQL dump) ha sido guardado con el nombre %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1051,21 +1083,21 @@ msgid "Choose field to display"
msgstr "Elegir el campo a mostrar"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Donación"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Previo"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1073,96 +1105,96 @@ msgid "Next"
msgstr "Próxima"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binario "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "May"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Oct"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Ene"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1170,178 +1202,178 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dic"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dom"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Vie"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Jue"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Vie"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lun"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mie"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Jue"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Vie"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "en uso"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2066,6 +2098,7 @@ msgstr "Crear"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Sin privilegios"
@@ -2362,46 +2395,46 @@ msgstr "Ejecute la consulta marcada previamente"
msgid "The row has been deleted"
msgstr "La fila se ha borrado"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Matar el proceso"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "en la consulta"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Mostrando registros "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "La consulta tardó %01.4f seg"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Cambiar"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operaciones sobre los resultados de la consulta"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Previsualización para imprimir (documento completo)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "No se encontró el enlace"
@@ -2921,6 +2954,56 @@ msgstr "Estructura"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Parámetro no válido para importar CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Campos terminados en"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Campos encerrados por"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Caracter de escape"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Líneas terminadas en"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "¡Las columnas especificadas (%s) no son válidas!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "El formato de los datos CSV en la línea %d no es válido."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "El número de campos de los datos CSV en la línea %d no es válido."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3404,12 +3487,12 @@ msgstr "Conexiones"
msgid "Copy table to (database.table):"
msgstr "Copiar la tabla a (base de datos.tabla):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "La tabla %s se copió a %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "¡No es posible copiar la tabla a la misma!"
@@ -3686,11 +3769,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Eliminar las bases de datos que tienen los mismos nombres que los usuarios."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Su archivo (MySQL dump) ha sido guardado con el nombre %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinámico/a"
@@ -3760,10 +3838,6 @@ msgstr "Edición Excel"
msgid "Export/Import to scale"
msgstr "Exporte/Importe a escala"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "El formato de exportación seleccionado ¡debe grabarse en el archivo!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "INSERTs extendidos"
@@ -3782,30 +3856,10 @@ msgstr "Intentos fallidos"
msgid "Field %s has been dropped"
msgstr "Se eliminó el campo %s"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Campos encerrados por"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Caracter de escape"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Campos"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Campos terminados en"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"El archivo %s ya existe en el servidor, cambie el nombre del archivo o "
-"revise la opción de sobreescritura."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Archivos"
@@ -3909,10 +3963,6 @@ msgstr "Gestor"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Debe elegir al menos una columna para mostrar"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebreo"
@@ -4090,35 +4140,11 @@ msgstr "Relaciones internas"
msgid "Column count has to be larger than zero."
msgstr "El número de columnas debe ser superior a cero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "¡Las columnas especificadas (%s) no son válidas!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "El número de campos de los datos CSV en la línea %d no es válido."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "El formato de los datos CSV en la línea %d no es válido."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Parámetro no válido para importar CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Debe añadir al menos un campo."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4129,7 +4155,7 @@ msgstr "No es válido el índice del servidor: \"%s\""
msgid "Japanese"
msgstr "Japonés"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4211,10 +4237,6 @@ msgstr "Longitud/Valores*"
msgid "Number of rows per page"
msgstr "registros por página"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Líneas terminadas en"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lituano"
@@ -4334,12 +4356,12 @@ msgstr "Mover el Menú"
msgid "Move table to (database.table):"
msgstr "Mover tabla a (Base de datos.tabla):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "La tabla %s ha sido movida a %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "¡No es posible mover la tabla a la misma!"
@@ -4410,11 +4432,6 @@ msgstr "Ninguna"
msgid "This format has no options"
msgstr "Este formato no tiene opciones"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "El servidor web no tiene permiso para guardar el archivo %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "¡Usted no tiene suficientes privilegios para estar aquí ahora!"
@@ -4423,11 +4440,6 @@ msgstr "¡Usted no tiene suficientes privilegios para estar aquí ahora!"
msgid "No rows selected"
msgstr "No se seleccionaron filas"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "No hay suficiente espacio para guardar el archivo %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5075,7 +5087,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5111,7 +5123,7 @@ msgstr ""
msgid "Slave replication"
msgstr "Configuración del servidor"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6252,7 +6264,8 @@ msgstr "¡La tabla %s ya existe!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente"
@@ -6267,7 +6280,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "¡El nombre de la tabla está vacío!"
@@ -6839,12 +6852,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "comodín"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/et.po b/po/et.po
index 2c7807ff5..a76d08e90 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
@@ -335,7 +335,8 @@ msgstr "Lubatud"
msgid "Collation"
msgstr "Määrang"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -393,8 +394,8 @@ msgstr "Paberi suurus"
msgid "Edit PDF Pages"
msgstr "Muuda PDF lehti"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Andmebaasist ei leitud tabeleid."
@@ -445,13 +446,17 @@ msgstr "Viimane vaatamine"
msgid "%s table(s)"
msgstr "%s tabel(it)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Teie SQL päring täideti edukalt"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Te peate valima vähemalt ühe veeru kuvamiseks"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -573,7 +578,7 @@ msgid "Browse"
msgstr "Vaata"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -702,20 +707,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on vaikimisi varundusmootor sellele MySQL serverile."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Valitud:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Märgista kõik"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -727,7 +732,7 @@ msgid "Check tables having overhead"
msgstr "Kontrolli ülekulusid"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -755,8 +760,8 @@ msgid "Analyze table"
msgstr "Analüüsi tabelit"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -848,6 +853,33 @@ msgstr "Kontrolli tabelit"
msgid "Database Log"
msgstr "Andmebaas"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Valitud eksportimise tüüp tuleb salvestada faili!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Liiga vähe kettaruumi, et salvestada fail %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Fail %s on juba serveris olemas, muutke faili nime või kontrollige "
+"ülekirjutamise seadeid."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Webiserver ei oma õigusi , et salvestada fail %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Väljavõte salvestati faili %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1042,20 +1074,20 @@ msgid "Choose field to display"
msgstr "Vali väli mida kuvada"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Andmed"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Eelmine"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1063,96 +1095,96 @@ msgid "Next"
msgstr "Järgmine"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kokku"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binaarne"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mär"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Veb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mär"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1160,176 +1192,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Det"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Püh"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Esm"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Tei"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ree"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Püh"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Esm"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Tei"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Kol"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Nel"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Ree"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Lau"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Püh"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Esm"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Tei"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Kol"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Nel"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ree"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lau"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "kasutusel"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2034,6 +2066,7 @@ msgstr "Loo"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Ei oma ühtegi privileegi"
@@ -2323,46 +2356,46 @@ msgstr "Käivita salvestatud päring"
msgid "The row has been deleted"
msgstr "Rida kustutatud"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Tapa"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "päringus"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Näita ridu"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "kokku"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Päring kestis %01.4f sek"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Muuda"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Päringu tulemuste tegevused"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Trükivaade (täispikkade tekstidega)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Linki ei leitud"
@@ -2845,6 +2878,56 @@ msgstr "Struktuur"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Vigane parameeter CSV importimisel: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Väljad eraldatud"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Väljad ümbritsetud"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Väljad varjatud"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Read lõpetatud"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Vigased välja veerud (%s) valitud!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Vigane formaat CSV sisendis real %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Vigane väljade arv CSV sisendis real %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "See plugin ei toeta pakitud importe!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3326,12 +3409,12 @@ msgstr "Ühendused"
msgid "Copy table to (database.table):"
msgstr "Kopeeri tabel (andmebaas.tabel):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabel %s on kopeeritud andmebaasi %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Ei saa tabelit iseendasse kopeerida!"
@@ -3601,11 +3684,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Väljavõte salvestati faili %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dünaamiline"
@@ -3675,10 +3753,6 @@ msgstr "Exceli versioon"
msgid "Export/Import to scale"
msgstr "Ekspordi/Impordi skaala"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Valitud eksportimise tüüp tuleb salvestada faili!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Laiendatud lisamised"
@@ -3697,30 +3771,10 @@ msgstr "Ebaõnnestunud üritused"
msgid "Field %s has been dropped"
msgstr "Väli %s kustutatud"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Väljad ümbritsetud"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Väljad varjatud"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Väljade arv"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Väljad eraldatud"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Fail %s on juba serveris olemas, muutke faili nime või kontrollige "
-"ülekirjutamise seadeid."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3823,10 +3877,6 @@ msgstr "Töötleja"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Te peate valima vähemalt ühe veeru kuvamiseks"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Heebrea"
@@ -3999,35 +4049,11 @@ msgstr "Sisesed seosed"
msgid "Column count has to be larger than zero."
msgstr "Veergude arv peab olema nullist suurem."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Vigased välja veerud (%s) valitud!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Vigane väljade arv CSV sisendis real %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Vigane formaat CSV sisendis real %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Vigane parameeter CSV importimisel: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Peate lisama vähemalt ühe välja."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "See plugin ei toeta pakitud importe!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4038,7 +4064,7 @@ msgstr "Vigane serveri indeks: \"%s\""
msgid "Japanese"
msgstr "Jaapani"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4120,10 +4146,6 @@ msgstr "Pikkus/Väärtused*"
msgid "Number of rows per page"
msgstr "Ridade arv lehel"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Read lõpetatud"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Leedu"
@@ -4239,12 +4261,12 @@ msgstr "Liiguta menüü"
msgid "Move table to (database.table):"
msgstr "Vii tabel üle (andmebaas.tabel):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabel %s viidu üle andmebaasi %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Ei saa tabelit iseendasse liigutada!"
@@ -4313,11 +4335,6 @@ msgstr "Pole"
msgid "This format has no options"
msgstr "Sellel formaadil pole seadeid"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Webiserver ei oma õigusi , et salvestada fail %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Teil pole piisavalt õigusi, et hetkel siin olla!"
@@ -4326,11 +4343,6 @@ msgstr "Teil pole piisavalt õigusi, et hetkel siin olla!"
msgid "No rows selected"
msgstr "Ridu pole valitud"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Liiga vähe kettaruumi, et salvestada fail %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4966,7 +4978,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5001,7 +5013,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6095,7 +6107,8 @@ msgstr "tabel %s on juba olemas!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Valitud kasutajad on õnnestunult kustutatud."
@@ -6110,7 +6123,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Tabeli nimi on tühi!"
@@ -6675,12 +6688,6 @@ msgstr ""
msgid "wildcard"
msgstr "metamärk"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/eu.po b/po/eu.po
index 35cdd7d81..d0271679f 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: \n"
"Language-Team: basque \n"
@@ -341,7 +341,8 @@ msgstr "Gaituta"
msgid "Collation"
msgstr "Ordenamendua"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -399,8 +400,8 @@ msgstr "Paperaren tamaina"
msgid "Edit PDF Pages"
msgstr "Editatu PDF Orriak"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Ez da taularik aurkitu datu-basean."
@@ -451,13 +452,17 @@ msgstr "Azken egiaztapena"
msgid "%s table(s)"
msgstr "%s taula(k)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Zure SQL-kontsula arrakastaz burutu da"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu."
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -579,7 +584,7 @@ msgid "Browse"
msgstr "Arakatu"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -677,7 +682,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -709,20 +714,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Ikurdunak:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Guztiak egiaztatu"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -734,7 +739,7 @@ msgid "Check tables having overhead"
msgstr "Arazteko hondakinak egiaztatu"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -762,8 +767,8 @@ msgid "Analyze table"
msgstr "Taula aztertu"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -852,6 +857,33 @@ msgstr "Taula egiaztatu"
msgid "Database Log"
msgstr "Datu-basea"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Ez dago leku-disko nahikoa %s fitxategia gordetzeko."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"%s fitxategia aurretik bazegoen zerbitzarian, izena aldatu edo aukeratu "
+"gainean idazteko hobespena."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Web-zerbitzariak dio %s fitxategia gordetzeko baimenik ez duzula."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Iraulketa %s fitxategian gorde da."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1041,21 +1073,21 @@ msgid "Choose field to display"
msgstr "Aukeratu erakutsi beharreko eremua"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Batez"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Aurrekoa"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1063,96 +1095,96 @@ msgid "Next"
msgstr "Hurrengoa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gutira"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binarioa "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Api"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Eka"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Uzt"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Abu"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Urr"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Urt"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Ots"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Api"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1160,176 +1192,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Eka"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Uzt"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Abu"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Ira"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Urr"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Aza"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Abe"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Iga"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Astel"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Astea"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Osti"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Iga"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Astel"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Astea"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Astez"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Oste"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Osti"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Lar"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Iga"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Astel"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Astea"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Astez"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Oste"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Osti"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lar"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lanean"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2024,6 +2056,7 @@ msgstr "Sortu"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Pribilegiorik gabe"
@@ -2308,46 +2341,46 @@ msgstr "Exekutatu aurretik aukeratutako kontsulta"
msgid "The row has been deleted"
msgstr "Errenkada ezabatua izan da"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Hil"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "kontsultan"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Errenkadak erakusten"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "guztira"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Kontsulta exekutatzeko denbora %01.4f seg"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Aldatu"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Inprimatzeko ikuspena (testu osoak)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Esteka aurkitugabea"
@@ -2815,6 +2848,56 @@ msgstr "Egitura"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Eremuak honekin bukatuak:"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Eremuak honekin mugatuta:"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Eremuak escaped by:"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Honetan bukatutako lerroak: "
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3298,12 +3381,12 @@ msgstr "Konexioak"
msgid "Copy table to (database.table):"
msgstr "Taula hona kopiatu: (datu-base.taula):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "%s taula hona kopiatua izan da: %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Ezinezkoa da taula berberera kopiatzea!"
@@ -3572,11 +3655,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Iraulketa %s fitxategian gorde da."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamikoa"
@@ -3646,10 +3724,6 @@ msgstr "Excel edizioa"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "\"insert\" hedatuak"
@@ -3668,30 +3742,10 @@ msgstr "Erratutako saiakerak"
msgid "Field %s has been dropped"
msgstr "%s eremua ezabatu da"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Eremuak honekin mugatuta:"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Eremuak escaped by:"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Eremuak"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Eremuak honekin bukatuak:"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"%s fitxategia aurretik bazegoen zerbitzarian, izena aldatu edo aukeratu "
-"gainean idazteko hobespena."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3795,10 +3849,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Gutxienez bistaratzeko Zutabe bat hautatu duzu."
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebreera"
@@ -3973,35 +4023,11 @@ msgstr "Barne-erlazioak"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4012,7 +4038,7 @@ msgstr ""
msgid "Japanese"
msgstr "Japoniera"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4095,10 +4121,6 @@ msgstr "Luzera/Balioak*"
msgid "Number of rows per page"
msgstr "Errenkada kopurua orriko"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Honetan bukatutako lerroak: "
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lithuaniera"
@@ -4209,12 +4231,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Taula hona mugitu (datu-basea.taula):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "%s taula hona mugitu da: %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Ezin taula berberara mugitu!"
@@ -4283,11 +4305,6 @@ msgstr "Batez"
msgid "This format has no options"
msgstr "Formato honek ez du aukerarik"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Web-zerbitzariak dio %s fitxategia gordetzeko baimenik ez duzula."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!"
@@ -4296,11 +4313,6 @@ msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!"
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Ez dago leku-disko nahikoa %s fitxategia gordetzeko."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4948,7 +4960,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4983,7 +4995,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5979,7 +5991,8 @@ msgstr "%s erabiltzailea badago lehendik ere!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
@@ -5994,7 +6007,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Taularen izena hutsik dago!"
@@ -6547,12 +6560,6 @@ msgstr ""
msgid "wildcard"
msgstr "komodina"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 36ee02a1e..ba490430f 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: persian \n"
@@ -336,7 +336,8 @@ msgstr "فعال"
msgid "Collation"
msgstr ""
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr "ويرايش صفحات PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "در اين پايگاه داده هيچ جدولي وجود ندارد ."
@@ -448,13 +449,17 @@ msgstr ""
msgid "%s table(s)"
msgstr "%s جدول(ها)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -576,7 +581,7 @@ msgid "Browse"
msgstr "مشاهده"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -674,7 +679,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "موارد انتخابشده :"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "انتخاب همه"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -848,6 +853,31 @@ msgstr "بررسي جدول"
msgid "Database Log"
msgstr "پايگاه داده"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1034,21 +1064,21 @@ msgid "Choose field to display"
msgstr "ستون را براي نمايش انتخاب نماييد"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "خير"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "قبل"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1056,96 +1086,96 @@ msgid "Next"
msgstr "بعد"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "جمع كل"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "دودويي"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "مارس"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "آوريل"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "مي"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ژوئن"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "جولاي"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "آگوست"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "اكتبر"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "ژانويه"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "فوريه"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "مارس"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "آوريل"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1153,176 +1183,176 @@ msgid "May"
msgstr "مي"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "ژوئن"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "جولاي"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "آگوست"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "سپتامبر"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "اكتبر"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "نوامبر"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "دسامبر"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "يكشنبه"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "دوشنبه"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "سهشنبه"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "جمعه"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "يكشنبه"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "دوشنبه"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "سهشنبه"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "چهارشنبه"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "پنجشنبه"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "جمعه"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "شنبه"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "يكشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "دوشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "سهشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "چهارشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "پنجشنبه"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "جمعه"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "شنبه"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2011,6 +2041,7 @@ msgstr "ساختن"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
#, fuzzy
msgid "No Privileges"
msgstr "امتيازات"
@@ -2295,46 +2326,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr "سطر حذف گرديد ."
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "جمع كل"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "تغيير"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "پيوند پيدا نشد"
@@ -2800,6 +2831,56 @@ msgstr "ساختار"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "ستونهاي منتهي به"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "ستونهاي درميانگرفته با"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "ستونهاي جداشده با"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "خطوط منتهي به"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3281,12 +3362,12 @@ msgstr ""
msgid "Copy table to (database.table):"
msgstr "كپي كردن جدول به (پايگاه داده.جدول):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "جدول %s به %s كپي شد."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3549,11 +3630,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "پويا"
@@ -3622,10 +3698,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "وروديهاي تمديدشده"
@@ -3644,28 +3716,10 @@ msgstr ""
msgid "Field %s has been dropped"
msgstr "ستون %s حذف گرديد"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "ستونهاي درميانگرفته با"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "ستونهاي جداشده با"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "ستونها"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "ستونهاي منتهي به"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3764,10 +3818,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "شما حذاقل بايد يك ستون را براي نمايش انتخاب نماييد"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr ""
@@ -3941,35 +3991,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3980,7 +4006,7 @@ msgstr ""
msgid "Japanese"
msgstr "ژاپنی"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4062,10 +4088,6 @@ msgstr "طول/مقادير*"
msgid "Number of rows per page"
msgstr "تعداد سطرها در هر صفحه"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "خطوط منتهي به"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr ""
@@ -4175,12 +4197,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "انتقال جدول به (پايگاه داده.جدول):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "جدول %s به %s انتقال دادهشد."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4250,11 +4272,6 @@ msgstr "خير"
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr ""
@@ -4263,11 +4280,6 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4892,7 +4904,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4927,7 +4939,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5906,7 +5918,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5921,7 +5934,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "نام جدول وارد نشدهاست !"
@@ -6445,12 +6458,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 0eeba93ba..fc330f2fb 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
@@ -336,7 +336,8 @@ msgstr "Ota käyttöön"
msgid "Collation"
msgstr "Aakkosjärjestys"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Paperin koko"
msgid "Edit PDF Pages"
msgstr "Muokkaa PDF-sivuja"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Tietokannassa ei ole tauluja."
@@ -446,13 +447,17 @@ msgstr "Viimeksi tarkistettu"
msgid "%s table(s)"
msgstr "%s taulu(a)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL-kyselyn suoritus onnistui"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Valitse vähintään yksi sarake"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Selaa"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr "Seuranta on käytössä."
msgid "Tracking is not active."
msgstr "Seuranta ei ole käytössä."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s on tämän MySQL-palvelimen oletustallennusmoottori."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Valitut:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Valitse kaikki"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr "Valitse taulut, joissa on ylijäämää"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Analysoi taulu"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -843,6 +848,33 @@ msgstr "Seuraa taulua"
msgid "Database Log"
msgstr "Tietokantaloki"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Valittu vientityyppi on tallennettava tiedostoon!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Liian vähän tilaa tiedoston %s tallentamiseen."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Tiedosto %s on jo olemassa palvelimella, vaihda tiedostonimeä tai tarkista "
+"korvausasetuksen tila."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Vedos tallennettiin tiedostoon %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1038,21 +1070,21 @@ msgid "Choose field to display"
msgstr "Valitse näytettävä sarake"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Lahjoita"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Edellinen"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1060,96 +1092,96 @@ msgid "Next"
msgstr "Seuraava"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Yhteensä"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binääritietoa"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Maalis"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Huhti"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Touko"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Kesä"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Heinä"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Elo"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Loka"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Tammi"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Helmi"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Maalis"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Huhti"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1157,178 +1189,178 @@ msgid "May"
msgstr "Touko"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Kesä"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Heinä"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Elo"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Syys"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Loka"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Marras"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Joulu"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Su"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ti"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pe"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Su"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Ti"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Ke"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "To"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pe"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "La"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Su"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ti"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Ke"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "La"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "käytössä"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2042,6 +2074,7 @@ msgstr "Luo"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Ei käyttöoikeuksia"
@@ -2336,46 +2369,46 @@ msgstr "Suorita kysely kirjanmerkeistä"
msgid "The row has been deleted"
msgstr "Rivi on poistettu"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Lopeta"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "lauseessa"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Näkyvillä rivit "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "yhteensä"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "kysely kesti %01.4f sek."
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Muokkaa"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Kyselytulosten toimenpiteet"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Tulostusversio (kokonaisin tekstein)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Linkkiä ei löydy"
@@ -2879,6 +2912,58 @@ msgstr "rakenne"
msgid "Go to view"
msgstr "Siirry näkymään"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Virheellinen CSV-tuonnin parametri: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Sarakkeiden erotinmerkki"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Sarakkeiden rajausmerkki"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Koodinvaihtomerkki"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Rivien erotinmerkki"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Virheellinen sarake (%s) määritelty!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Virheellinen muoto CSV-syötteessä rivillä %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Määritetty XML-tiedosto on joko epämuotoinen tai vaillinainen. Korjaa "
+"ongelma ja yritä uudestaan."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3363,12 +3448,12 @@ msgstr "Yhteydet"
msgid "Copy table to (database.table):"
msgstr "Kopioi taulu toiseen tauluun nimellä (tietokanta.taulu):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Taulu %s on kopioitu uuteen tauluun %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Taulua ei voi kopioida itseensä!"
@@ -3636,11 +3721,6 @@ msgstr "Älä käytä nolla-arvoissa AUTO_INCREMENT:iä"
msgid "Drop the databases that have the same names as the users."
msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Vedos tallennettiin tiedostoon %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynaaminen"
@@ -3709,10 +3789,6 @@ msgstr "Excel-muokkaus"
msgid "Export/Import to scale"
msgstr "Vie/tuo skaalaan"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Valittu vientityyppi on tallennettava tiedostoon!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Laajennetut lisäyslauseet"
@@ -3731,30 +3807,10 @@ msgstr "Epäonnistuneet yritykset"
msgid "Field %s has been dropped"
msgstr "Sarake %s on poistettu"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Sarakkeiden rajausmerkki"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Koodinvaihtomerkki"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Sarakkeet"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Sarakkeiden erotinmerkki"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Tiedosto %s on jo olemassa palvelimella, vaihda tiedostonimeä tai tarkista "
-"korvausasetuksen tila."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Tiedostot"
@@ -3854,10 +3910,6 @@ msgstr "Käsittelijä"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Valitut kohdetaulut on yhtenäistetty lähdetaulujen kanssa."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Valitse vähintään yksi sarake"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebrealainen"
@@ -4033,35 +4085,11 @@ msgstr "Sisäiset relaatiot"
msgid "Column count has to be larger than zero."
msgstr "Sarakkeiden määrän on oltava nollaa suurempi."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Virheellinen sarake (%s) määritelty!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Virheellinen kenttien määrä CSV-syötteessä rivillä %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Virheellinen muoto CSV-syötteessä rivillä %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Virheellinen CSV-tuonnin parametri: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Vähintään yksi kenttä on lisättävä."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4072,7 +4100,7 @@ msgstr "Virheellinen palvelimen indeksi: \"%s\""
msgid "Japanese"
msgstr "Japanilainen"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4154,10 +4182,6 @@ msgstr "Pituus/Arvot*"
msgid "Number of rows per page"
msgstr "Rivejä sivulla"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Rivien erotinmerkki"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Liettualainen"
@@ -4273,12 +4297,12 @@ msgstr "Siirrä valikko"
msgid "Move table to (database.table):"
msgstr "Siirrä taulu toiseen tauluun (tietokanta.taulu):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Taulu %s on siirretty %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Taulua ei voi siirtää itseensä!"
@@ -4348,11 +4372,6 @@ msgstr "Ei mikään"
msgid "This format has no options"
msgstr "Tälle tiedostomuodolle ei ole valinta-asetuksia"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Palvelimella ei ole lupaa tallentaa tiedostoa %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Sinulla ei ole riittäviä oikeuksia!"
@@ -4361,11 +4380,6 @@ msgstr "Sinulla ei ole riittäviä oikeuksia!"
msgid "No rows selected"
msgstr "Ei yhtään riviä valittu"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Liian vähän tilaa tiedoston %s tallentamiseen."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5016,7 +5030,7 @@ msgstr "Virheiden hallinta:"
msgid "IO Thread %s only"
msgstr "IO-säie %s vain"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5053,7 +5067,7 @@ msgstr "Ohita seuraava"
msgid "Slave replication"
msgstr "Alipalvelimen replikointi"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6181,7 +6195,8 @@ msgstr "Taulu %s on jo olemassa!"
msgid "Alter column(s)"
msgstr "Muuta saraketta/sarakkeita"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Taulun %1$s muuttaminen onnistui."
@@ -6196,7 +6211,7 @@ msgstr "Käytä indeksiä/indeksejä"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Haluatko poistaa kaikki edelliset rivit kohdetauluista?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Taulun nimi puuttuu!"
@@ -6764,14 +6779,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "korvausmerkki"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Määritetty XML-tiedosto on joko epämuotoinen tai vaillinainen. Korjaa "
-"ongelma ja yritä uudestaan."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Vie sisällöt"
diff --git a/po/fr.po b/po/fr.po
index f69a4dc08..94abbfe08 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-05-10 14:16+0200\n"
"Last-Translator: Marc \n"
"Language-Team: french \n"
@@ -330,7 +330,8 @@ msgstr "Activer"
msgid "Collation"
msgstr "Interclassement"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -388,8 +389,8 @@ msgstr "Taille du papier"
msgid "Edit PDF Pages"
msgstr "Préparer le schéma en PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Aucune table n'a été trouvée dans cette base."
@@ -440,13 +441,17 @@ msgstr "Dernière vérification"
msgid "%s table(s)"
msgstr "%s table(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Votre requête SQL a été exécutée avec succès"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Vous devez choisir au moins une colonne à afficher"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -568,7 +573,7 @@ msgid "Browse"
msgstr "Afficher"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -666,7 +671,7 @@ msgstr "Le suivi est actif."
msgid "Tracking is not active."
msgstr "Le suivi n'est pas activé."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -699,20 +704,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "Sur ce serveur MySQL, le moteur de stockage par défaut est %s."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Pour la sélection :"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Tout cocher"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -724,7 +729,7 @@ msgid "Check tables having overhead"
msgstr "Cocher tables avec pertes"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -752,8 +757,8 @@ msgid "Analyze table"
msgstr "Analyser la table"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -837,6 +842,35 @@ msgstr "Suivre la table"
msgid "Database Log"
msgstr "Journal de la base de données"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Ce choix d'exportation doit être sauvegardé dans un fichier!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Espace-disque insuffisant pour enregistrer le fichier %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Le fichier %s existe déjà sur le serveur, veuillez changer le nom, ou cocher "
+"l'option Écraser"
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+"Le serveur web n'a pas les permissions nécessaires pour enregistrer le "
+"fichier %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Le fichier d'exportation a été sauvegardé sous %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1039,17 +1073,17 @@ msgid "Choose field to display"
msgstr "Champ descriptif"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr "Fermer"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr "Précédent"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1057,231 +1091,231 @@ msgid "Next"
msgstr "Suivant"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr "Aujourd'hui"
-#: js/messages.php:81
+#: js/messages.php:82
msgid "January"
msgstr "Janvier"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr "Février"
-#: js/messages.php:83
+#: js/messages.php:84
msgid "March"
msgstr "Mars"
-#: js/messages.php:84
+#: js/messages.php:85
msgid "April"
msgstr "Avril"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
msgid "June"
msgstr "Juin"
-#: js/messages.php:87
+#: js/messages.php:88
msgid "July"
msgstr "Juillet"
-#: js/messages.php:88
+#: js/messages.php:89
msgid "August"
msgstr "Août"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr "Septembre"
-#: js/messages.php:90
+#: js/messages.php:91
msgid "October"
msgstr "Octobre"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr "Novembre"
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr "Décembre"
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Janvier"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Février"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mars"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Avril"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Juin"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Juillet"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Août"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Septembre"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Octobre"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Novembre"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Décembre"
-#: js/messages.php:121
+#: js/messages.php:122
msgid "Sunday"
msgstr "Dimanche"
-#: js/messages.php:122
+#: js/messages.php:123
msgid "Monday"
msgstr "Lundi"
-#: js/messages.php:123
+#: js/messages.php:124
msgid "Tuesday"
msgstr "Mardi"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr "Mercredi"
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr "Jeudi"
-#: js/messages.php:126
+#: js/messages.php:127
msgid "Friday"
msgstr "Vendredi"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr "Samedi"
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Dim"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Jeu"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sam"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
msgid "Su"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
msgid "We"
msgstr "Me"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
msgid "Th"
msgstr "Je"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
msgid "Sa"
msgstr "Sa"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr "Sem"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr "Heure"
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr "Seconde"
@@ -1995,6 +2029,7 @@ msgstr "Créer"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "aucun privilège"
@@ -2283,46 +2318,46 @@ msgstr "Exécuter la requête en signets"
msgid "The row has been deleted"
msgstr "L'enregistrement a été effacé"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Supprimer"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "dans la requête"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Affichage des enregistrements"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Traitement en %01.4f sec."
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Modifier"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Opérations sur les résultats de la requête"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Version imprimable (avec textes complets)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Lien absent"
@@ -2835,6 +2870,58 @@ msgstr "structure"
msgid "Go to view"
msgstr "Aller à la vue"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Paramètres invalides pour l'importation CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Champs terminés par"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Champs entourés par"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Caractère spécial"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Lignes terminées par"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "La colonne %s est invalide!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Format invalide pour les données CSV à la ligne %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Nombre de champs invalide dans les données CSV à la ligne %d"
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Ce greffon ne supporte pas les importations en format comprimé!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Le fichier XML spécifié était mal formé ou incomplet. Veuillez le corriger "
+"et essayer à nouveau"
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -2843,8 +2930,7 @@ msgid "Encoding conversion"
msgstr "Conversion de l'encodage"
#. l10n: This is currently used only in Japanese locales
-#: libraries/kanji-encoding.lib.php:142
-#| msgid "None"
+#: libraries/kanji-encoding.lib.php:145
msgctxt "None encoding conversion"
msgid "None"
msgstr "aucune"
@@ -3314,12 +3400,12 @@ msgstr "Connexions"
msgid "Copy table to (database.table):"
msgstr "Copier la table vers (base.table) :"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "La table %s a été copiée vers %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "On ne peut copier la table sur elle-même!"
@@ -3588,11 +3674,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Supprimer les bases de données portant le même nom que les utilisateurs"
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Le fichier d'exportation a été sauvegardé sous %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamique"
@@ -3661,10 +3742,6 @@ msgstr "Excel en version"
msgid "Export/Import to scale"
msgstr "Exporter/Importer à l'échelle"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Ce choix d'exportation doit être sauvegardé dans un fichier!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Insertions étendues"
@@ -3683,30 +3760,10 @@ msgstr "Tentatives échouées"
msgid "Field %s has been dropped"
msgstr "Le champ %s a été effacé"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Champs entourés par"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Caractère spécial"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Champs"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Champs terminés par"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Le fichier %s existe déjà sur le serveur, veuillez changer le nom, ou cocher "
-"l'option Écraser"
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Fichiers"
@@ -3808,10 +3865,6 @@ msgstr "Gestionnaire"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Les tables sélectionnées ont été synchronisées."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Vous devez choisir au moins une colonne à afficher"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "hébreu"
@@ -3988,35 +4041,11 @@ msgstr "Relations internes"
msgid "Column count has to be larger than zero."
msgstr "Le nombre de champs doit être plus grand que zéro."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "La colonne %s est invalide!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Nombre de champs invalide dans les données CSV à la ligne %d"
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Format invalide pour les données CSV à la ligne %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Paramètres invalides pour l'importation CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Vous devez ajouter au moins un champ"
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Ce greffon ne supporte pas les importations en format comprimé!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4027,7 +4056,7 @@ msgstr "Indice de serveur invalide: «%s »"
msgid "Japanese"
msgstr "japonais"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4112,10 +4141,6 @@ msgstr "Taille/Valeurs*"
msgid "Number of rows per page"
msgstr "Nombre d'enregistrements par page"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Lignes terminées par"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "lituanien"
@@ -4235,12 +4260,12 @@ msgstr "Déplacer le menu"
msgid "Move table to (database.table):"
msgstr "Déplacer la table vers (base.table) : "
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "La table %s a été déplacée vers %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "On ne peut déplacer la table sur elle-même!"
@@ -4310,13 +4335,6 @@ msgstr "Aucun"
msgid "This format has no options"
msgstr "Ce format ne comporte pas d'options"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-"Le serveur web n'a pas les permissions nécessaires pour enregistrer le "
-"fichier %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Vous n'êtes pas autorisé à accéder à cette page"
@@ -4325,11 +4343,6 @@ msgstr "Vous n'êtes pas autorisé à accéder à cette page"
msgid "No rows selected"
msgstr "Aucun enregistrement n'a été sélectionné"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Espace-disque insuffisant pour enregistrer le fichier %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4998,7 +5011,7 @@ msgstr "Gestion des erreurs"
msgid "IO Thread %s only"
msgstr "%s seulement le fil d'exécution des entrées-sorties"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "Le fil d'exécution IO ne tourne pas sur le serveur esclave!"
@@ -5035,7 +5048,7 @@ msgstr "Ignorer les prochaines"
msgid "Slave replication"
msgstr "Réplication esclave"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "Le fil d'exécution SQL ne tourne pas sur le serveur esclave!"
@@ -6160,7 +6173,8 @@ msgstr "La table %s existe déjà!"
msgid "Alter column(s)"
msgstr "Modifier des colonnes"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "La table %1$s a été modifiée avec succès."
@@ -6175,7 +6189,7 @@ msgstr "Appliquer des index"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Voulez-vous supprimer tous les enregistrements des tables cible?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Le nom de la table est vide"
@@ -6748,14 +6762,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "passepartout"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Le fichier XML spécifié était mal formé ou incomplet. Veuillez le corriger "
-"et essayer à nouveau"
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Exporter le contenu"
diff --git a/po/gl.po b/po/gl.po
index c97b66881..8f2ba7f46 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician \n"
@@ -335,7 +335,8 @@ msgstr "Activar"
msgid "Collation"
msgstr "Orde alfabética"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -393,8 +394,8 @@ msgstr "Tamaño do papel"
msgid "Edit PDF Pages"
msgstr "Editar as páxinas PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Non se achou ningunha táboa na base de datos"
@@ -445,13 +446,17 @@ msgstr "Comprobación máis recente"
msgid "%s table(s)"
msgstr "%s táboa(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "A seu orde de SQL executouse sen problemas"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Ten que escoller polo menos unha columna para mostrar"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -573,7 +578,7 @@ msgid "Browse"
msgstr "Visualizar"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr "O seguemento está activado."
msgid "Tracking is not active."
msgstr "O seguemento non está activado."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -704,20 +709,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o motor de almacenamento predefinido neste servidor de MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Todos os marcados"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Marcalos todos"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -729,7 +734,7 @@ msgid "Check tables having overhead"
msgstr "Exceso na comprobación"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -757,8 +762,8 @@ msgid "Analyze table"
msgstr "Analizar a táboa"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -842,6 +847,33 @@ msgstr "Seguir a táboa"
msgid "Database Log"
msgstr "Rexistro de actividade da base de datos"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Gardouse nun ficheiro o tipo de exportación seleccionada!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Non hai espazo para gardar o ficheiro %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"O ficheiro %s xa existe no servidor - escolla outro nome ou seleccione a "
+"opción de eliminar."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "O servidor web non ten permiso para gardar o ficheiro %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Gardouse o volcado no ficheiro %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1038,21 +1070,21 @@ msgid "Choose field to display"
msgstr "Escolla o campo que quere que se mostre"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Doar"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1060,96 +1092,96 @@ msgid "Next"
msgstr "Seguinte"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binario "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Maio"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Xuño"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Xullo"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Xan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1157,178 +1189,178 @@ msgid "May"
msgstr "Maio"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Xuño"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Xullo"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Do"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lu"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ma"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ve"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Lu"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Mé"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Xo"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Ve"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sá"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lu"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mé"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Xo"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ve"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sá"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "en uso"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2047,6 +2079,7 @@ msgstr "Crear"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Sen privilexios"
@@ -2342,46 +2375,46 @@ msgstr "Efectuar a procura gardada"
msgid "The row has been deleted"
msgstr "Eliminouse o rexistro"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Matar (kill)"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "a procurar"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "A mostrar rexistros "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "a pesquisa levou %01.4f segundos"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Mudar"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operacións de resultados da procura"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Vista previa da impresión (con textos completos)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Non se atopou o vínculo"
@@ -2893,6 +2926,58 @@ msgstr "estrutura"
msgid "Go to view"
msgstr "Ir á vista"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Hai un parámetro non válido para a importación de CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Os campos rematan por"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Os campos delimítanse con"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Os campos escápanse con"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "As liñas rematan por"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Especificouse unha columna non válida (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "O formato de entrada de CSV non é válido na liña %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "A contaxe de campos non é válida na entrada de CSV na liña %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Este engadido non é capaz de realizar importacións comprimidas!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"O ficheiro XML especificado estaba estragado ou incompleto. Corrixa o "
+"problema e ténteo de novo."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3376,12 +3461,12 @@ msgstr "Conexións"
msgid "Copy table to (database.table):"
msgstr "Copiar a táboa a (base_de_datos.táboa):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "A táboa %s copiouse para %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Non se pode copiar unha táboa sobre si mesma"
@@ -3649,11 +3734,6 @@ msgstr "Non empregar AUTO_INCREMENT cos valores cero"
msgid "Drop the databases that have the same names as the users."
msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Gardouse o volcado no ficheiro %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinámico"
@@ -3722,10 +3802,6 @@ msgstr "Edición mediante MS-Excel"
msgid "Export/Import to scale"
msgstr "Exportar/Importar a escala"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Gardouse nun ficheiro o tipo de exportación seleccionada!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Insercións estendidas"
@@ -3744,30 +3820,10 @@ msgstr "Tentativas falidas"
msgid "Field %s has been dropped"
msgstr "Eliminouse o campo %s"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Os campos delimítanse con"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Os campos escápanse con"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Campos"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Os campos rematan por"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"O ficheiro %s xa existe no servidor - escolla outro nome ou seleccione a "
-"opción de eliminar."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Ficheiros"
@@ -3869,10 +3925,6 @@ msgid "Selected target tables have been synchronized with source tables."
msgstr ""
"Sincronizáronse as táboas de destino seleccionadas coas táboas de orixe."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Ten que escoller polo menos unha columna para mostrar"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebreu"
@@ -4050,35 +4102,11 @@ msgstr "Relacións internas"
msgid "Column count has to be larger than zero."
msgstr "O número de columnas ten que ser maior de cero"
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Especificouse unha columna non válida (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "A contaxe de campos non é válida na entrada de CSV na liña %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "O formato de entrada de CSV non é válido na liña %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Hai un parámetro non válido para a importación de CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Ten que engadir un campo polo menos"
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Este engadido non é capaz de realizar importacións comprimidas!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4089,7 +4117,7 @@ msgstr "O índice do servidor non é válido: \"%s\""
msgid "Japanese"
msgstr "Xaponés"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4171,10 +4199,6 @@ msgstr "Tamaño/Definir*"
msgid "Number of rows per page"
msgstr "Número de rexistros por páxina:"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "As liñas rematan por"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lituano"
@@ -4291,12 +4315,12 @@ msgstr "Mover o menú"
msgid "Move table to (database.table):"
msgstr "Mover a táboa a (base_de_datos.táboa):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Moveuse a táboa %s para %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Non se pode mover unha táboa sobre si mesma"
@@ -4366,11 +4390,6 @@ msgstr "Ningún"
msgid "This format has no options"
msgstr "Este formato non ten opcións"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "O servidor web non ten permiso para gardar o ficheiro %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Non ten direitos suficientes para estar aquí agora!"
@@ -4379,11 +4398,6 @@ msgstr "Non ten direitos suficientes para estar aquí agora!"
msgid "No rows selected"
msgstr "Non hai ningunha fileira seleccionada"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Non hai espazo para gardar o ficheiro %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5032,7 +5046,7 @@ msgstr "Xestión de erros:"
msgid "IO Thread %s only"
msgstr "Fío de E/S %s só"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5069,7 +5083,7 @@ msgstr "Omitir os seguintes"
msgid "Slave replication"
msgstr "Replicación do escravo"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6201,7 +6215,8 @@ msgstr "Xa existe a táboa %s!!"
msgid "Alter column(s)"
msgstr "Alterar columna(s)"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Alterouse a táboa %1$s sen problemas"
@@ -6216,7 +6231,7 @@ msgstr "Aplicar índice(s)"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Quere eliminar todas as fileiras anteriores das táboas de destino?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "O nome da táboa está vacío!"
@@ -6782,14 +6797,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "comodín"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"O ficheiro XML especificado estaba estragado ou incompleto. Corrixa o "
-"problema e ténteo de novo."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Exportar o contido"
diff --git a/po/he.po b/po/he.po
index 1d2bfe6ff..f17fffb44 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew \n"
@@ -332,7 +332,8 @@ msgstr "מופעל"
msgid "Collation"
msgstr "קידוד"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -389,8 +390,8 @@ msgstr "גודל דף"
msgid "Edit PDF Pages"
msgstr "עריכת דפי PDG"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "לא נמצאו טבלאות במאגר נתונים."
@@ -441,13 +442,17 @@ msgstr "נבדק לאחרונה"
msgid "%s table(s)"
msgstr "%s טבלאות"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "שאילתת SQL שלך בוצעה בהצלחה"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "עליך לבחור לפחות עמודה אחת לתצוגה"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -569,7 +574,7 @@ msgid "Browse"
msgstr "עיון"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -667,7 +672,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -699,20 +704,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s הוא מנוע האחסון ברירת המחדשל של שרת MySQL זה."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "עם הנבחרים:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "בחירת הכל"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -724,7 +729,7 @@ msgid "Check tables having overhead"
msgstr "בדיקת טבלאות עבור תקורה"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -752,8 +757,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -842,6 +847,31 @@ msgstr "בדיקת טבלה"
msgid "Database Log"
msgstr "מאגר נתונים"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "אןי מספיק מקום לשמור את הקובץ %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr "קובץ %s כבר קיים על השרת, שנה שם קובץ או בדוק אופציית כתיבה-על."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "לשרת אין הרשאה לשמור את קובץ %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "הוצאה נשמרה אל קובץ %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1029,21 +1059,21 @@ msgid "Choose field to display"
msgstr "בחירת שדה להצגה"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ללא"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "הקודם"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1051,96 +1081,96 @@ msgid "Next"
msgstr "הבא"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "סה\"כ"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "בינארי"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "מרץ"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "אפריל"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "מאי"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "יוני"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "יולי"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "אוגוסט"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "אוקטובר"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "ינואר"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "פברואר"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "מרץ"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "אפריל"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1148,176 +1178,176 @@ msgid "May"
msgstr "מאי"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "יוני"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "יולי"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "אוגוסט"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "ספטמבר"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "אוקטובר"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "נובמבר"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "דצמבר"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "יום ראשון"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "יום שני"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "יום שלישי"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "יום שישי"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "יום ראשון"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "יום שני"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "יום שלישי"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "יום רביעי"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "יום חמישי"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "יום שישי"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "שבת"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "יום ראשון"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "יום שני"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "יום שלישי"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "יום רביעי"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "יום חמישי"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "יום שישי"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "שבת"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "בשימוש"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2012,6 +2042,7 @@ msgstr "יצירה"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "ללא הרשאות"
@@ -2298,46 +2329,46 @@ msgstr "הרצת שאילתה מועדפת"
msgid "The row has been deleted"
msgstr "השורה נמחקה"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "בשאילתה"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "מראה שורות"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "סה\"כ"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "שאילתה לקחה %01.4f שניות"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "שינוי"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "תצוגת הדפסה (עם טקסטים מלאים)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "קישור לא נמצא"
@@ -2803,6 +2834,56 @@ msgstr "מבנה"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "סיום שדות ע\"י"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "שדות מוקפים ע\"י"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "הורדת שדות עם"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "שורות מסתיימות ע\"י"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3281,12 +3362,12 @@ msgstr "חיבורים"
msgid "Copy table to (database.table):"
msgstr "העתקת טבלה אל (מסד נתונים.טבלה):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "טבלה %s הועתקה אל %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "לא ניתן להעתיק טבלה אל אותה אחת!"
@@ -3553,11 +3634,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמו למשתמשים."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "הוצאה נשמרה אל קובץ %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "דינאמי"
@@ -3627,10 +3703,6 @@ msgstr "מהדורת Excel"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "הכנסות מורחבות"
@@ -3649,28 +3721,10 @@ msgstr "ניסיונות כושלים"
msgid "Field %s has been dropped"
msgstr "שדה %s נמחק"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "שדות מוקפים ע\"י"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "הורדת שדות עם"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "שדות"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "סיום שדות ע\"י"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr "קובץ %s כבר קיים על השרת, שנה שם קובץ או בדוק אופציית כתיבה-על."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3771,10 +3825,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "עליך לבחור לפחות עמודה אחת לתצוגה"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "עברית"
@@ -3947,35 +3997,11 @@ msgstr "יחסים פנימיים"
msgid "Column count has to be larger than zero."
msgstr "מספר העמודות צריך להיות גדול מאפס."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "אתה חייב להוסיף לפחות שדה אחד."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3986,7 +4012,7 @@ msgstr ""
msgid "Japanese"
msgstr "יפנית"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4068,10 +4094,6 @@ msgstr "אורך/ערכים*"
msgid "Number of rows per page"
msgstr "מספר של שורות לכל דף"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "שורות מסתיימות ע\"י"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "ליטאית"
@@ -4183,12 +4205,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "העברת טבלה אל (מסד נתונים.טבלה):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "הטבלה %s הועברה ל- %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
#, fuzzy
msgid "Can't move table to same one!"
msgstr "לא ניתן להעתיק טבלה אל אותה אחת!"
@@ -4258,11 +4280,6 @@ msgstr "ללא"
msgid "This format has no options"
msgstr "לתבנית זאת אין אפשרויות"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "לשרת אין הרשאה לשמור את קובץ %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!"
@@ -4271,11 +4288,6 @@ msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!"
msgid "No rows selected"
msgstr "לא נבחרו שורות"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "אןי מספיק מקום לשמור את הקובץ %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4906,7 +4918,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4941,7 +4953,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5916,7 +5928,8 @@ msgstr "שם המשתמש %s כבר קיים!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5931,7 +5944,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "שם הטבלה ריק!"
@@ -6454,12 +6467,6 @@ msgstr ""
msgid "wildcard"
msgstr "תו כללי"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 955fca317..f07cd57eb 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-05-10 14:17+0200\n"
"Last-Translator: \n"
"Language-Team: hindi \n"
@@ -293,8 +293,6 @@ msgid "Status"
msgstr "स्थिति"
#: db_operations.php:544
-#| msgctxt "$strBLOBRepositoryEnabled"
-#| msgid "Enabled"
msgctxt "BLOB repository"
msgid "Enabled"
msgstr "सक्षम"
@@ -331,7 +329,8 @@ msgstr "सक्षम"
msgid "Collation"
msgstr "क्रम में करें"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -387,8 +386,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr "PDF पेज एडिट करें"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "डाटाबेस में कोई टेबल नहीं।"
@@ -439,13 +438,17 @@ msgstr ""
msgid "%s table(s)"
msgstr " %s टेबल(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "आपकी SQL-query सफलता से पूरा किया"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr ""
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -567,7 +570,7 @@ msgid "Browse"
msgstr "ब्राउज़"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -665,7 +668,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -696,20 +699,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "चुने हुओं को:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "सभी को चेक करें"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -721,7 +724,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -749,8 +752,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -834,6 +837,31 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1019,17 +1047,17 @@ msgid "Choose field to display"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1037,94 +1065,94 @@ msgid "Next"
msgstr " अगला"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr ""
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "बइनरी"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "मार्च"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "अप्रैल"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "मई"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "जून"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "जुलाई"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "अगस्त"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "अक्तूबर"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "जनवरी"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "फरवरी"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "मार्च"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "अप्रैल"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1132,174 +1160,174 @@ msgid "May"
msgstr "मई"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "जून"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "जुलाई"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "अगस्त"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "सितम्बर"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "अक्तूबर"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "नवम्बर"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "दिसमबर"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "रविवार"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "सोमवार"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "मन्गलवार"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "शुक्रवार"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "रविवार"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "सोमवार"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "मन्गलवार"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "बुधवार"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "गुरुवार"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "शुक्रवार"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "शनिवार"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "रविवार"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "सोमवार"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "मन्गलवार"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "बुधवार"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "गुरुवार"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "शुक्रवार"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "शनिवार"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr ""
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr ""
@@ -1975,6 +2003,7 @@ msgstr "बनाइये"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "कोइ प्रिविलेज नहीं"
@@ -2252,46 +2281,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr "रौ को डिलीट कर दिया"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "रौ देखिये"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr " कुल"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "क्वरी को %01.4f सेकेंड का समय लगा"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "बदलिये"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr ""
@@ -2750,6 +2779,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr ""
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr ""
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "लाईन समाप्त होता है"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3224,12 +3303,12 @@ msgstr ""
msgid "Copy table to (database.table):"
msgstr " (database.table) में टेबल को कापी करें:"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr " %s टेबल को %s में कापी कर दिया."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3487,11 +3566,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Drop the databases that have the same names as the users."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr ""
@@ -3560,10 +3634,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "विस्तृत इनसर्टस"
@@ -3582,28 +3652,10 @@ msgstr ""
msgid "Field %s has been dropped"
msgstr " फील्ड %s ड्रोप कर दिया"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr ""
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr ""
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr " फील्डस"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr ""
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr ""
@@ -3699,10 +3751,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr ""
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr ""
@@ -3871,35 +3919,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3910,7 +3934,7 @@ msgstr ""
msgid "Japanese"
msgstr "जापानी"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -3992,10 +4016,6 @@ msgstr "लंबाई/अर्थ*"
msgid "Number of rows per page"
msgstr "प्रति पृष्ट कितने रौ"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "लाईन समाप्त होता है"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr ""
@@ -4098,12 +4118,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr " टेबल को (database.table) में मूव करें:"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr " %s टेबल को %s में मूव कर दिया."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4171,11 +4191,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr ""
@@ -4184,11 +4199,6 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4807,7 +4817,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4842,7 +4852,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5810,7 +5820,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5825,7 +5836,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr " टेबल का नाम खाली है!"
@@ -6343,12 +6354,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 161349aae..ec44e7c10 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian
\n"
@@ -336,7 +336,8 @@ msgstr "Omogućeno"
msgid "Collation"
msgstr "Uspoređivanje"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Veličina papira"
msgid "Edit PDF Pages"
msgstr "Uredi PDF stranice"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "U bazi podataka nisu pronađene tablice."
@@ -446,13 +447,17 @@ msgstr "Posljednja provjera"
msgid "%s table(s)"
msgstr "%s tablica"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Vaš SQL upit uspješno je izvršen"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Morate odabrati najmanje jedan stupac za prikazivanje"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Pretraživanje"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -704,20 +709,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je zadani pogon pohranjivanja na ovom MySQL poslužitelju."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "S odabirom:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -729,7 +734,7 @@ msgid "Check tables having overhead"
msgstr "Provjeri za prepunjene tablice"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -757,8 +762,8 @@ msgid "Analyze table"
msgstr "Analiziraj tablicu"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -850,6 +855,33 @@ msgstr "Provjeri tablicu"
msgid "Database Log"
msgstr "Baza podataka"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Odabrana vrsta izvoza mora biti spremljena u datoteku!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Nema dovoljno prostora za spremanje datoteke %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Datoteka %s već postoji na poslužitelju. Promijenite naziv ili označite "
+"opciju za prepisivanje."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Web poslužitelj nema dopuštenja za spremanje datoteke %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Izbacivanje je spremljeno u datoteku %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1047,20 +1079,20 @@ msgid "Choose field to display"
msgstr "Odaberi polje za prikaz"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Podaci"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodni"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1068,96 +1100,96 @@ msgid "Next"
msgstr "Sljedeće"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarno"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Ožu"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Tra"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Svi"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Lip"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Srp"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Kol"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Lis"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Sij"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Velj"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Ožu"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Tra"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1165,178 +1197,178 @@ msgid "May"
msgstr "Svi"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Srp"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Kol"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Ruj"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Stu"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Pro"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Sri"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sri"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "u upotrebi"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2051,6 +2083,7 @@ msgstr "Izradi"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Bez privilegija"
@@ -2340,46 +2373,46 @@ msgstr "Izvrši favorizirani upit"
msgid "The row has been deleted"
msgstr "Redak je izbrisan"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Eliminiraj"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "unutar upita"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Prikazivanje redaka"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sek"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Promijeni"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operacije rezultata upita"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Prikaz ispisa (s potpunim tekstovima)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -2890,6 +2923,56 @@ msgstr "Strukturu"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Neispravan parametar za CSV uvoz: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Polja završena s"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Polja obuhvaćena po"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Polja izostavljena po"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Redovi završeni s"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Određen je neispravan stupac (%s) !"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Neispravan broj polja u CSV unosu unutar retka %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3368,12 +3451,12 @@ msgstr "Veze"
msgid "Copy table to (database.table):"
msgstr "Kopiraj tablicu u (bazapodataka.tablica):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tablica %s kopirana je u %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Kopiranje u istu tablicu nije moguće!"
@@ -3643,11 +3726,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Izbacivanje je spremljeno u datoteku %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamički"
@@ -3716,10 +3794,6 @@ msgstr "Excel izdanje"
msgid "Export/Import to scale"
msgstr "Uvoz / Izvor prema omjeru"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Odabrana vrsta izvoza mora biti spremljena u datoteku!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Proširena umetanja"
@@ -3738,30 +3812,10 @@ msgstr "Neuspjeli pokušaji"
msgid "Field %s has been dropped"
msgstr "Polje %s je odbačeno"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Polja obuhvaćena po"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Polja izostavljena po"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Polja"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Polja završena s"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Datoteka %s već postoji na poslužitelju. Promijenite naziv ili označite "
-"opciju za prepisivanje."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Datoteke"
@@ -3864,10 +3918,6 @@ msgstr "Hvatišta"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Morate odabrati najmanje jedan stupac za prikazivanje"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebrejski"
@@ -4041,35 +4091,11 @@ msgstr "Interne relacije"
msgid "Column count has to be larger than zero."
msgstr "Broj stupaca mora biti veći od nule."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Određen je neispravan stupac (%s) !"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Neispravan broj polja u CSV unosu unutar retka %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Neispravno oblikovanje u CSV unosu unutar retka %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Neispravan parametar za CSV uvoz: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Morate dodati najmanje jedno polje."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4080,7 +4106,7 @@ msgstr "Neispravan indeks poslužitelja: \"%s\""
msgid "Japanese"
msgstr "Japanski"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4162,10 +4188,6 @@ msgstr "Duljina/Vrijednosti"
msgid "Number of rows per page"
msgstr "Broj redaka po stranici"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Redovi završeni s"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litavski"
@@ -4282,12 +4304,12 @@ msgstr "Premjesti izbornik"
msgid "Move table to (database.table):"
msgstr "Premjesti tablicu u (bazapodataka.tablica):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tablica %s premještena je u %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Premještanje u istu tablicu nije moguće!"
@@ -4358,11 +4380,6 @@ msgstr "bez kompresije"
msgid "This format has no options"
msgstr "Ovaj oblik nema raspoložive opcije"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Web poslužitelj nema dopuštenja za spremanje datoteke %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Nemate dovoljno privilegija da boravite ovdje!"
@@ -4371,11 +4388,6 @@ msgstr "Nemate dovoljno privilegija da boravite ovdje!"
msgid "No rows selected"
msgstr "Nema odabranih redova"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Nema dovoljno prostora za spremanje datoteke %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5011,7 +5023,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5046,7 +5058,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6164,7 +6176,8 @@ msgstr "Tablica %s već postoji!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tablica %1$s uspješno je izmijenjena."
@@ -6179,7 +6192,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Naziv tablice je prazan!"
@@ -6750,12 +6763,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "džoker"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/hu.po b/po/hu.po
index 2e532d177..2f2145bef 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian \n"
@@ -334,7 +334,8 @@ msgstr "Engedélyezés"
msgid "Collation"
msgstr "Illesztés"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "Papírméret"
msgid "Edit PDF Pages"
msgstr "PDF oldalak szerkesztése"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Nem található tábla az adatbázisban."
@@ -444,13 +445,17 @@ msgstr "Utolsó ellenőrzés"
msgid "%s table(s)"
msgstr "%s tábla"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Az SQL-lekérdezés végrehajtása sikerült"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Ki kell legalább egy megjelenítendő oszlopot választania"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -572,7 +577,7 @@ msgid "Browse"
msgstr "Tartalom"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -670,7 +675,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "Ezen a MySQL szerveren a(z) %s az alapértelmezett tárolómotor."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "A kijelöltekkel végzendő művelet:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Mind kijelölése"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "A felülírott táblák kijelölése"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ msgid "Analyze table"
msgstr "Tábla elemzése"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -848,6 +853,33 @@ msgstr "Tábla ellenőrzése"
msgid "Database Log"
msgstr "Adatbázis"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Fájlban kell menteni a kiválasztott exportálási típust!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Kevés a hely a(z) %s fájl mentéséhez."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"már létezik %s fájl a szerveren, változtassa meg a fájlnevet, vagy állítsa "
+"be a felülírási opciót!"
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "A webszerver számára nem engedélyezett a(z) %s fájl mentése."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1045,21 +1077,21 @@ msgid "Choose field to display"
msgstr "Válassza ki a megjelenítendő mezőt"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Adományozás"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Előző"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1067,96 +1099,96 @@ msgid "Next"
msgstr "Következő"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Összesen"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Bináris"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "márc."
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "ápr."
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "máj."
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jún."
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "júl."
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "aug."
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt."
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "jan."
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "febr."
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "márc."
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "ápr."
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1164,178 +1196,178 @@ msgid "May"
msgstr "máj."
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "jún."
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "júl."
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "aug."
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "szept."
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "okt."
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "nov."
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "dec."
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "V"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "H"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "K"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "P"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "V"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "H"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "K"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Sze"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Cs"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Szo"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "V"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "H"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "K"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sze"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Cs"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Szo"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "használatban"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2054,6 +2086,7 @@ msgstr "Létrehozás"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Nincs jog"
@@ -2348,46 +2381,46 @@ msgstr "Könyvjelzőkhöz hozzáadott lekérdezés végrehajtása"
msgid "The row has been deleted"
msgstr "A sor törlése megtörtént"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Leállít"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "lekérdezésben"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Megjelenített sorok:"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "összesen"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "a lekérdezés %01.4f másodpercig tartott"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Módosítás"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Műveletek a lekérdezési eredménnyel"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Nyomtatási nézet (teljes szöveggel)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Nem található a hivatkozás"
@@ -2896,6 +2929,56 @@ msgstr "Szerkezet"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "A CSV importálás paramétere érvénytelen: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Mező vége"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Mező lezárás"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Mező escape karakter"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Sorok vége"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "A megadott oszlop (%s) érvénytelen!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "A CSV bevitel %d. sorában a formázás érvénytelen."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "A CSV bevitel %d. sorában a mezők száma érvénytelen."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3379,12 +3462,12 @@ msgstr "Kapcsolatok"
msgid "Copy table to (database.table):"
msgstr "Tábla másolása (adatbázis.tábla):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "A(z) %s tábla másolása %s néven megtörtént."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Nem másolható ugyanabba a tábla!"
@@ -3658,11 +3741,6 @@ msgstr "Az AUTO_INCREMENT nulla értékekhez nincs használatban"
msgid "Drop the databases that have the same names as the users."
msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamikus"
@@ -3731,10 +3809,6 @@ msgstr "Excel szerkesztés"
msgid "Export/Import to scale"
msgstr "Méretezendő exportálás/importálás"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Fájlban kell menteni a kiválasztott exportálási típust!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Kiterjesztett beszúrások"
@@ -3753,30 +3827,10 @@ msgstr "Sikertelen próbák"
msgid "Field %s has been dropped"
msgstr "A(z) %s mező eldobása megtörtént"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Mező lezárás"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Mező escape karakter"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Mezők száma"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Mező vége"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"már létezik %s fájl a szerveren, változtassa meg a fájlnevet, vagy állítsa "
-"be a felülírási opciót!"
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Fájlok"
@@ -3879,10 +3933,6 @@ msgstr "Kezelő"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Ki kell legalább egy megjelenítendő oszlopot választania"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Héber"
@@ -4058,35 +4108,11 @@ msgstr "Belső kapcsolatok"
msgid "Column count has to be larger than zero."
msgstr "Az oszlopok számának nullánál nagyobbnak kell lennie."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "A megadott oszlop (%s) érvénytelen!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "A CSV bevitel %d. sorában a mezők száma érvénytelen."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "A CSV bevitel %d. sorában a formázás érvénytelen."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "A CSV importálás paramétere érvénytelen: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Legalább egy mezőt meg kell adnia."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4097,7 +4123,7 @@ msgstr "Érvénytelen szerverindex: \"%s\""
msgid "Japanese"
msgstr "Japán"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4179,10 +4205,6 @@ msgstr "Hossz/Érték*"
msgid "Number of rows per page"
msgstr "Sorok száma oldalanként"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Sorok vége"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litván"
@@ -4299,12 +4321,12 @@ msgstr "Menü áthelyezése"
msgid "Move table to (database.table):"
msgstr "Tábla áthelyezése (adatbázis.tábla):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "A(z) %s tábla áthelyezése a(z) %s adatbázisba kész."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Nem helyezhető át ugyanabba a tábla!"
@@ -4374,11 +4396,6 @@ msgstr "Nincs"
msgid "This format has no options"
msgstr "Ennek a formátumnak nincsenek beállításai"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "A webszerver számára nem engedélyezett a(z) %s fájl mentése."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Önnek nincs elég joga ahhoz, hogy épp most itt tartózkodjon!"
@@ -4387,11 +4404,6 @@ msgstr "Önnek nincs elég joga ahhoz, hogy épp most itt tartózkodjon!"
msgid "No rows selected"
msgstr "Nem jelölte ki a sort"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Kevés a hely a(z) %s fájl mentéséhez."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5039,7 +5051,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5074,7 +5086,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6193,7 +6205,8 @@ msgstr "Már létezik nevű %s tábla!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "A(z) %1$s tábla módosítása sikerült"
@@ -6208,7 +6221,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Üres a tábla neve!"
@@ -6785,12 +6798,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "karakterhelyettesítő"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/id.po b/po/id.po
index 94b4a8882..1ebc5baac 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-17 21:14+0200\n"
"Last-Translator: Azhari Harahap \n"
"Language-Team: indonesian \n"
@@ -335,7 +335,8 @@ msgstr "Aktif"
msgid "Collation"
msgstr "Penyortiran"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -393,8 +394,8 @@ msgstr "Ukuran kertas"
msgid "Edit PDF Pages"
msgstr "Ubah halaman PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Tidak ada tabel dalam database."
@@ -445,13 +446,17 @@ msgstr "Pemeriksaan terakhir"
msgid "%s table(s)"
msgstr "tabel %s"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Sukses menjalankan perintah SQL"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Sekurang-kurangnya satu kolom harus dipilih untuk ditampilkan"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -573,7 +578,7 @@ msgid "Browse"
msgstr "Browse"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr "Pelacakan aktif"
msgid "Tracking is not active."
msgstr "Pelacakan tidak aktif."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s adalah mesin penyimpan utama pada server MySQL ini."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "yang ditandai:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Pilih semua"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr "Periksa Overheaded"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Analisa tabel"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -843,6 +848,33 @@ msgstr "Lacak tabel"
msgid "Database Log"
msgstr "Log Database"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Tidak cukup ruang untuk menyimpan %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"File %s sudah ada pada server. Gantikan nama file atau periksa pilihan "
+"Overwrite."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Webserver tidak memilik hak (permission) untuk menyimpan file %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump (Skema) disimpan pada file %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1036,21 +1068,21 @@ msgid "Choose field to display"
msgstr "Pilih Field untuk ditampilkan"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "tanpa"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Sebelumnya"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1058,96 +1090,96 @@ msgid "Next"
msgstr "Berikutnya"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jumlah"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binari"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Maret"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "April"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mei"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Juni"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Juli"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Agustus"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Oktober"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Januari"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Februari"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Maret"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "April"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1155,178 +1187,178 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Juni"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Juli"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Agustus"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "September"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Oktober"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nopember"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Desember"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Minggu"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Senin"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Selasa"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jumat"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Minggu"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Senin"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Selasa"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Rabu"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Kamis"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Jumat"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sabtu"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Minggu"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Senin"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Selasa"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Rabu"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Kamis"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jumat"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sabtu"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "sedang digunakan"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2027,6 +2059,7 @@ msgstr "Ciptakan"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Tidak ada Hak Akses (privilege)"
@@ -2312,46 +2345,46 @@ msgstr "Eksekusikan pencarian dengan mengikuti penunjuk halaman"
msgid "The row has been deleted"
msgstr "Baris telah dihapus"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Tutup"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "dalam susunan pemeriksaan"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Tampilan baris"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "pencarian membutuhkan waktu %01.4f detik"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Ubah"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Pandangan cetak (dengan teks lengkap)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link tidak ditemukan"
@@ -2836,6 +2869,58 @@ msgstr "Struktur"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Fields diputus oleh"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Field ditutup dengan"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Field dikembalikan oleh"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Garis diputuskan oleh"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"File XML yang ditentukan cacat atau tidak lengkap. Mohon perbaiki dan coba "
+"lagi."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
msgid "Encoding conversion"
@@ -3312,12 +3397,12 @@ msgstr "Koneksi"
msgid "Copy table to (database.table):"
msgstr "Salin tabel ke (database.nama tabel):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabel %s telah disalin ke %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Penyalinan tabel pada diri-sendiri tidak bisa dilakukan!"
@@ -3581,11 +3666,6 @@ msgstr "Jangan gunakan AUTO_INCREMENT untuk nilai nol"
msgid "Drop the databases that have the same names as the users."
msgstr "Hapus database yang memiliki nama yang sama dengan pengguna."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump (Skema) disimpan pada file %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamis"
@@ -3654,10 +3734,6 @@ msgstr "Edisi Excel"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "INSERT memperluas"
@@ -3676,30 +3752,10 @@ msgstr "Gagal"
msgid "Field %s has been dropped"
msgstr "Field %s telah dihapus"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Field ditutup dengan"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Field dikembalikan oleh"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Field"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Fields diputus oleh"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"File %s sudah ada pada server. Gantikan nama file atau periksa pilihan "
-"Overwrite."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3802,10 +3858,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Sekurang-kurangnya satu kolom harus dipilih untuk ditampilkan"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Bahasa Yahudi"
@@ -3980,35 +4032,11 @@ msgstr "Relasi internal"
msgid "Column count has to be larger than zero."
msgstr "Perhitungan kolom wajib lebih besar dari nol."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Anda perlu menambahkan sedikitnya satu Field."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4019,7 +4047,7 @@ msgstr ""
msgid "Japanese"
msgstr "Bahasa Jepang"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4101,10 +4129,6 @@ msgstr "Ukuran Panjang/Nilai*"
msgid "Number of rows per page"
msgstr "Jumlah baris per halaman"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Garis diputuskan oleh"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Bahasa Lithuania"
@@ -4222,12 +4246,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Pindahkan tabel ke (database.tabel):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabel %s telah dipindahkan ke %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Memindahkan tabel ke diri-sendiri tidak bisa dilakukan!"
@@ -4296,11 +4320,6 @@ msgstr "tanpa"
msgid "This format has no options"
msgstr "Format ini tidak ada pilihannya"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Webserver tidak memilik hak (permission) untuk menyimpan file %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Hak Akses Anda untuk melanjut tidak cukup!"
@@ -4309,11 +4328,6 @@ msgstr "Hak Akses Anda untuk melanjut tidak cukup!"
msgid "No rows selected"
msgstr "Tidak ada baris yang dipilih"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Tidak cukup ruang untuk menyimpan %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4960,7 +4974,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4995,7 +5009,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5992,7 +6006,8 @@ msgstr "Pengguna %s telah terdaftar!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Sukses menghapus Pengguna yang dipilih."
@@ -6007,7 +6022,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Nama tabel kosong!"
@@ -6567,14 +6582,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "wildcard"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"File XML yang ditentukan cacat atau tidak lengkap. Mohon perbaiki dan coba "
-"lagi."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Ekspor isi"
diff --git a/po/it.po b/po/it.po
index cb0b7c02a..e627bc570 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-11 11:19+0200\n"
"Last-Translator: Fabio \n"
"Language-Team: italian \n"
@@ -337,7 +337,8 @@ msgstr "Abilita"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr "Dimensioni carta"
msgid "Edit PDF Pages"
msgstr "Modifica pagine PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Non ci sono tabelle nel database."
@@ -447,13 +448,17 @@ msgstr "Ultimo controllo"
msgid "%s table(s)"
msgstr "%s tabella(e)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "La query è stata eseguita con successo"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Devi scegliere almeno una Colonna da mostrare"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -575,7 +580,7 @@ msgid "Browse"
msgstr "Mostra"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -673,7 +678,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -706,20 +711,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s è il motore di memorizzazione predefinito su questo server MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Se selezionati:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Seleziona tutti"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -731,7 +736,7 @@ msgid "Check tables having overhead"
msgstr "Controllo addizionale"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -759,8 +764,8 @@ msgid "Analyze table"
msgstr "Analizza tabella"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -852,6 +857,34 @@ msgstr "Controlla tabella"
msgid "Database Log"
msgstr "Database"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+"Il tipo di esportazione selezionato necessita di essere salvato in un file!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Spazio insufficiente per salvare il file %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Il file %s esiste già sul server: prego, cambiare nome del file o "
+"selezionare l'opzione \"sovrascrivi\"."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Il server web non possiede i privilegi per salvare il file %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Il dump è stato salvato sul file %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1051,21 +1084,21 @@ msgid "Choose field to display"
msgstr "Scegli il campo da mostrare"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Dona"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Precedente"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1073,96 +1106,96 @@ msgid "Next"
msgstr "Prossimo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Totale"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binario"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "mag"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "giu"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "lug"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ago"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ott"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "gen"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1170,178 +1203,178 @@ msgid "May"
msgstr "mag"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "giu"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "lug"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "ago"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "set"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "ott"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "dic"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dom"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ven"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Mer"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Gio"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Ven"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lun"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mer"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Gio"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ven"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in uso"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2051,6 +2084,7 @@ msgstr "Crea"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Nessun Privilegio"
@@ -2348,46 +2382,46 @@ msgstr "Esegue la query dalle preferite"
msgid "The row has been deleted"
msgstr "La riga è stata cancellata"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Rimuovi"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "nella query"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Visualizzazione record "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "Totali"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "La query ha impiegato %01.4f sec"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Modifica"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Risultato delle operazioni di Query"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Vista stampa (con full text)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link non trovato"
@@ -2898,6 +2932,56 @@ msgstr "Struttura"
msgid "Go to view"
msgstr "Vai alla visualizzazione"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Parametro non valido per importazione CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Campo terminato da"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Campo composto da"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Campo impedito da"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linee terminate da"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Colonna specificata (%s) invalida!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Formato non valido per l'input CSV alla linea %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Contatore di campo non valido nell'input CSV alla linea %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Questo plugin non supporta importazioni di dati compressi!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3380,12 +3464,12 @@ msgstr "Connessioni"
msgid "Copy table to (database.table):"
msgstr "Copia la tabella nel (database.tabella):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "La tabella %s è stata copiata su %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Impossibile copiare la tabella su se stessa!"
@@ -3652,11 +3736,6 @@ msgstr "Non usare AUTO_INCREMENT per il valore zero"
msgid "Drop the databases that have the same names as the users."
msgstr "Elimina i databases gli stessi nomi degli utenti."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Il dump è stato salvato sul file %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamico"
@@ -3725,11 +3804,6 @@ msgstr "Edizione Excel"
msgid "Export/Import to scale"
msgstr "Importa/esporta alla dimensione"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-"Il tipo di esportazione selezionato necessita di essere salvato in un file!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Inserimenti estesi"
@@ -3748,30 +3822,10 @@ msgstr "Tentativi falliti"
msgid "Field %s has been dropped"
msgstr "Il campo %s è stato eliminato"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Campo composto da"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Campo impedito da"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Campi"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Campo terminato da"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Il file %s esiste già sul server: prego, cambiare nome del file o "
-"selezionare l'opzione \"sovrascrivi\"."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "File"
@@ -3874,10 +3928,6 @@ msgstr ""
"Le tabelle di destinazione selezionate sono state sincronizzate con le "
"tabelle di origine."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Devi scegliere almeno una Colonna da mostrare"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Ebreo"
@@ -4054,35 +4104,11 @@ msgstr "Relazioni interne"
msgid "Column count has to be larger than zero."
msgstr "Il contatore delle colonne deve essere superiore a 0."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Colonna specificata (%s) invalida!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Contatore di campo non valido nell'input CSV alla linea %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Formato non valido per l'input CSV alla linea %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Parametro non valido per importazione CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Deviaggiungere come minimo un campo."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Questo plugin non supporta importazioni di dati compressi!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4093,7 +4119,7 @@ msgstr "Server index non valido: \"%s\""
msgid "Japanese"
msgstr "Giapponese"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4178,10 +4204,6 @@ msgstr "Lunghezza/Set*"
msgid "Number of rows per page"
msgstr "record per pagina"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linee terminate da"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lituano"
@@ -4301,12 +4323,12 @@ msgstr "Muovi menù"
msgid "Move table to (database.table):"
msgstr "Sposta la tabella nel (database.tabella):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "La tabella %s è stata spostata in %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Impossibile spostare la tabella su se stessa!"
@@ -4376,11 +4398,6 @@ msgstr "Nessuno"
msgid "This format has no options"
msgstr "Questo formato non ha opzioni"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Il server web non possiede i privilegi per salvare il file %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Non hai i permessi per effettuare questa operazione!"
@@ -4389,11 +4406,6 @@ msgstr "Non hai i permessi per effettuare questa operazione!"
msgid "No rows selected"
msgstr "Nessuna riga selezionata"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Spazio insufficiente per salvare il file %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5038,7 +5050,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5074,7 +5086,7 @@ msgstr ""
msgid "Slave replication"
msgstr "Configurazione del server"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6205,7 +6217,8 @@ msgstr "La tabella %s esiste già!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "La tabella %1$s è già stata modificata con successo"
@@ -6220,7 +6233,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Il nome della tabella è vuoto!"
@@ -6795,12 +6808,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "wildcard"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/ja.po b/po/ja.po
index c1f5ea8ba..fe229cb30 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal \n"
"Language-Team: japanese \n"
@@ -336,7 +336,8 @@ msgstr ""
msgid "Collation"
msgstr "照合順序"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "用紙サイズ"
msgid "Edit PDF Pages"
msgstr "PDF ページを編集する"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "このデータベースにはテーブルがありません"
@@ -446,13 +447,17 @@ msgstr "最終検査"
msgid "%s table(s)"
msgstr "%s テーブル"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL は正常に実行されました"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "最低ひとつは表示するカラムを選択してください"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "表示"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s はこの MySQL サーバのデフォルトストレージエンジンです"
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "チェックしたものを:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "すべてチェックする"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "オーバーヘッドのあるテーブルを確認してください"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -841,6 +846,33 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "この形式のエクスポートはファイルに保存する必要があります!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "空き容量不足でファイル %s を保存できません"
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"サーバ上に既存のファイル %s があります。ファイル名を変更するか、上書きオプ"
+"ションを有効にしてください"
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "このウェブサーバにはファイル %s を保存する権限がありません"
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "ダンプをファイル %s に保存しました"
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1037,21 +1069,21 @@ msgid "Choose field to display"
msgstr "表示するフィールドを選択してください"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "なし"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "前"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1059,91 +1091,91 @@ msgid "Next"
msgstr "次へ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "合計"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " バイナリ"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "8 月"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "9 月"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "10 月"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "11 月"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
msgid "July"
msgstr "日"
-#: js/messages.php:88
+#: js/messages.php:89
msgid "August"
msgstr ""
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
msgid "October"
msgstr ""
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "1 月','2 月','3 月','4 月','5 月','6 月"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "7 月"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "8 月"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "9 月"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1151,179 +1183,179 @@ msgid "May"
msgstr "10 月"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "11 月"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
#, fuzzy
msgid "Jul"
msgstr "日"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr ""
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "日"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "月"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "火"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "金"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "日"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "月"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "火"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "水"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "木"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "金"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "土"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "日"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "月"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "火"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "水"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "木"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "金"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "土"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "使用中"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2028,6 +2060,7 @@ msgstr "作成"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "特権なし"
@@ -2318,46 +2351,46 @@ msgstr "ブックマークされたクエリを実行する"
msgid "The row has been deleted"
msgstr "行を削除しました"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "停止"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "行/クエリ"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "表示中の列"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "合計"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "クエリの実行時間 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "変更"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "クエリ結果操作"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "印刷用画面 (全テキストを含む)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "リンク先が見つかりません"
@@ -2858,6 +2891,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "CSV インポートのパラメータが不正です: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "フィールド区切り記号"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "フィールド囲み記号"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "フィールドのエスケープ記号"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "行の終端記号"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "不正なカラム(%s)が指定されています!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "CSV 入力の書式が不正です (行: %d)"
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "CSV 入力のフィールド数が不正です (行: %d)"
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "このプラグインでは圧縮されたファイルのインポートはできません!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3332,12 +3415,12 @@ msgstr "接続"
msgid "Copy table to (database.table):"
msgstr "テーブルを(database.table)にコピーする:"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "テーブル %s を %s にコピーしました"
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "同じテーブルにはコピーできません!"
@@ -3602,11 +3685,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "ユーザと同名のデータベースを削除する"
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "ダンプをファイル %s に保存しました"
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "動的"
@@ -3675,10 +3753,6 @@ msgstr "Excel のエディション"
msgid "Export/Import to scale"
msgstr "倍率にあわせたエクスポート/インポート"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "この形式のエクスポートはファイルに保存する必要があります!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "長い INSERT 文を作成する"
@@ -3697,30 +3771,10 @@ msgstr "失敗回数"
msgid "Field %s has been dropped"
msgstr "フィールド %s を削除しました"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "フィールド囲み記号"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "フィールドのエスケープ記号"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "フィールド"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "フィールド区切り記号"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"サーバ上に既存のファイル %s があります。ファイル名を変更するか、上書きオプ"
-"ションを有効にしてください"
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "ファイル"
@@ -3822,10 +3876,6 @@ msgstr "ハンドラ"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "最低ひとつは表示するカラムを選択してください"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "ヘブライ語"
@@ -3999,35 +4049,11 @@ msgstr "内部リレーション"
msgid "Column count has to be larger than zero."
msgstr "カラム数は 0 より大きくなければいけません"
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "不正なカラム(%s)が指定されています!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "CSV 入力のフィールド数が不正です (行: %d)"
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "CSV 入力の書式が不正です (行: %d)"
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "CSV インポートのパラメータが不正です: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "最低ひとつはフィールドを追加してください"
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "このプラグインでは圧縮されたファイルのインポートはできません!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4038,7 +4064,7 @@ msgstr "サーバのインデックスが不正です: \"%s\""
msgid "Japanese"
msgstr "日本語"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4120,10 +4146,6 @@ msgstr "長さ/値"
msgid "Number of rows per page"
msgstr "ページあたりの行数"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "行の終端記号"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "リトアニア語"
@@ -4238,12 +4260,12 @@ msgstr "メニューを移動する"
msgid "Move table to (database.table):"
msgstr "テーブルの移動先(database.table):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "テーブル %s を %s に移動しました"
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "同じテーブルには移動できません!"
@@ -4313,11 +4335,6 @@ msgstr ""
msgid "This format has no options"
msgstr "この書式にはオプションはありません"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "このウェブサーバにはファイル %s を保存する権限がありません"
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "特権不足でアクセスできません!"
@@ -4326,11 +4343,6 @@ msgstr "特権不足でアクセスできません!"
msgid "No rows selected"
msgstr "行が選択されていません"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "空き容量不足でファイル %s を保存できません"
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4953,7 +4965,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4988,7 +5000,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6068,7 +6080,8 @@ msgstr "テーブル %s は既に存在します!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "テーブル %1$s を変更しました"
@@ -6083,7 +6096,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "テーブル名が空です!"
@@ -6643,12 +6656,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "ワイルドカード"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/ka.po b/po/ka.po
index 4f0152ba5..efea7f091 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
@@ -334,7 +334,8 @@ msgstr "ჩართვა"
msgid "Collation"
msgstr "კოლაცია"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "გვერდის ზომა"
msgid "Edit PDF Pages"
msgstr "PDF გვერდების რედაქტირება"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "No tables found in database."
@@ -444,13 +445,17 @@ msgstr "Last check"
msgid "%s table(s)"
msgstr "%s table(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Your SQL query has been executed successfully"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "You have to choose at least one column to display"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -572,7 +577,7 @@ msgid "Browse"
msgstr "არჩევა"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -670,7 +675,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "With selected:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "ყველას შემოწმება"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "Check tables having overhead"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ msgid "Analyze table"
msgstr "Analyze table"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -849,6 +854,32 @@ msgstr "ცხრილის შემოწმება"
msgid "Database Log"
msgstr "მონაცემთა ბაზა"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Selected export type has to be saved in file!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Insufficient space to save the file %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"File %s already exists on server, change filename or check overwrite option."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "The web server does not have permission to save the file %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump has been saved to file %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1043,21 +1074,21 @@ msgid "Choose field to display"
msgstr "აირჩიეთ საჩვენებელი ველი"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "შემოწირულობა"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "წინა"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1065,96 +1096,96 @@ msgid "Next"
msgstr "შემდეგი"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "სულ"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ბინარული"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "მარ"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "აპრ"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "მაი"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ივნ"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ივლ"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "აგვ"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ოქტ"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "იან"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "თებ"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "მარ"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "აპრ"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1162,178 +1193,178 @@ msgid "May"
msgstr "მაი"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "ივნ"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "ივლ"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "აგვ"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "სექ"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "ოქტ"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "ნოე"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "დეკ"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "კვი"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "ორშ"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "სამ"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "პარ"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "კვი"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "ორშ"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "სამ"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "ოთხ"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "ხუთ"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "პარ"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "შაბ"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "კვი"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "ორშ"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "სამ"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "ოთხ"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "ხუთ"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "პარ"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "შაბ"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "ვიკი"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in use"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2046,6 +2077,7 @@ msgstr "შექმნა"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "პრივილეგიები არაა"
@@ -2335,46 +2367,46 @@ msgstr "ჩანიშნული მოთხოვნის გაშვე
msgid "The row has been deleted"
msgstr "სტრიქონი წაიშალა"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "მოთხოვნაში"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Showing rows"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "სულ"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "მოთხოვნას დასჭირდა %01.4f წმ"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "შეცვლა"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "ბმული ვერ მოიძებნა"
@@ -2881,6 +2913,56 @@ msgstr "სტრუქტურა"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Invalid parameter for CSV import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Fields terminated by"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Fields enclosed by"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Fields escaped by"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Lines terminated by"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Invalid column (%s) specified!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Invalid format of CSV input on line %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Invalid field count in CSV input on line %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "This plugin does not support compressed imports!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3362,12 +3444,12 @@ msgstr "კავშირები"
msgid "Copy table to (database.table):"
msgstr "Copy table to (database.table):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Table %s has been copied to %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Can't copy table to same one!"
@@ -3641,11 +3723,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Drop the databases that have the same names as the users."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump has been saved to file %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "დინამიური"
@@ -3714,10 +3791,6 @@ msgstr "Excel edition"
msgid "Export/Import to scale"
msgstr "Export/Import to scale"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Selected export type has to be saved in file!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Extended inserts"
@@ -3736,29 +3809,10 @@ msgstr "Failed attempts"
msgid "Field %s has been dropped"
msgstr "Field %s has been dropped"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Fields enclosed by"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Fields escaped by"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "ველები"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Fields terminated by"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"File %s already exists on server, change filename or check overwrite option."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "ფაილები"
@@ -3860,10 +3914,6 @@ msgstr "Handler"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "You have to choose at least one column to display"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "ებრაული"
@@ -4038,35 +4088,11 @@ msgstr "Internal relations"
msgid "Column count has to be larger than zero."
msgstr "Column count has to be larger than zero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Invalid column (%s) specified!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Invalid field count in CSV input on line %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Invalid format of CSV input on line %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Invalid parameter for CSV import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "You have to add at least one field."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "This plugin does not support compressed imports!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4077,7 +4103,7 @@ msgstr "Invalid server index: \"%s\""
msgid "Japanese"
msgstr "იაპონური"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4159,10 +4185,6 @@ msgstr "Length/Values"
msgid "Number of rows per page"
msgstr "Number of rows per page"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Lines terminated by"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "ლიტვური"
@@ -4281,12 +4303,12 @@ msgstr "მენიუს გადატანა"
msgid "Move table to (database.table):"
msgstr "Move table to (database.table):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Table %s has been moved to %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Can't move table to same one!"
@@ -4357,11 +4379,6 @@ msgstr "არაა"
msgid "This format has no options"
msgstr "ამ ფორმატს არ აქვს პარამეტრები"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "The web server does not have permission to save the file %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "You don't have sufficient privileges to be here right now!"
@@ -4370,11 +4387,6 @@ msgstr "You don't have sufficient privileges to be here right now!"
msgid "No rows selected"
msgstr "No rows selected"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Insufficient space to save the file %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5011,7 +5023,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5047,7 +5059,7 @@ msgstr ""
msgid "Slave replication"
msgstr "სერვერის კონფიგურაცია"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6151,7 +6163,8 @@ msgstr "ცხრილი %s უკვე არსებობს!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Table %1$s has been altered successfully"
@@ -6166,7 +6179,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "ცხრილის სახელი ცარიელია!"
@@ -6733,12 +6746,6 @@ msgstr "ვიკი"
msgid "wildcard"
msgstr "wildcard"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/ko.po b/po/ko.po
index b6f075502..dfec4dae7 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: korean \n"
@@ -340,7 +340,8 @@ msgstr "사용가능"
msgid "Collation"
msgstr "생성"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -399,8 +400,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr "PDF 페이지 편집"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "데이터베이스에 테이블이 없습니다."
@@ -451,13 +452,17 @@ msgstr "검사"
msgid "%s table(s)"
msgstr "테이블 %s 개"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL 질의가 바르게 실행되었습니다."
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합니다."
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -579,7 +584,7 @@ msgid "Browse"
msgstr "보기"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -677,7 +682,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -708,20 +713,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "선택한 것을:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "모두 체크"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -733,7 +738,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -761,8 +766,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -851,6 +856,31 @@ msgstr "테이블 검사"
msgid "Database Log"
msgstr "데이터베이스"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1036,21 +1066,21 @@ msgid "Choose field to display"
msgstr "출력할 필드 선택"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "없음"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "이전"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1058,96 +1088,96 @@ msgid "Next"
msgstr "다음"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "전체 사용량"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "바이너리"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "물오름달"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "잎새달"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "푸른달"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "누리달"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "견우직녀달"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "타오름달"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "하늘연달"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "해오름달"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "시샘달"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "물오름달"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "잎새달"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1155,176 +1185,176 @@ msgid "May"
msgstr "푸른달"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "누리달"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "견우직녀달"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "타오름달"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "열매달"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "하늘연달"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "미틈달"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "매듭달"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "일"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "월"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "화"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "금"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "일"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "월"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "화"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "수"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "목"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "금"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "토"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "일"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "월"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "화"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "수"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "목"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "금"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "토"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "사용중"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -2007,6 +2037,7 @@ msgstr " 만들기 "
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "권한 없음"
@@ -2290,46 +2321,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr "선택한 줄(레코드)을 삭제 하였습니다."
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "질의(in query)"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "행(레코드) 보기"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "합계"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "질의 실행시간 %01.4f 초"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "변경"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr ""
@@ -2797,6 +2828,56 @@ msgstr "구조"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "필드 구분자 "
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "필드 감싸기"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "필드 특수문자(escape) 처리"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "줄(열) 구분자"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3282,12 +3363,12 @@ msgstr "연결 수"
msgid "Copy table to (database.table):"
msgstr "테이블 복사 (데이터베이스명.테이블명):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "%s 테이블이 %s 으로 복사되었습니다."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3551,11 +3632,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "동적(다이내믹)"
@@ -3625,10 +3701,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "확장된 inserts"
@@ -3647,28 +3719,10 @@ msgstr "실패한 시도"
msgid "Field %s has been dropped"
msgstr "필드 %s 를 제거했습니다"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "필드 감싸기"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "필드 특수문자(escape) 처리"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "필드"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "필드 구분자 "
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3767,10 +3821,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "출력하려면 적어도 1개 이상의 열(칼럼)을 선택해야 합니다."
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr ""
@@ -3943,35 +3993,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3982,7 +4008,7 @@ msgstr ""
msgid "Japanese"
msgstr ""
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4065,10 +4091,6 @@ msgstr "길이/값*"
msgid "Number of rows per page"
msgstr "페이지당 레코드 수"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "줄(열) 구분자"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr ""
@@ -4176,12 +4198,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "테이블 이동 (데이터베이스명.테이블명):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "테이블 %s 을 %s 로 옮겼습니다."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4250,11 +4272,6 @@ msgstr "없음"
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "어떻게 들어오셨어요? 지금 여기 있을 권한이 없습니다!"
@@ -4263,11 +4280,6 @@ msgstr "어떻게 들어오셨어요? 지금 여기 있을 권한이 없습니
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4899,7 +4911,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4934,7 +4946,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5914,7 +5926,8 @@ msgstr "사용자 %s 가 이미 존재합니다!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "선택한 사용자들을 삭제했습니다."
@@ -5929,7 +5942,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "테이블명이 없습니다!"
@@ -6455,12 +6468,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index b4b56dc7e..77d704d2d 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis \n"
"Language-Team: lithuanian \n"
@@ -336,7 +336,8 @@ msgstr "Įjungti"
msgid "Collation"
msgstr "Palyginimas"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Lapo dydis"
msgid "Edit PDF Pages"
msgstr "Redaguoti PDF puslapius"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Duombazėje nerasta lentelių."
@@ -446,13 +447,17 @@ msgstr "Paskutinis patikrinimas"
msgid "%s table(s)"
msgstr "%s lentelė(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Jūsų SQL užklausa sėkmingai įvykdyta"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Pasirinkite bent vieną stulpelį išvedimui"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Peržiūrėti"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s yra standartinis saugojimo variklis šiame MySQL serveryje."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Pasirinktus:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Pažymėti visus"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "Pažymėti turinčias perteklių"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ msgid "Analyze table"
msgstr "Analizuoti lentelę"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -846,6 +851,33 @@ msgstr "Patikrinti lentelę"
msgid "Database Log"
msgstr "Duombazė"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Nėra pakankamai vietos išsaugoti failui %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Failas pavadinimu %s jau yra darbinėje stotyje, pakeiskite norimą pavadinimą "
+"arba pasirinkite nustatymą leidžiantį perrašyti esamus failus."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Nėra teisių išsaugoti failui %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Duombazės atvaizdis išsaugotas faile %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1034,21 +1066,21 @@ msgid "Choose field to display"
msgstr "Pasirinkite lauką, kurį norite peržiūrėti"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Paremti"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Praėjęs"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1056,96 +1088,96 @@ msgid "Next"
msgstr "Sekantis"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Viso"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Dvejetainis"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "kovo"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "balandžio"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "gegužės"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "birželio"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "liepos"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "rugpjūčio"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "spalio"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "sausio"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "vasario"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "kovo"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "balandžio"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1153,178 +1185,178 @@ msgid "May"
msgstr "gegužės"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "birželio"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "liepos"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "rugpjūčio"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "rugsėjo"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "spalio"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "lapkričio"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "gruodžio"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sekmadienis"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pirmadienis"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Antradienis"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Penktadienis"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Sekmadienis"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Pirmadienis"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Antradienis"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Trečiadienis"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Ketvirtadienis"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Penktadienis"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Šeštadienis"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sekmadienis"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pirmadienis"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Antradienis"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Trečiadienis"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Ketvirtadienis"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Penktadienis"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Šeštadienis"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "šiuo metu naudojama"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2028,6 +2060,7 @@ msgstr "Sukurti"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Nėra privilegijų"
@@ -2316,46 +2349,46 @@ msgstr "Įvykdyti išsaugotą užklausą"
msgid "The row has been deleted"
msgstr "Eilutė ištrinta"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Stabdyti procesą"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "užklausą vykdoma"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Rodomi įrašai"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr " iš viso "
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Užklausa užtruko %01.4f sek."
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Redaguoti"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Veiksmai su užklausos rezultatais"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Spausdinti rezultatus (su pilnais tekstais)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Sąryšis nerastas"
@@ -2830,6 +2863,56 @@ msgstr "Struktūra"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Laukų pabaigos žymė"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Laukų reikšmės apskliaustos simboliais"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Laukų reikšmės baigiasi simboliu"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Eilutės pabaigos žymė"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3307,12 +3390,12 @@ msgstr "Prisijungimai"
msgid "Copy table to (database.table):"
msgstr "Kopijuoti lentelė į (duombazė.lentelė):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Letelė %s nukopijuota į %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Negalima kopijuoti lentelės į ją pačią!"
@@ -3584,11 +3667,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Pašalinti duombazes, turinčias tokius pačius vardus kaip ir vartotojai."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Duombazės atvaizdis išsaugotas faile %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinaminis"
@@ -3657,10 +3735,6 @@ msgstr "Excel variantas"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Išplėstinis įterpimas"
@@ -3679,30 +3753,10 @@ msgstr "Nepavykę bandymai"
msgid "Field %s has been dropped"
msgstr "Laukas %s išmestas"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Laukų reikšmės apskliaustos simboliais"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Laukų reikšmės baigiasi simboliu"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Lauką"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Laukų pabaigos žymė"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Failas pavadinimu %s jau yra darbinėje stotyje, pakeiskite norimą pavadinimą "
-"arba pasirinkite nustatymą leidžiantį perrašyti esamus failus."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Failai"
@@ -3803,10 +3857,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Pasirinkite bent vieną stulpelį išvedimui"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Žydų"
@@ -3979,35 +4029,11 @@ msgstr "Vidiniai sąryšiai"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4018,7 +4044,7 @@ msgstr ""
msgid "Japanese"
msgstr "Japonų"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4101,10 +4127,6 @@ msgstr "Ilgis/reikšmės*"
msgid "Number of rows per page"
msgstr "Eilučių skaičius puslapyje"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Eilutės pabaigos žymė"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lietuvių"
@@ -4222,12 +4244,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Perkelti lentelė į (duombazė.lentelė):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Lentelė %s perkelta į %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Negalima perkelti lentelės į ją pačią!"
@@ -4296,11 +4318,6 @@ msgstr "Nėra"
msgid "This format has no options"
msgstr "Šis formatas neturi nustatymų"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Nėra teisių išsaugoti failui %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Neturite pakankamai teisių"
@@ -4309,11 +4326,6 @@ msgstr "Neturite pakankamai teisių"
msgid "No rows selected"
msgstr "Nepasirinkti įrašai"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Nėra pakankamai vietos išsaugoti failui %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4953,7 +4965,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4989,7 +5001,7 @@ msgstr ""
msgid "Slave replication"
msgstr "Serverio nustatymai"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5997,7 +6009,8 @@ msgstr "Lentelė %s jau yra!"
msgid "Alter column(s)"
msgstr "Pakeisti stulpelį(-ius)"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Lentelė %1$s sėkmingai pakeista"
@@ -6013,7 +6026,7 @@ msgstr "Keisti indeksą(-us)"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Tuščias lentelės vardas!"
@@ -6568,12 +6581,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "pakaitos simbolis"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/lv.po b/po/lv.po
index b7ad98fac..5d550e04c 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
@@ -335,7 +335,8 @@ msgstr "Ieslēgts"
msgid "Collation"
msgstr "Izkārtojumi"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -393,8 +394,8 @@ msgstr "Papīra izmērs"
msgid "Edit PDF Pages"
msgstr "Labot PDF lapas"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Tabulas nav atrastas šajā datubāzē."
@@ -445,13 +446,17 @@ msgstr "Pēdējā pārbaude"
msgid "%s table(s)"
msgstr "%s tabula(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -573,7 +578,7 @@ msgid "Browse"
msgstr "Apskatīt"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Ar iezīmēto:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Iezīmēt visu"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "Iezīmēt tabulas ar pārtēriņu"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ msgid "Analyze table"
msgstr "Analizēt tabulu"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -846,6 +851,33 @@ msgstr "Pārbaudīt tabulu"
msgid "Database Log"
msgstr "Datubāze"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Nepietiek vietas, lai saglabātu failu %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Fails %s jau eksistē uz servera. Lūdzu nomainiet faila nosaukumu vai "
+"atzīmējiet failu pārrakstīšanas opciju."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Web serverim nav tiesību rakstīt failā %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Damps tika saglabāts failā %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1034,21 +1066,21 @@ msgid "Choose field to display"
msgstr "Izvēlieties, kuru lauku rādīt"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Nav"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Iepriekšējie"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1056,96 +1088,96 @@ msgid "Next"
msgstr "Nākamie"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Kopā"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binārais"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jūn"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jūl"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1153,176 +1185,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jūn"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jūl"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sv"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "P"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "O"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pk"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Sv"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "P"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "O"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "T"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "C"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pk"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "S"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sv"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "P"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "O"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "T"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "C"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pk"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "S"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "lietošanā"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2023,6 +2055,7 @@ msgstr "Izveidot"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Nav privilēģiju"
@@ -2307,46 +2340,46 @@ msgstr "Izpildīt iegrāmatoto vaicājumu"
msgid "The row has been deleted"
msgstr "Ieraksts tika dzēsts"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Nogalināt"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "vaicājumā"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Parādu rindas"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "kopā"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Vaicājums ilga %01.4f s"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Labot"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Drukas skats (ar pilniem tekstiem)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Links nav atrasts"
@@ -2814,6 +2847,56 @@ msgstr "Struktūra"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Lauki atdalīti ar"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Lauki iekļauti iekš"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Glābjoša (escape) rakstzīme ir"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Rindas atdalītas ar"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3297,12 +3380,12 @@ msgstr "Konekcijas"
msgid "Copy table to (database.table):"
msgstr "Kopēt tabulu uz (datubāze.tabula):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabula %s tika pārkopēta uz %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Nevar nokopēt tabulu uz viņu pašu!"
@@ -3571,11 +3654,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Damps tika saglabāts failā %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamisks"
@@ -3645,10 +3723,6 @@ msgstr "Excel redakcija"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Paplašinātas INSERT izteiksmes"
@@ -3667,30 +3741,10 @@ msgstr "Neveiksmīgi mēģinājumi"
msgid "Field %s has been dropped"
msgstr "Lauks %s tika izdzēsts"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Lauki iekļauti iekš"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Glābjoša (escape) rakstzīme ir"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Lauki"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Lauki atdalīti ar"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Fails %s jau eksistē uz servera. Lūdzu nomainiet faila nosaukumu vai "
-"atzīmējiet failu pārrakstīšanas opciju."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3792,10 +3846,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Izvēlieties vismaz vienu kolonnu attēlošanai"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Ebreju"
@@ -3969,35 +4019,11 @@ msgstr "Iekšējās relācijas"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4008,7 +4034,7 @@ msgstr ""
msgid "Japanese"
msgstr "Japāņu"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4090,10 +4116,6 @@ msgstr "Garums/Vērtības*"
msgid "Number of rows per page"
msgstr "Rindu skaits vienā lapā"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Rindas atdalītas ar"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lietuviešu"
@@ -4204,12 +4226,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Pārvietot tabulu uz (datubāze.tabula):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabula %s tika pārvietota uz %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Nevar pārvietot tabulu uz viņu pašu!"
@@ -4278,11 +4300,6 @@ msgstr "Nav"
msgid "This format has no options"
msgstr "Šim formātam nav opciju"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Web serverim nav tiesību rakstīt failā %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!"
@@ -4291,11 +4308,6 @@ msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!"
msgid "No rows selected"
msgstr "Rindas nav iezīmētas"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Nepietiek vietas, lai saglabātu failu %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4940,7 +4952,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4975,7 +4987,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5964,7 +5976,8 @@ msgstr "Lietotājs %s jau eksistē!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
@@ -5979,7 +5992,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Tabulas nosaukums nav norādīts!"
@@ -6531,12 +6544,6 @@ msgstr ""
msgid "wildcard"
msgstr "aizstājējzīme"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/mk.po b/po/mk.po
index f8b0a62a5..ae6978ad9 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic \n"
@@ -335,7 +335,8 @@ msgstr "Овозможено"
msgid "Collation"
msgstr "Подредување"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -393,8 +394,8 @@ msgstr "Димензија на хартијата"
msgid "Edit PDF Pages"
msgstr "Уредување на PDF страница"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Табелите не се пронајдени во базата на податоци."
@@ -445,13 +446,17 @@ msgstr "Последна проверка"
msgid "%s table(s)"
msgstr "%s табела"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Вашиот SQL упит успешно е извршен"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Морате да изберете барем една колона за приказ"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -573,7 +578,7 @@ msgid "Browse"
msgstr "Преглед"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s е основно складиште на овој MySQL сервер."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Обележаното:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "обележи ги сите"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "табели кои имаат пречекорувања"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -846,6 +851,33 @@ msgstr "Проверка на табелата"
msgid "Database Log"
msgstr "База на податоци"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Нема доволно простор за снимање на податотеката %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Податотека %s постои на серверот, променете го името на податотеката или "
+"изберете опција за пишување врз неа."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "На веб серверот не му е допуштено да ја сочува податотеката %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Содржината на базата на податоци е сочувана во податотеката %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1033,21 +1065,21 @@ msgid "Choose field to display"
msgstr "Избери полиња за прикажување"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "нема"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Претходна"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1055,96 +1087,96 @@ msgid "Next"
msgstr "Следен"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Вкупно"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарен"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "мај"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1152,176 +1184,176 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "дек"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Вто"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Вто"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Саб"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Вто"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Саб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2029,6 +2061,7 @@ msgstr "Креирај"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Нема привилегии"
@@ -2313,46 +2346,46 @@ msgstr "Изврши запамтен упит"
msgid "The row has been deleted"
msgstr "Записот е избришан"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Прекини"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "во упитот"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Приказ на записи од "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "вкупно"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "време на извршување на упитот %01.4f секунди"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Промени"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Преглед за печатење (целосен текст)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Врската не е пронајдена"
@@ -2839,6 +2872,56 @@ msgstr "Структура"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Полињата се ограничени со"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Полињата се раздвоени со"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Escape карактер "
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Линиите се завршуваат со"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3320,12 +3403,12 @@ msgstr "Конекции"
msgid "Copy table to (database.table):"
msgstr "Копирај ја табелата во (база.табела):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Табелата %s е копирана во %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Не можам да ја копирам табелата во самата себе!"
@@ -3594,11 +3677,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Избриши ги базите на податоци кои се именувани исто како и корисниците."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Содржината на базата на податоци е сочувана во податотеката %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "динамички"
@@ -3669,10 +3747,6 @@ msgstr "Excel издание"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Проширен INSERT"
@@ -3691,30 +3765,10 @@ msgstr "Неуспешни обиди"
msgid "Field %s has been dropped"
msgstr "Полето %s е избиршано"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Полињата се раздвоени со"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Escape карактер "
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Полиња"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Полињата се ограничени со"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Податотека %s постои на серверот, променете го името на податотеката или "
-"изберете опција за пишување врз неа."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3817,10 +3871,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Морате да изберете барем една колона за приказ"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Хебрејски"
@@ -3994,35 +4044,11 @@ msgstr "Внатрешни релации"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4033,7 +4059,7 @@ msgstr ""
msgid "Japanese"
msgstr "Јапонски"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4115,10 +4141,6 @@ msgstr "Должина/Вредност*"
msgid "Number of rows per page"
msgstr "Број на записи на страница"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Линиите се завршуваат со"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Литвански"
@@ -4236,12 +4258,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Премести ја табелата во (база.табела):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Табелата %s е преместена во %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Не може да ја преместам табелата во самата себе!"
@@ -4310,11 +4332,6 @@ msgstr "нема"
msgid "This format has no options"
msgstr "Не постојат опции за овој формат"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "На веб серверот не му е допуштено да ја сочува податотеката %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Немате право на пристап овде!"
@@ -4323,11 +4340,6 @@ msgstr "Немате право на пристап овде!"
msgid "No rows selected"
msgstr "Нема селектирани записи"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Нема доволно простор за снимање на податотеката %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4972,7 +4984,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5007,7 +5019,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5996,7 +6008,8 @@ msgstr "Корисник %s веќе постои!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Изабраните корисници успешно се избришани."
@@ -6011,7 +6024,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Името на табелата е празно!"
@@ -6573,12 +6586,6 @@ msgstr ""
msgid "wildcard"
msgstr "џокер"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 03033085e..652275196 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
@@ -333,7 +333,8 @@ msgstr ""
msgid "Collation"
msgstr "Жишилт"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -391,8 +392,8 @@ msgstr "Цаасны хэмжээ"
msgid "Edit PDF Pages"
msgstr "PDF-хуудаснуудыг засах"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "ӨС-д хүснэгт олдсонгүй."
@@ -443,13 +444,17 @@ msgstr "Сүүлийн шалгалт"
msgid "%s table(s)"
msgstr "%s хүснэгт(үүд)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Таны SQL-асуулт амжилттай ажиллав"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Харуулахын тулд ядаж нэг багана сонго"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -571,7 +576,7 @@ msgid "Browse"
msgstr "Хөтлөх"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -669,7 +674,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -700,20 +705,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s нь уг MySQL сервэрийн анхдагч агуулах хөдөлгүүр байна."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Сонгогдсонтой:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Бүгдийг чагтлах"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -725,7 +730,7 @@ msgid "Check tables having overhead"
msgstr "Дээдхийг шалгах"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -753,8 +758,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -838,6 +843,32 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Файл %s-г хадгалах зай хүрэлцэхгүй байна."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Файл %s нь сервэр дээр байна, нэрээ соль эсвэл давхарлах сонголтыг шалга."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрөлгүй байна."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Асгалт %s файлд хадгалагдсан."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1023,21 +1054,21 @@ msgid "Choose field to display"
msgstr "Харуулах талбарыг соль"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Байхгүй"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Өмнөх"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1045,96 +1076,96 @@ msgid "Next"
msgstr "Цааш"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Нийт"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Хоёртын "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "3-р"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "4-р"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "5-р"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "6-р"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "7-р"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "8-р"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "10р"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "1-р"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "2-р"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "3-р"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "4-р"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1142,176 +1173,176 @@ msgid "May"
msgstr "5-р"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "6-р"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "7-р"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "8-р"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "9-р"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "10р"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "11р"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "12р"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ня"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Да"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Мя"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Ба"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ня"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Да"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Мя"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Лх"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Пү"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Ба"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Бя"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ня"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Да"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Мя"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Лх"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пү"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Ба"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Бя"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "хэрэглэгдэж байна"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2006,6 +2037,7 @@ msgstr "Үүсгэх"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Онцгой эрхгүй"
@@ -2293,46 +2325,46 @@ msgstr "Тэмдэглэгдсэн асуулт ажиллуулах"
msgid "The row has been deleted"
msgstr "Мөр устгагдсан"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Алах"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "асуултад"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Мөрүүдийг харуулж байна "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "Нийт"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Асуулт нь %01.4f сек авлаа"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Солих"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Асуудлын үр дүнгийн үйлдэл"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Холбоос олдсонгүй"
@@ -2808,6 +2840,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "CSV оруулалтад буруу параметр нь: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Талбарыг төгсгөсөн"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Талбарыг хаасан"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Талбарыг нээсэн"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Шугамыг төгсгөгч"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Буруу багана (%s) тодорхойлогдсон!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол байна."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "CSV оруулалтад %d мөрөнд буруу талбарын тоо байна."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3282,12 +3364,12 @@ msgstr "Холболт"
msgid "Copy table to (database.table):"
msgstr "Хүснэгт хуулах(өгөгдлийн сан.хүснэгт):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "%s хүснэгт %s руу хуулагдлаа."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr " Адил нэртэй хүснэгт рүү хуулж чадсангүй!"
@@ -3549,11 +3631,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн санг устгах."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Асгалт %s файлд хадгалагдсан."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "динамик"
@@ -3622,10 +3699,6 @@ msgstr "Excel-засвар"
msgid "Export/Import to scale"
msgstr "Гаргах/Оруулах хэмжээс"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Өргөтгөсөн оруулалт"
@@ -3644,29 +3717,10 @@ msgstr "Бүтэлгүйтсэн оролдлого"
msgid "Field %s has been dropped"
msgstr "Талбар %s устгагдсан"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Талбарыг хаасан"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Талбарыг нээсэн"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Талбарууд"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Талбарыг төгсгөсөн"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Файл %s нь сервэр дээр байна, нэрээ соль эсвэл давхарлах сонголтыг шалга."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Файлууд"
@@ -3766,10 +3820,6 @@ msgstr "Баригч"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Харуулахын тулд ядаж нэг багана сонго"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Иврей"
@@ -3941,35 +3991,11 @@ msgstr "Дотоод хамаарал"
msgid "Column count has to be larger than zero."
msgstr "Баганы тоо тэгээс их байна."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Буруу багана (%s) тодорхойлогдсон!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "CSV оруулалтад %d мөрөнд буруу талбарын тоо байна."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "CSV оруулалтад %d мөрөнд буруу тогтнол байна."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "CSV оруулалтад буруу параметр нь: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Та багадаа нэг талбар нэм."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3980,7 +4006,7 @@ msgstr "Сервэрийн буруу индекс нь: \"%s\""
msgid "Japanese"
msgstr "Япон"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4062,10 +4088,6 @@ msgstr "Урт/Утгууд*"
msgid "Number of rows per page"
msgstr "Хуудас дахь мөрийн тоо"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Шугамыг төгсгөгч"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Латви"
@@ -4180,12 +4202,12 @@ msgstr "Цэс зөөх"
msgid "Move table to (database.table):"
msgstr "Хүснэгтийг зөөх (өгөгдлийн сан.хүснэгт):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Хүснэгт %s нь %s руу зөөгдөв."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Адил нэр байсан тул хүснэгтийг зөөсөнгүй!"
@@ -4253,11 +4275,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Энэ тогтнол сонголтгүй"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Вэб-сервэр файл %s-г хадгалахад зөвшөөрөлгүй байна."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Танд хангалттай эрх байхгүй!"
@@ -4266,11 +4283,6 @@ msgstr "Танд хангалттай эрх байхгүй!"
msgid "No rows selected"
msgstr "Сонгогдсон мөргүй"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Файл %s-г хадгалах зай хүрэлцэхгүй байна."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4895,7 +4907,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4930,7 +4942,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5962,7 +5974,8 @@ msgstr "Хүснэгт %s нь оршин байна!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5977,7 +5990,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Хүснэгтийн нэр хоосон байна!"
@@ -6527,12 +6540,6 @@ msgstr ""
msgid "wildcard"
msgstr "загвар"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/ms.po b/po/ms.po
index 27d67851d..246f676a7 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
@@ -337,7 +337,8 @@ msgstr "Membenarkan"
msgid "Collation"
msgstr ""
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr "Ubah Halaman PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Tiada jadual dijumpai pada pangkalan data."
@@ -448,13 +449,17 @@ msgstr ""
msgid "%s table(s)"
msgstr "%s jadual"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -576,7 +581,7 @@ msgid "Browse"
msgstr "Lungsur"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -674,7 +679,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Dengan pilihan:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Tanda Semua"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Analyze table"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -848,6 +853,31 @@ msgstr "Periksa Jadual"
msgid "Database Log"
msgstr "Pangkalan Data"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1037,21 +1067,21 @@ msgid "Choose field to display"
msgstr "Pilih Medan untuk dipapar"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Tiada"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Terdahulu"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1059,96 +1089,96 @@ msgid "Next"
msgstr "Berikut"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jumlah"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binari"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mac"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mei"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ogos"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mac"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1156,176 +1186,176 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Ogos"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dis"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Aha"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Isn"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sel"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Aha"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Isn"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Sel"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Rab"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Kha"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Aha"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Isn"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sel"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Rab"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Kha"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "sedang digunakan"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "Records"
msgid "Second"
@@ -2014,6 +2044,7 @@ msgstr "Cipta"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Tiada Privilej"
@@ -2298,46 +2329,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr "Baris telah dipadam"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Bunuh"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "pada kueri"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Papar baris"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "jumlah"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Ubah"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Pautan tidak dijumpai"
@@ -2805,6 +2836,56 @@ msgstr "Struktur"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Medan dihapuskan oleh"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Medan disertai oleh"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Medan dilarikan oleh"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Baris ditamatkan oleh"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3287,12 +3368,12 @@ msgstr "Hubungan"
msgid "Copy table to (database.table):"
msgstr "Salin jadual ke (pangkalandata.jadual):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Jadual %s telah disalin ke %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3557,11 +3638,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamik"
@@ -3631,10 +3707,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Penyelitan Lanjutan"
@@ -3653,28 +3725,10 @@ msgstr "Percubaan Gagal"
msgid "Field %s has been dropped"
msgstr "Medan %s telah digugurkan"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Medan disertai oleh"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Medan dilarikan oleh"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Medan"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Medan dihapuskan oleh"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3774,10 +3828,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Anda mesti pilih sekurang-kurangnya satu Kolum untuk dipapar"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr ""
@@ -3951,35 +4001,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3990,7 +4016,7 @@ msgstr ""
msgid "Japanese"
msgstr ""
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4072,10 +4098,6 @@ msgstr "Panjang/Nilai*"
msgid "Number of rows per page"
msgstr "Bilangan baris per halaman"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Baris ditamatkan oleh"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr ""
@@ -4185,12 +4207,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Pindahkan jadual ke (pangkalandata.jadual):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Jadual %s telah dipindahkan ke %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4259,11 +4281,6 @@ msgstr "Tiada"
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!"
@@ -4272,11 +4289,6 @@ msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!"
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4907,7 +4919,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4942,7 +4954,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5932,7 +5944,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5947,7 +5960,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Nama jadual adalah kosong"
@@ -6472,12 +6485,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index 3fe6e17be..ecc46b25e 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-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-05-11 08:13+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"
@@ -329,7 +329,8 @@ msgstr "Slå på"
msgid "Collation"
msgstr "Sammenligning"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -387,8 +388,8 @@ msgstr "Papirstørrelse"
msgid "Edit PDF Pages"
msgstr "Rediger PDF-sider"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Ingen tabeller i databasen."
@@ -439,13 +440,17 @@ msgstr "Sist kontrollert"
msgid "%s table(s)"
msgstr "%s tabell(er)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Kommandoen/spørringen er utført"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Du må velge minst en kolonne for visning"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -567,7 +572,7 @@ msgid "Browse"
msgstr "Se på"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -665,7 +670,7 @@ msgstr "Overvåkning er aktiv."
msgid "Tracking is not active."
msgstr "Overvåkning er ikke aktiv."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -696,20 +701,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s er standard lagringsmotor for denne MySQL tjeneren."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Med avkrysset:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Merk alle"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -721,7 +726,7 @@ msgid "Check tables having overhead"
msgstr "Merk overheng"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -749,8 +754,8 @@ msgid "Analyze table"
msgstr "Analyser tabell"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -834,6 +839,33 @@ msgstr "Overvåk tabell"
msgid "Database Log"
msgstr "Databaselogg"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Valgte eksporteringstype krever lagring til ei fil!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Ikke nok plass til å lagre fila %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Fila %s eksisterer alt på serveren, endre navnet eller merk av for "
+"overskriving av fil."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Webserveren har ikke tillatelse til å lagre fila %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump har blitt lagret til fila %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1030,17 +1062,17 @@ msgid "Choose field to display"
msgstr "Velg felt for visning"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr "Utført"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr "Forrige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1048,231 +1080,231 @@ msgid "Next"
msgstr "Neste"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr "I dag"
-#: js/messages.php:81
+#: js/messages.php:82
msgid "January"
msgstr "Januar"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr "Februar"
-#: js/messages.php:83
+#: js/messages.php:84
msgid "March"
msgstr "Mars"
-#: js/messages.php:84
+#: js/messages.php:85
msgid "April"
msgstr "April"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
msgid "June"
msgstr "Juni"
-#: js/messages.php:87
+#: js/messages.php:88
msgid "July"
msgstr "Juli"
-#: js/messages.php:88
+#: js/messages.php:89
msgid "August"
msgstr "August"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr "September"
-#: js/messages.php:90
+#: js/messages.php:91
msgid "October"
msgstr "Oktober"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr "November"
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr "Desember"
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
msgctxt "Short month name"
msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Des"
-#: js/messages.php:121
+#: js/messages.php:122
msgid "Sunday"
msgstr "Søndag"
-#: js/messages.php:122
+#: js/messages.php:123
msgid "Monday"
msgstr "Mandag"
-#: js/messages.php:123
+#: js/messages.php:124
msgid "Tuesday"
msgstr "Tirsdag"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr "Onsdag"
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr "Torsdag"
-#: js/messages.php:126
+#: js/messages.php:127
msgid "Friday"
msgstr "Fredag"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr "Lørdag"
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Søn"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Man"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Tir"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Lør"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
msgid "Su"
msgstr "Søndag"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
msgid "Mo"
msgstr "Man"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
msgid "Tu"
msgstr "Tir"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
msgid "We"
msgstr "Ons"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
msgid "Th"
msgstr "Tor"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
msgid "Fr"
msgstr "Fre"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
msgid "Sa"
msgstr "Lør"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr "Uke"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr "Time"
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr "Minutt"
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr "Sekund"
@@ -1971,6 +2003,7 @@ msgstr "Opprett"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Ingen privilegier"
@@ -2258,46 +2291,46 @@ msgstr "Utfør lagret spørring"
msgid "The row has been deleted"
msgstr "Raden er slettet"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Avslutt"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "i spørring"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Viser rader "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Spørring tok %01.4f sek"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Endre"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Spørringsresultatshandlinger"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Forhåndsvisning (med all tekst)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link ikke funnet"
@@ -2803,26 +2836,71 @@ msgstr "struktur"
msgid "Go to view"
msgstr "Gå til visning"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Ugyldig parameter for CSV import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Felter avsluttet med"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Felter omsluttet av"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Felter beskyttet med"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linker avsluttet med"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Ugyldig kollonne (%s) angitt!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Ugyldig format i CSV importen i linje %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Ugyldig antall felt i CSV importen i linje %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Dette tillegget støtter ikke komprimerte importeringer!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Den spesifiserte XML-fila var enten skadet eller ufulstendig. Korriger "
+"problemet og prøv igjen."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
-#| msgid "Recoding engine"
msgid "Encoding conversion"
msgstr "Kodingskonvertering"
#. l10n: This is currently used only in Japanese locales
-#: libraries/kanji-encoding.lib.php:142
-#| msgid "None"
+#: libraries/kanji-encoding.lib.php:145
msgctxt "None encoding conversion"
msgid "None"
msgstr "Ingen"
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:151
-msgid "encoding conversion"
-msgstr "kodingskonvertering"
-
-#. l10n: This is currently used only in Japanese locales
-#: libraries/kanji-encoding.lib.php:149
msgid "Convert to Kana"
msgstr "Konverter til Kana"
@@ -3285,12 +3363,12 @@ msgstr "tilkoblinger"
msgid "Copy table to (database.table):"
msgstr "Kopier tabell til (database.tabell):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabellen %s er kopiert til %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Kan ikke kopiere tabellen til samme navn!"
@@ -3556,11 +3634,6 @@ msgstr "Ikke bruk AUTO_INCREMENT for nullverdier"
msgid "Drop the databases that have the same names as the users."
msgstr "Slett databasene som har det samme navnet som brukerne."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump har blitt lagret til fila %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamisk"
@@ -3629,10 +3702,6 @@ msgstr "Excel-versjon"
msgid "Export/Import to scale"
msgstr "Eksporter/Importer til skala"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Valgte eksporteringstype krever lagring til ei fil!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Utvidete innlegg"
@@ -3651,30 +3720,10 @@ msgstr "Feilede forsøk"
msgid "Field %s has been dropped"
msgstr "Feltet %s har blitt slettet"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Felter omsluttet av"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Felter beskyttet med"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Felter"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Felter avsluttet med"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Fila %s eksisterer alt på serveren, endre navnet eller merk av for "
-"overskriving av fil."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Filer"
@@ -3776,10 +3825,6 @@ msgstr "Handler"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Valgte måltabeller har blitt synkronisert med kildetabeller."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Du må velge minst en kolonne for visning"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "hebraisk"
@@ -3956,35 +4001,11 @@ msgstr "Interne relasjoner"
msgid "Column count has to be larger than zero."
msgstr "Antall kolonner må være større enn null."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Ugyldig kollonne (%s) angitt!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Ugyldig antall felt i CSV importen i linje %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Ugyldig format i CSV importen i linje %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Ugyldig parameter for CSV import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Du må sette inn minst ett felt."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Dette tillegget støtter ikke komprimerte importeringer!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3995,7 +4016,7 @@ msgstr "Ugyldig tjenerindeks: \"%s\""
msgid "Japanese"
msgstr "japansk"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4080,10 +4101,6 @@ msgstr "Lengde/Sett*"
msgid "Number of rows per page"
msgstr "Antall poster per side"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linker avsluttet med"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "lithauisk"
@@ -4200,12 +4217,12 @@ msgstr "Flytt meny"
msgid "Move table to (database.table):"
msgstr "Flytt tabell til (database.tabell):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabellen %s har blitt flyttet til %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Kan ikke flytte tabellen til samme navn!"
@@ -4275,11 +4292,6 @@ msgstr "Ingen"
msgid "This format has no options"
msgstr "Dette formatet har ingen valg"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Webserveren har ikke tillatelse til å lagre fila %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Du har ikke nok rettigheter til å være her nå!"
@@ -4288,11 +4300,6 @@ msgstr "Du har ikke nok rettigheter til å være her nå!"
msgid "No rows selected"
msgstr "Ingen rader valgt"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Ikke nok plass til å lagre fila %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4940,7 +4947,7 @@ msgstr "Feilbehandling:"
msgid "IO Thread %s only"
msgstr "Kun IO tråd %s"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "Slave IO Thread kjører ikke!"
@@ -4977,7 +4984,7 @@ msgstr "Hopp over neste"
msgid "Slave replication"
msgstr "Slavereplikasjon"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "Slave SQL Thread kjører ikke!"
@@ -6092,7 +6099,8 @@ msgstr "Tabel %s eksisterer allerede!"
msgid "Alter column(s)"
msgstr "Endre kolonne(r)"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabellen %1$s har blitt endrett"
@@ -6107,7 +6115,7 @@ msgstr "Utfør indeks(er)"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Ønsker du å slette alle tidligere rader fra måltabeller?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Tabellnavnet er tomt!"
@@ -6672,14 +6680,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "jokertegn"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Den spesifiserte XML-fila var enten skadet eller ufulstendig. Korriger "
-"problemet og prøv igjen."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Eksporter innhold"
@@ -8589,3 +8589,6 @@ msgstr "Lag en indeks på %s kolonner"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "Beskrivelse"
+
+#~ msgid "encoding conversion"
+#~ msgstr "kodingskonvertering"
diff --git a/po/nl.po b/po/nl.po
index 93c3f2eb8..8e5cffd7e 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-26 15:46+0200\n"
"Last-Translator: \n"
"Language-Team: dutch \n"
@@ -335,7 +335,8 @@ msgstr "Inschakelen"
msgid "Collation"
msgstr "Collatie"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -393,8 +394,8 @@ msgstr "Papierformaat"
msgid "Edit PDF Pages"
msgstr "PDF Pagina's aanpassen"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Geen tabellen gevonden in de database."
@@ -445,13 +446,17 @@ msgstr "Laatst gecontroleerd"
msgid "%s table(s)"
msgstr "%s tabel(len)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Uw SQL-query is succesvol uitgevoerd."
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Er moet ten minste 1 weer te geven kolom worden gekozen"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -573,7 +578,7 @@ msgid "Browse"
msgstr "Verkennen"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr "Tracking is ingeschakeld."
msgid "Tracking is not active."
msgstr "Tracking is niet actief."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is de standaard storage engine op deze MySQL-server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Met geselecteerd:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Selecteer alles"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "Selecteer tabellen met overhead"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ msgid "Analyze table"
msgstr "Analyseer tabel"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -841,6 +846,34 @@ msgstr "Tabel tracken"
msgid "Database Log"
msgstr "Database-log"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+"Het geselecteerde export type dient als een bestand te worden opgeslagen!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Onvoldoende ruimte om het bestand %s op te slaan."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Bestand %s bestaat al op de server, verander de bestandsnaam of activeer de "
+"overschrijven optie."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "De web server heeft geen rechten om het bestand %s op te slaan."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump is bewaard als %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1043,21 +1076,21 @@ msgid "Choose field to display"
msgstr "Kies weer te geven veld"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Doneer"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Vorige"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1065,96 +1098,96 @@ msgid "Next"
msgstr "Volgende"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Totaal"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binair "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mei"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Oct"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1162,178 +1195,178 @@ msgid "May"
msgstr "Mei"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sept"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Zo"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ma"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Di"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Vr"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Zo"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Ma"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Di"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Wo"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Do"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Vr"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Za"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Zo"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ma"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Di"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wo"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Do"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Vr"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Za"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "in gebruik"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2053,6 +2086,7 @@ msgstr "Aanmaken"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Geen rechten"
@@ -2350,46 +2384,46 @@ msgstr "Voor de gebookmarkte query uit"
msgid "The row has been deleted"
msgstr "De rij is verwijderd"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "stop proces"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Toon Records"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "totaal"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query duurde %01.4f sec"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Veranderen"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Query resultaat bewerkingen"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Afdrukken (met volledige teksten)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link niet gevonden"
@@ -2900,6 +2934,58 @@ msgstr "structuur"
msgid "Go to view"
msgstr "Ga naar view"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Ongeldige parameter voor CSV import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Velden beëindigd door"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Velden ingesloten door"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Velden ontweken door"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Regels beëindigd door"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Ongeldige kolom (%s) opgegeven!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Ongeldig formaat van CSV invoer op regel %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Verkeerd aantal velden in CSV invoer op regel %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Het XML-bestand was beschadigd of onvolledig. Repareer het bestand en "
+"probeer opnieuw. "
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3380,12 +3466,12 @@ msgstr "Connecties"
msgid "Copy table to (database.table):"
msgstr "Kopieer tabel naar (database.tabel):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabel %s is gekopieerd naar %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Kan de tabel niet naar dezelfde kopiëren!"
@@ -3654,11 +3740,6 @@ msgstr "Gebruik geen AUTO_INCREMENT voor 0-waarden"
msgid "Drop the databases that have the same names as the users."
msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump is bewaard als %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamisch"
@@ -3728,11 +3809,6 @@ msgstr "Excel editie"
msgid "Export/Import to scale"
msgstr "Exporteer/Importeer naar schaal"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-"Het geselecteerde export type dient als een bestand te worden opgeslagen!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Uitgebreide invoegingen"
@@ -3751,30 +3827,10 @@ msgstr "Mislukte pogingen"
msgid "Field %s has been dropped"
msgstr "Veld %s is vervallen"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Velden ingesloten door"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Velden ontweken door"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Velden"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Velden beëindigd door"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Bestand %s bestaat al op de server, verander de bestandsnaam of activeer de "
-"overschrijven optie."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "bestanden"
@@ -3876,10 +3932,6 @@ msgstr "Handler"
msgid "Selected target tables have been synchronized with source tables."
msgstr "De geselecteerde tabellen zijn gesynchroniseerd met de bron tabellen."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Er moet ten minste 1 weer te geven kolom worden gekozen"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebreeuws"
@@ -4056,35 +4108,11 @@ msgstr "Interne relaties"
msgid "Column count has to be larger than zero."
msgstr "Het aantal kolommen moet groter dan nul zijn."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Ongeldige kolom (%s) opgegeven!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Verkeerd aantal velden in CSV invoer op regel %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Ongeldig formaat van CSV invoer op regel %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Ongeldige parameter voor CSV import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "U moet minimaal een veld toevoegen."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4095,7 +4123,7 @@ msgstr "Ongeldige serverindex: \"%s\""
msgid "Japanese"
msgstr "Japans"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4177,10 +4205,6 @@ msgstr "Lengte/Waardes*"
msgid "Number of rows per page"
msgstr "records per pagina"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Regels beëindigd door"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litouws"
@@ -4299,12 +4323,12 @@ msgstr "Verplaats Menu"
msgid "Move table to (database.table):"
msgstr "Verplaats tabel naar (database.tabel):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabel %s is verplaatst naar %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Kan de tabel niet naar dezelfde verplaatsen!"
@@ -4374,11 +4398,6 @@ msgstr "Geen"
msgid "This format has no options"
msgstr "Dit format heeft geen opties"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "De web server heeft geen rechten om het bestand %s op te slaan."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "U heeft niet genoeg rechten om hier te zijn!"
@@ -4387,11 +4406,6 @@ msgstr "U heeft niet genoeg rechten om hier te zijn!"
msgid "No rows selected"
msgstr "Geen rijen geselecteerd"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Onvoldoende ruimte om het bestand %s op te slaan."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5049,7 +5063,7 @@ msgstr "Fouten beheer:"
msgid "IO Thread %s only"
msgstr "%s de IO Thread"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "Slave IO Thread niet actief!"
@@ -5086,7 +5100,7 @@ msgstr "Sla de volgende"
msgid "Slave replication"
msgstr "Slave replicatie"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "Slave SQL Thread niet actief!"
@@ -6217,7 +6231,8 @@ msgstr "Tabel %s bestaat reeds!"
msgid "Alter column(s)"
msgstr "Kolom(men) wijzigen"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabel %1$s is bijgewerkt"
@@ -6232,7 +6247,7 @@ msgstr "Index(en) toepassen"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Verwijder alle huidige rij(en) uit de bestemmings tabellen"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "De tabelnaam is leeg!"
@@ -6803,14 +6818,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "jokerteken"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Het XML-bestand was beschadigd of onvolledig. Repareer het bestand en "
-"probeer opnieuw. "
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Exporteer inhoud"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index c662c2e28..fd0ef22eb 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -330,7 +330,8 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, possible-php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -386,8 +387,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr ""
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr ""
@@ -438,13 +439,17 @@ msgstr ""
msgid "%s table(s)"
msgstr ""
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr ""
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr ""
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -566,7 +571,7 @@ msgid "Browse"
msgstr ""
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -664,7 +669,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, possible-php-format
msgid ""
@@ -695,20 +700,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr ""
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr ""
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -720,7 +725,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -748,8 +753,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -833,6 +838,31 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, possible-php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, possible-php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, possible-php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, possible-php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, possible-php-format
msgid ""
@@ -1018,17 +1048,17 @@ msgid "Choose field to display"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1036,231 +1066,231 @@ msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr ""
-#: js/messages.php:81
+#: js/messages.php:82
msgid "January"
msgstr ""
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
msgid "March"
msgstr ""
-#: js/messages.php:84
+#: js/messages.php:85
msgid "April"
msgstr ""
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr ""
-#: js/messages.php:86
+#: js/messages.php:87
msgid "June"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:88
msgid "July"
msgstr ""
-#: js/messages.php:88
+#: js/messages.php:89
msgid "August"
msgstr ""
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
msgid "October"
msgstr ""
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr ""
-#: js/messages.php:121
+#: js/messages.php:122
msgid "Sunday"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:123
msgid "Monday"
msgstr ""
-#: js/messages.php:123
+#: js/messages.php:124
msgid "Tuesday"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
msgid "Friday"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr ""
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr ""
@@ -1930,6 +1960,7 @@ msgstr ""
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr ""
@@ -2205,46 +2236,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, possible-php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr ""
@@ -2703,6 +2734,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, possible-php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr ""
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr ""
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, possible-php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, possible-php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, possible-php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3173,12 +3254,12 @@ msgstr ""
msgid "Copy table to (database.table):"
msgstr ""
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, possible-php-format
msgid "Table %s has been copied to %s."
msgstr ""
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3434,11 +3515,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: libraries/messages.inc.php:284
-#, possible-php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr ""
@@ -3507,10 +3583,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr ""
@@ -3529,28 +3601,10 @@ msgstr ""
msgid "Field %s has been dropped"
msgstr ""
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr ""
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr ""
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr ""
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr ""
-
-#: libraries/messages.inc.php:332
-#, possible-php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr ""
@@ -3646,10 +3700,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr ""
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr ""
@@ -3818,35 +3868,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, possible-php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, possible-php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, possible-php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, possible-php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, possible-php-format
msgid "Invalid server index: \"%s\""
@@ -3857,7 +3883,7 @@ msgstr ""
msgid "Japanese"
msgstr ""
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -3939,10 +3965,6 @@ msgstr ""
msgid "Number of rows per page"
msgstr ""
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr ""
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr ""
@@ -4045,12 +4067,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr ""
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, possible-php-format
msgid "Table %s has been moved to %s."
msgstr ""
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4118,11 +4140,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, possible-php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr ""
@@ -4131,11 +4148,6 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, possible-php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, possible-php-format
msgid ""
@@ -4750,7 +4762,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4785,7 +4797,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5751,7 +5763,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, possible-php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5766,7 +5779,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr ""
@@ -6284,12 +6297,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 357fec47e..eeccbb8d0 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish \n"
@@ -334,7 +334,8 @@ msgstr "Włącz"
msgid "Collation"
msgstr "Metoda porównywania napisów"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "Rozmiar papieru"
msgid "Edit PDF Pages"
msgstr "Edytuj strony PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Nie znaleziono tabeli w bazie danych."
@@ -444,13 +445,17 @@ msgstr "Ostatnie sprawdzenie"
msgid "%s table(s)"
msgstr "%s tabel(a)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Zapytanie SQL zostało wykonane pomyślnie"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Należy wybrać przynajmniej jedną kolumnę do wyświetlenia"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -572,7 +577,7 @@ msgid "Browse"
msgstr "Przeglądaj"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -670,7 +675,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s to domyślny mechanizm składowania tego serwera MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Zaznaczone:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Zaznacz wszystkie"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "Zaznacz nieoptymalne"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ msgid "Analyze table"
msgstr "Analizuj tabelę"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -849,6 +854,33 @@ msgstr "Sprawdź tabelę"
msgid "Database Log"
msgstr "Baza danych"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Wybrany typ eksportu musi być zapisany do pliku"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Brak miejsca na zapis pliku %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Plik %s już istnieje na serwerze, zmień nazwę pliku lub zaznacz opcję "
+"nadpisywania plików."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Serwer WWW nie ma praw do zapisu pliku %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Zrzut został zapisany do pliku %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1045,21 +1077,21 @@ msgid "Choose field to display"
msgstr "Wybierz wyświetlane pole"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Przekazanie darowizny"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Poprzednie"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1067,96 +1099,96 @@ msgid "Next"
msgstr "Następne"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Sumarycznie"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binarne "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Kwi"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Maj"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Cze"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Lip"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Sie"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Paź"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Sty"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Lut"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Kwi"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1164,178 +1196,178 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Cze"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Lip"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Sie"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Wrz"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Paź"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Lis"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Gru"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Nie"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Wto"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pią"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Nie"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Wto"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Śro"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Czw"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pią"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Nie"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Wto"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Śro"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Czw"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pią"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sob"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "w użyciu"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2050,6 +2082,7 @@ msgstr "Utwórz"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Brak uprawnień"
@@ -2342,46 +2375,46 @@ msgstr "Wykonaj zapamiętanego zapytania"
msgid "The row has been deleted"
msgstr "Rekord został skasowany"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Unicestwij"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "w zapytaniu"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Pokaż rekordy "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "wszystkich"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Wykonanie zapytania trwało %01.4f sekund(y)"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Zmień"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operacja na wynikach zapytania"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Widok do druku (z pełnymi tekstami)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Łącze nie znalezione"
@@ -2882,6 +2915,56 @@ msgstr "Struktura"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Niewłaściwy parametr importu CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Pola oddzielane przez"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Pola zawarte w"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Pola poprzedzone przez"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linie zakończone przez"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Podano błędną kolumnę (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Niewłaściwy format w linii %d danych wejściowych CSV."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Niewłaściwa liczba pól w linii %d danych wejściowych CSV."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Ten moduł nie obsługuje skompresowanych importów!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3361,12 +3444,12 @@ msgstr "Połączenia"
msgid "Copy table to (database.table):"
msgstr "Skopiuj tabelę do (bazadanych.tabela):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabela %s została skopiowana do %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Nie można skopiować tabeli do niej samej!"
@@ -3639,11 +3722,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Zrzut został zapisany do pliku %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "zmienny"
@@ -3712,10 +3790,6 @@ msgstr "Wydanie Excela"
msgid "Export/Import to scale"
msgstr "Eksport/import w skali"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Wybrany typ eksportu musi być zapisany do pliku"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Rozszerzone dodania"
@@ -3734,30 +3808,10 @@ msgstr "Nieudane próby"
msgid "Field %s has been dropped"
msgstr "Pole %s zostało usunięte"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Pola zawarte w"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Pola poprzedzone przez"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Pola"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Pola oddzielane przez"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Plik %s już istnieje na serwerze, zmień nazwę pliku lub zaznacz opcję "
-"nadpisywania plików."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Pliki"
@@ -3861,10 +3915,6 @@ msgstr "Obsługa"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Należy wybrać przynajmniej jedną kolumnę do wyświetlenia"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebrajski"
@@ -4038,35 +4088,11 @@ msgstr "Wewnętrzne relacje"
msgid "Column count has to be larger than zero."
msgstr "Liczba kolumn musi być większa niż zero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Podano błędną kolumnę (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Niewłaściwa liczba pól w linii %d danych wejściowych CSV."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Niewłaściwy format w linii %d danych wejściowych CSV."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Niewłaściwy parametr importu CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Należy dodać przynajmniej jedno pole."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Ten moduł nie obsługuje skompresowanych importów!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4077,7 +4103,7 @@ msgstr "Niewłaściwy numer serwera: \"%s\""
msgid "Japanese"
msgstr "Japoński"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4159,10 +4185,6 @@ msgstr "Długość/Wartości*"
msgid "Number of rows per page"
msgstr "rekordów na stronie"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linie zakończone przez"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litewski"
@@ -4278,12 +4300,12 @@ msgstr "Przesuń menu"
msgid "Move table to (database.table):"
msgstr "Przenieś tabelę do (bazadanych.tabela):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabela %s została przeniesiona do %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Nie można przenieść tabeli do niej samej!"
@@ -4354,11 +4376,6 @@ msgstr "Brak"
msgid "This format has no options"
msgstr "Ten format nie ma żadnych opcji"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Serwer WWW nie ma praw do zapisu pliku %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Brak wystarczających uprawnień!"
@@ -4367,11 +4384,6 @@ msgstr "Brak wystarczających uprawnień!"
msgid "No rows selected"
msgstr "Żaden rekord nie został zaznaczony"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Brak miejsca na zapis pliku %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5012,7 +5024,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5048,7 +5060,7 @@ msgstr ""
msgid "Slave replication"
msgstr "Konfiguracja serwera"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6164,7 +6176,8 @@ msgstr "Tabela %s już istnieje!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabela %1$s została pomyślnie zmodyfikowana"
@@ -6179,7 +6192,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Brak nazwy tabeli!"
@@ -6748,12 +6761,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "znak wieloznaczny"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/pt.po b/po/pt.po
index 8d2d58581..d27b3fc5d 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese \n"
@@ -337,7 +337,8 @@ msgstr "Activado"
msgid "Collation"
msgstr "Criação"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr "Tamanho do papel"
msgid "Edit PDF Pages"
msgstr "Editar páginas PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada na base de dados"
@@ -447,13 +448,17 @@ msgstr "Verificação"
msgid "%s table(s)"
msgstr "%s tabela(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "O seu comando SQL foi executado com sucesso"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Tem que escolher pelo menos uma coluna para mostrar"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -575,7 +580,7 @@ msgid "Browse"
msgstr "Visualiza"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -673,7 +678,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Com os seleccionados:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Todos"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Analizar tabela"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -851,6 +856,33 @@ msgstr "Verificar tabela"
msgid "Database Log"
msgstr "Base de Dados"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Não existe espaço suficiente para gravar o ficheiro %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"O ficheiro %s já existe no servidor, mude o nome do ficheiro ou verifique a "
+"opção de substituição (re-escrita)."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "O servidor web não tem permissões para gravar o ficheiro %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "O Dump foi gravado para o ficheiro %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1041,20 +1073,20 @@ msgid "Choose field to display"
msgstr "Escolha campo para mostrar"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Dados"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1062,96 +1094,96 @@ msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binário "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1159,176 +1191,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dom"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Seg"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ter"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Sex"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "em uso"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2027,6 +2059,7 @@ msgstr "Criar"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Sem Privilégios"
@@ -2312,46 +2345,46 @@ msgstr "Executar um query marcado(do marcador)"
msgid "The row has been deleted"
msgstr "Registo eliminado"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Termina"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "na pesquisa"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Mostrando registos "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "O Query demorou %01.4f sec"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Muda"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Vista de impressão (com texto inteiro)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link não encontrado"
@@ -2822,6 +2855,56 @@ msgstr "Estrutura"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Campos terminados por"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Campos delimitados por"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Campos precedidos por"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linhas terminadas por"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3308,12 +3391,12 @@ msgstr "Ligações"
msgid "Copy table to (database.table):"
msgstr "Copia tabela para (base-de-dados.tabela):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabela %s copiada para %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Não é possivel copiar a tabela para o mesmo!"
@@ -3579,11 +3662,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Apagar as Bases de Dados que tenham os mesmos nomes que os utilizadores."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "O Dump foi gravado para o ficheiro %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinâmico"
@@ -3653,10 +3731,6 @@ msgstr "Edição Excel"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Instrucções de inserção múltiplas"
@@ -3675,30 +3749,10 @@ msgstr "Tentativas falhadas"
msgid "Field %s has been dropped"
msgstr "O campo %s foi eliminado"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Campos delimitados por"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Campos precedidos por"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Qtd Campos"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Campos terminados por"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"O ficheiro %s já existe no servidor, mude o nome do ficheiro ou verifique a "
-"opção de substituição (re-escrita)."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3801,10 +3855,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Tem que escolher pelo menos uma coluna para mostrar"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebráico"
@@ -3978,35 +4028,11 @@ msgstr "Relações internas"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4017,7 +4043,7 @@ msgstr ""
msgid "Japanese"
msgstr "Japonês"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4100,10 +4126,6 @@ msgstr "Tamanho/Valores*"
msgid "Number of rows per page"
msgstr "Número de registos por página"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linhas terminadas por"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lituano"
@@ -4215,12 +4237,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Move tabela para (base de dados.tabela):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "A tabela %s foi movida para %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Não é posivel mover a tabela para o mesmo!"
@@ -4289,11 +4311,6 @@ msgstr "Nenhum"
msgid "This format has no options"
msgstr "Este formato não tem opções"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "O servidor web não tem permissões para gravar o ficheiro %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Não tem permissões suficientes para aceder aqui, neste momento!"
@@ -4302,11 +4319,6 @@ msgstr "Não tem permissões suficientes para aceder aqui, neste momento!"
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Não existe espaço suficiente para gravar o ficheiro %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4946,7 +4958,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4981,7 +4993,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5978,7 +5990,8 @@ msgstr "O utilizador %s já existe!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Os utilizadores selecionado foram apagados com sucesso."
@@ -5993,7 +6006,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "O nome da tabela está vazio!"
@@ -6520,12 +6533,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 37c251af8..1c2290153 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-21 05:17+0200\n"
"Last-Translator: Maurício Meneghini Fauth \n"
"Language-Team: brazilian_portuguese \n"
@@ -336,7 +336,8 @@ msgstr "Habilitar"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Tamanho do papel"
msgid "Edit PDF Pages"
msgstr "Editar Páginas PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Nenhuma tabela encontrada no Banco de Dados"
@@ -446,13 +447,17 @@ msgstr "Última verificação"
msgid "%s table(s)"
msgstr "%s tabela(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Seu comando SQL foi executado com sucesso"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Deve escolher pelo menos uma coluna para exibir"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Visualizar"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s é o stored engine padrão neste servidor MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Com marcados:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Marcar todos"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "Verificar sobre-carga"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ msgid "Analyze table"
msgstr "Analizar tabela"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -849,6 +854,33 @@ msgstr "Verificar tabela"
msgid "Database Log"
msgstr "Banco de Dados"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Tipo de exportação selecionada tem que ser salva no arquivo!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Espaço insuficiente para salvar o arquivo %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"O arquivo %s já existe no servidor, mude o nome do arquivo ou verifique sua "
+"opção de sobrescrever."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "O servidor web não tem permissão para salvar o arquivo %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump foi salvo no arquivo %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1045,20 +1077,20 @@ msgid "Choose field to display"
msgstr "Escolha o campo para exibir"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Dados"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1066,96 +1098,96 @@ msgid "Next"
msgstr "Próximo"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Binário "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Abr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ago"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Out"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Abr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1163,176 +1195,176 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Ago"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Set"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Out"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dez"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dom"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Seg"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Ter"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Sex"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Dom"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Seg"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Ter"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Qua"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Qui"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Sex"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sab"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dom"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Seg"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Ter"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Qua"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Qui"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Sex"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sab"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "em uso"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2043,6 +2075,7 @@ msgstr "Criar"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Sem privilégios"
@@ -2333,46 +2366,46 @@ msgstr "Executar consulta marcada"
msgid "The row has been deleted"
msgstr "Registro eliminado"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Matar"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "na consulta"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Mostrando registros "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Consulta levou %01.4f segundos"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Alterar"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operações resultantes das consultas"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Ver impressão (com textos completos)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link não encontrado"
@@ -2857,6 +2890,56 @@ msgstr "Estrutura"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Parâmetro inválido para importação CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Campos terminados por"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Campos delimitados por"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Campos contornados por"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linhas terminadas por"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Coluna especificada (%s) é inválida!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Formato inválido na linha %d da entrada CSV."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Contador de campo inválido na linha %d da entrada CSV."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Esse plugin não suporta importações comprimidas!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3332,12 +3415,12 @@ msgstr "Conexões"
msgid "Copy table to (database.table):"
msgstr "Copiar tabela para (Banco de Dados.tabela):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabela %s copiada para %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Não pode copiar a tabela para ela mesma!"
@@ -3607,11 +3690,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump foi salvo no arquivo %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinâmico"
@@ -3680,10 +3758,6 @@ msgstr "Edição do Excel"
msgid "Export/Import to scale"
msgstr "Exportar/Importar para escala"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Tipo de exportação selecionada tem que ser salva no arquivo!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Inserções extendidas"
@@ -3702,30 +3776,10 @@ msgstr "Tentativas falharam"
msgid "Field %s has been dropped"
msgstr "Campo %s foi deletado"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Campos delimitados por"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Campos contornados por"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Campos"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Campos terminados por"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"O arquivo %s já existe no servidor, mude o nome do arquivo ou verifique sua "
-"opção de sobrescrever."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Arquivos"
@@ -3827,10 +3881,6 @@ msgstr "Alimentador"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Deve escolher pelo menos uma coluna para exibir"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebreu"
@@ -4003,35 +4053,11 @@ msgstr "Relações internas"
msgid "Column count has to be larger than zero."
msgstr "Contador da coluna deve ser maior que zero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Coluna especificada (%s) é inválida!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Contador de campo inválido na linha %d da entrada CSV."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Formato inválido na linha %d da entrada CSV."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Parâmetro inválido para importação CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Você deve adicionar pelo menos um campo."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Esse plugin não suporta importações comprimidas!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4042,7 +4068,7 @@ msgstr "Índice de servidor inválido: \"%s\""
msgid "Japanese"
msgstr "Japonês"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4124,10 +4150,6 @@ msgstr "Tamanho/Definir*"
msgid "Number of rows per page"
msgstr "registros por página"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linhas terminadas por"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lituânio"
@@ -4244,12 +4266,12 @@ msgstr "Mover Menu"
msgid "Move table to (database.table):"
msgstr "Mover tabela para (Banco de Dados.tabela):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabela %s foi movida para %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Não pode mover a tabela para ela mesma!"
@@ -4319,11 +4341,6 @@ msgstr "Nenhum"
msgid "This format has no options"
msgstr "Esse formato não tem opções"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "O servidor web não tem permissão para salvar o arquivo %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Você não tem direitos suficientes para estar aqui agora!"
@@ -4332,11 +4349,6 @@ msgstr "Você não tem direitos suficientes para estar aqui agora!"
msgid "No rows selected"
msgstr "Nenhum registro selecionado"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Espaço insuficiente para salvar o arquivo %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4970,7 +4982,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5005,7 +5017,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6124,7 +6136,8 @@ msgstr "Tabela %s já existe!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "A tabela %1$s foi alterada com sucesso"
@@ -6139,7 +6152,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "O Nome da Tabela está vazio!"
@@ -6706,12 +6719,6 @@ msgstr ""
msgid "wildcard"
msgstr "coringa"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/ro.po b/po/ro.po
index 7088ba585..4218edbe9 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-13 00:41+0200\n"
"Last-Translator: \n"
"Language-Team: romanian \n"
@@ -337,7 +337,8 @@ msgstr "Activează"
msgid "Collation"
msgstr "Interclasare"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr "Mărime hîrtie"
msgid "Edit PDF Pages"
msgstr "Editează paginile PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Nu s-a găsit nici un tabel în baza de date."
@@ -447,13 +448,17 @@ msgstr "Ultima verficare"
msgid "%s table(s)"
msgstr "%s tabele"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Comanda dumneavoastră SQL a fost executată cu succes"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Trebuie să alegeți cel puțin o coloană pentru a putea afișa"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -575,7 +580,7 @@ msgid "Browse"
msgstr "Navigare"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -673,7 +678,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s este motorul de stocare stabilit implicit pe acest server MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Cele bifate:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Marchează toate"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr "Verificare depășit"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Analizare tabel"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -851,6 +856,33 @@ msgstr "Verificare tabel"
msgid "Database Log"
msgstr "Baza de date"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Tipul selectat pentru export trebuie salvat într-un fișier!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Spațiu insuficient pentru salvarea fișierului %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Fișierul %s există deja pe server. Schimbați denumirea fișierului sau bifați "
+"opțiunea de suprascriere."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Serverul web nu poate salva fișierul %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Copia a fost salvată în fișierul %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1050,20 +1082,20 @@ msgid "Choose field to display"
msgstr "Selectează un cîmp"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Date"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Anterior"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1071,96 +1103,96 @@ msgid "Next"
msgstr "Următorul"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Total"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Mai"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Iun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Iul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Oct"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Ian"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1168,178 +1200,178 @@ msgid "May"
msgstr "Mai"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Iun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Iul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Noi"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Dum"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Lun"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Vin"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Dum"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Lun"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Mie"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Joi"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Vin"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sâm"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Dum"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Lun"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mie"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Joi"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Vin"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sâm"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "în folosință"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2054,6 +2086,7 @@ msgstr "Creează"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Nu există drepturi de acces"
@@ -2344,46 +2377,46 @@ msgstr "Executare comandă marcată"
msgid "The row has been deleted"
msgstr "Linia a fost ștearsă"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Oprește"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "în interogarea"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Afișează înregistrări"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "total"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "comanda a durat %01.4f sec"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Schimbare"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operațiuni asupra rezultatelor interogării"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Vizualizare listare (împreună cu text)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Legatură nevalidă"
@@ -2892,6 +2925,56 @@ msgstr "Structură"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Invalid parameter for CSV import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Cîmpuri terminate de"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Cîmpuri încadrate de"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Cîmpuri realizate de"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linii terminate de"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Coloană nevalidă (%s) specificată!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Invalid format of CSV input on line %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Invalid field count in CSV input on line %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Modulul opțional nu suportă importuri comprimate!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3372,12 +3455,12 @@ msgstr "Conexiuni"
msgid "Copy table to (database.table):"
msgstr "Copiază tabelul la (bază_de_date.tabel):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabelul %s a fost copiat la %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Nu se poate copia tabelul pe cel existent pentru ca este acelasi"
@@ -3651,11 +3734,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Aruncă baza de date care are același nume ca utilizatorul."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Copia a fost salvată în fișierul %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamic"
@@ -3724,10 +3802,6 @@ msgstr "Ediția Excel"
msgid "Export/Import to scale"
msgstr "Exportă/Importă la scală"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Tipul selectat pentru export trebuie salvat într-un fișier!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Inserări extinse"
@@ -3746,30 +3820,10 @@ msgstr "Încercări nereușite"
msgid "Field %s has been dropped"
msgstr "Cîmpul %s a fost aruncat"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Cîmpuri încadrate de"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Cîmpuri realizate de"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Cîmpuri"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Cîmpuri terminate de"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Fișierul %s există deja pe server. Schimbați denumirea fișierului sau bifați "
-"opțiunea de suprascriere."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Fișiere"
@@ -3871,10 +3925,6 @@ msgstr "Gestionar"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Trebuie să alegeți cel puțin o coloană pentru a putea afișa"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Ebraică"
@@ -4048,35 +4098,11 @@ msgstr "Relații interne"
msgid "Column count has to be larger than zero."
msgstr "Numărul coloanelor trebuie să fie mai mare de zero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Coloană nevalidă (%s) specificată!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Invalid field count in CSV input on line %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Invalid format of CSV input on line %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Invalid parameter for CSV import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Trebuie să adăugați cel puțin un cîmp."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Modulul opțional nu suportă importuri comprimate!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4087,7 +4113,7 @@ msgstr "Index de server nevalid: „%s”"
msgid "Japanese"
msgstr "Japonez"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4169,10 +4195,6 @@ msgstr "Lungime/Setare"
msgid "Number of rows per page"
msgstr "Numărul de înregistrări pe pagină"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linii terminate de"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lituanian"
@@ -4289,12 +4311,12 @@ msgstr "Mutare meniu"
msgid "Move table to (database.table):"
msgstr "Mută tabelul la (bază_de_date.tabel):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabelul %s a fost mutat la %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Nu se poate copia tabelul peste cel existent pentru că este același!"
@@ -4366,11 +4388,6 @@ msgstr "Nici unul(a)"
msgid "This format has no options"
msgstr "Acest format nu are opțiuni"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Serverul web nu poate salva fișierul %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!"
@@ -4379,11 +4396,6 @@ msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!"
msgid "No rows selected"
msgstr "Nu e nici un rînd selectat"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Spațiu insuficient pentru salvarea fișierului %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5025,7 +5037,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5060,7 +5072,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6165,7 +6177,8 @@ msgstr "Tabelul %s există deja!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabelul %1$s a fost alterat cu succes"
@@ -6180,7 +6193,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Numele de tabel este gol!"
@@ -6748,12 +6761,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "Metacaracter"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/ru.po b/po/ru.po
index 68f716267..3af3f3c29 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal \n"
"Language-Team: russian \n"
@@ -337,7 +337,8 @@ msgstr "Включить"
msgid "Collation"
msgstr "Сравнение"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr "Размер бумаги"
msgid "Edit PDF Pages"
msgstr "Редактирование PDF-страниц"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Таблиц в базе данных не обнаружено."
@@ -447,13 +448,18 @@ msgstr "Последняя проверка"
msgid "%s table(s)"
msgstr "Таблиц: %s"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL-запрос был успешно выполнен"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr ""
+"Для выполнения запроса, должен быть выбран отображаемый столбец/столбцы."
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -575,7 +581,7 @@ msgid "Browse"
msgstr "Обзор"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -673,7 +679,7 @@ msgstr "Слежение включено."
msgid "Tracking is not active."
msgstr "Слежение выключено."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -706,20 +712,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s - тип таблиц данного MySQL сервера устанавливаемый по умолчанию."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "С отмеченными:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Отметить все"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -731,7 +737,7 @@ msgid "Check tables having overhead"
msgstr "Отметить требующие оптимизации"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -759,8 +765,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -844,6 +850,33 @@ msgstr "Отслеживать таблицу"
msgid "Database Log"
msgstr "Журнал базы данных"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Выбранный тип экспорта возможен только в файл!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Для сохранения файла %s недостаточно дискового пространства."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Файл %s уже существует на сервере, измените имя или включите параметр "
+"перезаписи."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Не достаточно прав для сохранения файла %s на веб-сервере."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Дамп был сохранен в файл %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1044,21 +1077,21 @@ msgid "Choose field to display"
msgstr "Выбор отображаемого столбца"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Пожертвование"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Назад"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1066,96 +1099,96 @@ msgid "Next"
msgstr "Следующий"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Всего"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Двоичный"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Мар"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Апр"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Май"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Июн"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Июл"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Авг"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Окт"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1163,178 +1196,178 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Вс"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пн"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Вт"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пт"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Вс"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Вс"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Вики"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "используется"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2049,6 +2082,7 @@ msgstr "Создать"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Нет привилегий"
@@ -2342,46 +2376,46 @@ msgstr "Выполнить отмеченный запрос"
msgid "The row has been deleted"
msgstr "Запись была удалена"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Завершить"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "по запросу"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Отображает строки"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "всего"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "запрос занял %01.4f сек."
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Изменить"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Использование результатов запроса"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Версия для печати (полностью)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Связь не найдена"
@@ -2892,6 +2926,58 @@ msgstr "структура"
msgid "Go to view"
msgstr "Перейти к отображению (VIEW)"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Неправильный параметр импорта CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Разделитель полей"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Значения полей обрамлены"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Символ экранирования"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Разделитель строк"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Выбран неверный столбец (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Неправильный формат входных CSV-данных в строке %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Неправильное количество полей во входных CSV-данных в строке %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Этот модуль не поддерживает импорт сжатых данных!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Выбранный XML файл некорректен, либо неполон. Проверьте возможные ошибки и "
+"попробуйте ещё раз."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3372,12 +3458,12 @@ msgstr "Соединения"
msgid "Copy table to (database.table):"
msgstr "Скопировать таблицу в (база данных.таблица):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Таблица %s была скопирована в %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Невозможно скопировать таблицу саму в себя!"
@@ -3650,11 +3736,6 @@ msgstr "Не используйте параметр AUTO_INCREMENT для ну
msgid "Drop the databases that have the same names as the users."
msgstr "Удалить базы данных, имена которых совпадают с именами пользователей."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Дамп был сохранен в файл %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "динамический"
@@ -3723,10 +3804,6 @@ msgstr "Excel-версия"
msgid "Export/Import to scale"
msgstr "Масштаб"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Выбранный тип экспорта возможен только в файл!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Расширенные вставки"
@@ -3745,30 +3822,10 @@ msgstr "Неудачных попыток"
msgid "Field %s has been dropped"
msgstr "Поле "%s" было удалено"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Значения полей обрамлены"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Символ экранирования"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Поля"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Разделитель полей"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Файл %s уже существует на сервере, измените имя или включите параметр "
-"перезаписи."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Файлов"
@@ -3868,11 +3925,6 @@ msgstr "Обработчик"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Выбранные целевые таблицы были синхронизированы с таблицами источника."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr ""
-"Для выполнения запроса, должен быть выбран отображаемый столбец/столбцы."
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Иврит"
@@ -4050,35 +4102,11 @@ msgstr "Внутренние связи"
msgid "Column count has to be larger than zero."
msgstr "Количество столбцов должно быть больше нуля."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Выбран неверный столбец (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Неправильное количество полей во входных CSV-данных в строке %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Неправильный формат входных CSV-данных в строке %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Неправильный параметр импорта CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Необходимо добавить хотя бы одно поле."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Этот модуль не поддерживает импорт сжатых данных!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4089,7 +4117,7 @@ msgstr "Неправильный номер сервера: "%s""
msgid "Japanese"
msgstr "Японский"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4171,10 +4199,6 @@ msgstr "Длина/значения"
msgid "Number of rows per page"
msgstr "Количество строк на странице"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Разделитель строк"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Литовский"
@@ -4293,12 +4317,12 @@ msgstr "Переместить меню"
msgid "Move table to (database.table):"
msgstr "Переместить таблицы в (база данных.таблица):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Таблица %s была перемещена в %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Не возможно переместить таблицу саму в себя!"
@@ -4368,11 +4392,6 @@ msgstr "Нет"
msgid "This format has no options"
msgstr "Для этого формата нет настраиваемых параметров"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Не достаточно прав для сохранения файла %s на веб-сервере."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Для доступа к данной странице у вас недостаточно прав!"
@@ -4381,11 +4400,6 @@ msgstr "Для доступа к данной странице у вас нед
msgid "No rows selected"
msgstr "Для совершения действия необходимо выбрать одну или несколько строк"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Для сохранения файла %s недостаточно дискового пространства."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5040,7 +5054,7 @@ msgstr "Управление ошибками:"
msgid "IO Thread %s only"
msgstr "IO только поток %s"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5077,7 +5091,7 @@ msgstr "Пропустить следующую"
msgid "Slave replication"
msgstr "Репликация подчинённого сервера"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6215,7 +6229,8 @@ msgstr "Таблица %s уже существует!"
msgid "Alter column(s)"
msgstr "Изменить поле(я)"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Таблица %1$s была успешно изменена"
@@ -6230,7 +6245,7 @@ msgstr "Применить индекс(ы)"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Удалить все предыдущие строки из целевой таблицы?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Не задано имя таблицы!"
@@ -6803,14 +6818,6 @@ msgstr "Вики"
msgid "wildcard"
msgstr "Групповой символ"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Выбранный XML файл некорректен, либо неполон. Проверьте возможные ошибки и "
-"попробуйте ещё раз."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Экспортировать содержимое"
diff --git a/po/si.po b/po/si.po
index ec817bfb8..fdc3bac39 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: sinhala \n"
@@ -336,7 +336,8 @@ msgstr "සක්රිය කරන් ලද"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "පිටුවේ ප්රමාණය"
msgid "Edit PDF Pages"
msgstr "PDF පිටු සංස්කරණය කරන්න"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත."
@@ -446,13 +447,17 @@ msgstr "අවසන් පරීක්ෂාව"
msgid "%s table(s)"
msgstr "%s table(s)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්රියාවට නංවන ලදි"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "පෙන්වීම සඳහා අවම වශයෙන් එක් තීරයක්වත් තෝරාගත යුතුයි"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "බ්රවුස් කරන්න"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -703,20 +708,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s is the default storage engine on this MySQL server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "තෝරාගත්:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "සියල්ල කතිර කොටුගත කරන්න"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -728,7 +733,7 @@ msgid "Check tables having overhead"
msgstr "Check tables having overhead"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -756,8 +761,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -849,6 +854,32 @@ msgstr "වගුව පරීක්ෂා කරන්න"
msgid "Database Log"
msgstr "දත්තගබඩාව"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Selected export type has to be saved in file!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Insufficient space to save the file %s ගොනුව සේව් කිරීමට ප්රමාණවත් ."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"File %s already exists on server, change filename or check overwrite option."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "The web server does not have permission to save the file %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "%s ගොනුවට නික්ෂේප දත්ත සේව් කරන ලදි."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1045,20 +1076,20 @@ msgid "Choose field to display"
msgstr "පෙන්වීම සඳහා ක්ෂේත්රයක් තෝරාගන්න"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "දත්ත"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "පෙර"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1066,96 +1097,96 @@ msgid "Next"
msgstr "මීලඟ"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "මුළු එකතුව"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "ද්වීමය"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "මාර්තු"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "අප්රේල්"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "මැයි"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ජූනි"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ජූලි"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "අගෝස්තු"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ඔක්තෝම්බර්"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "ජනවාරි"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "පෙබරවාරි"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "මාර්තු"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "අප්රේල්"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1163,176 +1194,176 @@ msgid "May"
msgstr "මැයි"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "ජූනි"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "ජූලි"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "අගෝස්තු"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "සැප්තැම්බර්"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "ඔක්තෝම්බර්"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "නොවැම්බර්"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "දෙසැම්බර්"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "ඉරිදා"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "සදුදා"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "අගහරුවදා"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "සිකුරාදා:"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "ඉරිදා"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "සදුදා"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "අගහරුවදා"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "බදාදා"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "බ්රහස්පතින්දා"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "සිකුරාදා:"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "සෙනසුරාදා"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "ඉරිදා"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "සදුදා"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "අගහරුවදා"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "බදාදා"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "බ්රහස්පතින්දා"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "සිකුරාදා:"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "සෙනසුරාදා"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "භාවිතා වෙමින් පවතී"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2037,6 +2068,7 @@ msgstr "සාදන්න"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "වරප්රසාද නොමැත"
@@ -2327,46 +2359,46 @@ msgstr "Execute bookmarked query"
msgid "The row has been deleted"
msgstr "පෙළ ඉවත් කරන ලදි"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "in query"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "පේළි පෙන්වන්න"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "මුළු එකතුව"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query took %01.4f sec"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "වෙනස් කරන්න"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Query results operations"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Print view (with full texts)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Link not found"
@@ -2851,6 +2883,56 @@ msgstr "සැකිල්ල"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Invalid parameter for CSV import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Fields terminated by"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Fields enclosed by"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Fields escaped by"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Lines terminated by"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Invalid column (%s) specified!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Invalid format of CSV input on line %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Invalid field count in CSV input on line %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "This plugin does not support compressed imports!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3331,12 +3413,12 @@ msgstr "සම්බන්ධතා"
msgid "Copy table to (database.table):"
msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට පිටපත් කරන්න:"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "%s වගුව %s වෙතට පිටපත් කරන ලදි."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "එම වගුවටම පිටපත් කල නොහැක!"
@@ -3605,11 +3687,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "භාවිතා කරන්නන් හා සමාන නම් ඇති දත්තගබඩා හලන්න."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "%s ගොනුවට නික්ෂේප දත්ත සේව් කරන ලදි."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "ගතික"
@@ -3679,10 +3756,6 @@ msgstr "එක්සෙල් සංස්කරණය"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Selected export type has to be saved in file!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Extended inserts"
@@ -3701,29 +3774,10 @@ msgstr "අසාර්ථක උත්සාහයන්"
msgid "Field %s has been dropped"
msgstr "%s ක්ෂේත්රය ඉවත් කරන ලදි"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Fields enclosed by"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Fields escaped by"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "ක්ෂේත්ර"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Fields terminated by"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"File %s already exists on server, change filename or check overwrite option."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3826,10 +3880,6 @@ msgstr "Handler"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "පෙන්වීම සඳහා අවම වශයෙන් එක් තීරයක්වත් තෝරාගත යුතුයි"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "හීබෲ"
@@ -4003,35 +4053,11 @@ msgstr "Internal relations"
msgid "Column count has to be larger than zero."
msgstr "Column count has to be larger than zero."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Invalid column (%s) specified!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Invalid field count in CSV input on line %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Invalid format of CSV input on line %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Invalid parameter for CSV import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "ඔබ අවම වශයෙන් එක් ක්ෂේත්රයක්වත් එක් කල යුතුයි."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "This plugin does not support compressed imports!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4042,7 +4068,7 @@ msgstr "Invalid server index: \"%s\""
msgid "Japanese"
msgstr "ජපන්"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4124,10 +4150,6 @@ msgstr "දිග/අගයන්"
msgid "Number of rows per page"
msgstr "පිටුවකට පේළි ගණන"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Lines terminated by"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "ලිතුවේනියානු"
@@ -4245,12 +4267,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "වගුව (දත්තගබඩාව.වගුව) වෙතට ගෙන යන්න:"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "%s වගුව %s වෙතට ගෙනයන ලදි."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Can't move table to same one!"
@@ -4319,11 +4341,6 @@ msgstr "කිසිවක් නැත"
msgid "This format has no options"
msgstr "මෙම ආකෘතියේ විකල්ප කිසිවක් නැත"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "The web server does not have permission to save the file %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "You don't have sufficient privileges to be here right now!"
@@ -4332,11 +4349,6 @@ msgstr "You don't have sufficient privileges to be here right now!"
msgid "No rows selected"
msgstr "පේළි කිසිවක් තෝරගෙන නැත"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Insufficient space to save the file %s ගොනුව සේව් කිරීමට ප්රමාණවත් ."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4972,7 +4984,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5007,7 +5019,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6107,7 +6119,8 @@ msgstr " %s වගුව දැනටමත් පවතී!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "The selected users have been deleted successfully."
@@ -6122,7 +6135,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "වගුවෙහි නම හිස්ව ඇත!"
@@ -6682,12 +6695,6 @@ msgstr ""
msgid "wildcard"
msgstr "wildcard"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/sk.po b/po/sk.po
index b651b8fd0..8b1f3cfbf 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: slovak \n"
@@ -338,7 +338,8 @@ msgstr "Zapnuté"
msgid "Collation"
msgstr "Zotriedenie"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -396,8 +397,8 @@ msgstr "Veľkosť stránky"
msgid "Edit PDF Pages"
msgstr "Upraviť PDF Stránky"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Neboli nájdené žiadne tabuľky v tejto datábaze."
@@ -448,13 +449,17 @@ msgstr "Posledná kontrola"
msgid "%s table(s)"
msgstr "%s tabuľka(y)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL dopyt bol úspešne vykonaný"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Zvolte prosím aspoň jeden stĺpec, ktorý chcete zobraziť"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -576,7 +581,7 @@ msgid "Browse"
msgstr "Prechádzať"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -675,7 +680,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -706,20 +711,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "Na tomto MySQL servri je prednastaveným úložným systémom %s."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Výber:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Označiť všetko"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -731,7 +736,7 @@ msgid "Check tables having overhead"
msgstr "Zvoliť neoptimálne"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -759,8 +764,8 @@ msgid "Analyze table"
msgstr "Analyzovať tabuľku"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -849,6 +854,33 @@ msgstr "Skontrolovať tabuľku"
msgid "Database Log"
msgstr "Databáza"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Vybraný typ exportu musí byť uložený do súboru!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Nedostatok miesta pre uloženie súboru %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Súbor %s už existuje na servery, zmente názov súboru alebo zvolte prepísanie "
+"súboru."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Web server nemá oprávenia na uloženie do súboru %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump (schéma) bol uložený do súboru %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1046,21 +1078,21 @@ msgid "Choose field to display"
msgstr "Zvolte, ktoré pole zobraziť"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Žiadny"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Predchádzajúci"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1068,96 +1100,96 @@ msgid "Next"
msgstr "Ďalší"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Celkom"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binárny"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Máj"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jún"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Júl"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1165,178 +1197,178 @@ msgid "May"
msgstr "Máj"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jún"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Júl"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ne"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Po"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Út"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pi"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ne"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Po"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Út"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "St"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Št"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pi"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "So"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Út"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "St"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Št"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pi"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "práve sa používa"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2037,6 +2069,7 @@ msgstr "Vytvoriť"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Žiadne oprávnenia"
@@ -2333,46 +2366,46 @@ msgstr "Spustiť obľúbený dopyt"
msgid "The row has been deleted"
msgstr "Riadok bol zmazaný"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Zabiť"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "v dopyte"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Ukázať záznamy "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "celkovo"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Dopyt zabral %01.4f sek."
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Zmeniť"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operácie s výsledkami dopytu"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Náhľad tlače (s kompletnými textami)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Linka nebola nájdená"
@@ -2853,6 +2886,56 @@ msgstr "Štruktúra"
msgid "Go to view"
msgstr "Prejsť na Prejsť na pohľad"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Chybný parameter pre CSV import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Polia ukončené"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Polia uzatvorené"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Polia uvedené pomocou"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Riadky ukončené"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Bol zadaný chybný stĺpec (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Chybný formát v CSV vstupe na riadku %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Chybný počet položiek v CSV vstupe na riadku %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Tento plug-in nepodporuje import komprimovaných súborov!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3335,12 +3418,12 @@ msgstr "Spojenia"
msgid "Copy table to (database.table):"
msgstr "Skopírovať tabuľku do (databáza.tabuľka):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabuľka %s bola skorírovaná do %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Nedá sa skopírovať tabuľka sama do seba!"
@@ -3605,11 +3688,6 @@ msgstr "Nepoužívať AUTO_INCREMENT pre nulové hodnoty"
msgid "Drop the databases that have the same names as the users."
msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump (schéma) bol uložený do súboru %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamický"
@@ -3678,10 +3756,6 @@ msgstr "Verzia Excelu"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Vybraný typ exportu musí byť uložený do súboru!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Rozšírené vkladanie"
@@ -3700,30 +3774,10 @@ msgstr "Nepodarených pokusov"
msgid "Field %s has been dropped"
msgstr "Pole %s bolo odstránené"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Polia uzatvorené"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Polia uvedené pomocou"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Polia"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Polia ukončené"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Súbor %s už existuje na servery, zmente názov súboru alebo zvolte prepísanie "
-"súboru."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Súbory"
@@ -3824,10 +3878,6 @@ msgstr "Manipulačná Rutina"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Zvolte prosím aspoň jeden stĺpec, ktorý chcete zobraziť"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebrejsky"
@@ -4003,35 +4053,11 @@ msgstr "Interné vzťahy"
msgid "Column count has to be larger than zero."
msgstr "Počet stĺpcov musí byť väčší ako nula."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Bol zadaný chybný stĺpec (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Chybný počet položiek v CSV vstupe na riadku %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Chybný formát v CSV vstupe na riadku %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Chybný parameter pre CSV import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Musíte pridať aspoň jeden stĺpec."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Tento plug-in nepodporuje import komprimovaných súborov!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4042,7 +4068,7 @@ msgstr "Chybný index serveru: \"%s\""
msgid "Japanese"
msgstr "Japončina"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4124,10 +4150,6 @@ msgstr "Dĺžka/Nastaviť*"
msgid "Number of rows per page"
msgstr "záznamov na stránku"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Riadky ukončené"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litovsky"
@@ -4244,12 +4266,12 @@ msgstr "Presunúť Menu"
msgid "Move table to (database.table):"
msgstr "Presunúť tabuľku do (databáza.tabuľka):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabuľka %s bola presunutá do %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Nedá sa presunúť tabuľka sama do seba!"
@@ -4319,11 +4341,6 @@ msgstr "Žiadna"
msgid "This format has no options"
msgstr "Tento formát nemá žiadne nastavenia"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Web server nemá oprávenia na uloženie do súboru %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!"
@@ -4332,11 +4349,6 @@ msgstr "Nemáte dostatočné práva na vykonanie tejto akcie!"
msgid "No rows selected"
msgstr "Nebol vybraný žiadny riadok"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Nedostatok miesta pre uloženie súboru %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4974,7 +4986,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5011,7 +5023,7 @@ msgstr ""
msgid "Slave replication"
msgstr "Slave replikácia"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6121,7 +6133,8 @@ msgstr "Tabuľka %s už existuje!"
msgid "Alter column(s)"
msgstr "Upraviť stĺpec/stĺpce"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabuľka %1$s bola úspešné upravená"
@@ -6137,7 +6150,7 @@ msgstr "Odstrániť index/indexy"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Tabuľka je prázdna!"
@@ -6695,12 +6708,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "nahradzujúci znak"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/sl.po b/po/sl.po
index 4635adce0..6683d75e7 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-05-07 23:30+0200\n"
"Last-Translator: \n"
"Language-Team: slovenian \n"
@@ -330,7 +330,8 @@ msgstr "Omogoči"
msgid "Collation"
msgstr "Pravilo za razvrščanje znakov"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -388,8 +389,8 @@ msgstr "Velikost papirja"
msgid "Edit PDF Pages"
msgstr "Uredi PDF strani"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "V podatkovni zbirki ni mogoče najti tabel."
@@ -440,13 +441,17 @@ msgstr "Zadnjič pregledano"
msgid "%s table(s)"
msgstr "%s tabel"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Poizvedba SQL je bila uspešno izvedena"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Za prikaz morate izbrati morate vsaj en stolpec"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -568,7 +573,7 @@ msgid "Browse"
msgstr "Prebrskaj"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -666,7 +671,7 @@ msgstr "Sledenje je aktivno."
msgid "Tracking is not active."
msgstr "Sledenje ni aktivno."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -697,20 +702,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je privzet skladiščni pogon na tem strežniku MySQL."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Z označenim:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Označi vse"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -722,7 +727,7 @@ msgid "Check tables having overhead"
msgstr "Preveri prekoračene"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -750,8 +755,8 @@ msgid "Analyze table"
msgstr "Analiziraj tabelo"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -835,6 +840,33 @@ msgstr "Sledi tabeli"
msgid "Database Log"
msgstr "Dnevnik podatkovne zbirke"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Izbrana vrsta izvoza mora biti shranjena v datoteko!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Ni dovolj prostora za shranjevanje datoteke %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Datoteka %s že obstaja na strežniku, spremenite ime novi ali prepišite "
+"obstoječo datoteko."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Spletni strežnik nima dovoljenja za shranjevanje datoteke %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump je shranjen v datoteko %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1032,17 +1064,17 @@ msgid "Choose field to display"
msgstr "Izberite polje za prikaz"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr "Končano"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr "Prejšnji"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1050,231 +1082,231 @@ msgid "Next"
msgstr "Naslednji"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr "Danes"
-#: js/messages.php:81
+#: js/messages.php:82
msgid "January"
msgstr "januar"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr "februar"
-#: js/messages.php:83
+#: js/messages.php:84
msgid "March"
msgstr "marec"
-#: js/messages.php:84
+#: js/messages.php:85
msgid "April"
msgstr "april"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "maj"
-#: js/messages.php:86
+#: js/messages.php:87
msgid "June"
msgstr "junij"
-#: js/messages.php:87
+#: js/messages.php:88
msgid "July"
msgstr "julij"
-#: js/messages.php:88
+#: js/messages.php:89
msgid "August"
msgstr "avgust"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr "september"
-#: js/messages.php:90
+#: js/messages.php:91
msgid "October"
msgstr "oktober"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr "november"
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr "december"
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
msgctxt "Short month name"
msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "dec"
-#: js/messages.php:121
+#: js/messages.php:122
msgid "Sunday"
msgstr "nedelja"
-#: js/messages.php:122
+#: js/messages.php:123
msgid "Monday"
msgstr "ponedeljek"
-#: js/messages.php:123
+#: js/messages.php:124
msgid "Tuesday"
msgstr "torek"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr "sreda"
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr "četrtek"
-#: js/messages.php:126
+#: js/messages.php:127
msgid "Friday"
msgstr "petek"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr "sobota"
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Tor"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Sre"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sob"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
msgid "Su"
msgstr "Ne"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
msgid "Mo"
msgstr "Po"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
msgid "Tu"
msgstr "To"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
msgid "We"
msgstr "Sr"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
msgid "Th"
msgstr "Če"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
msgid "Fr"
msgstr "Pe"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
msgid "Sa"
msgstr "So"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr "ted."
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr "Ura"
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr "Minute"
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr "Sekunde"
@@ -1984,6 +2016,7 @@ msgstr "Ustvari"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Brez privilegijev"
@@ -2273,46 +2306,46 @@ msgstr "Izvedi izbrano poizvedbo"
msgid "The row has been deleted"
msgstr "Vrstica je izbrisana"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Prekini proces"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "v poizvedbi"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Prikazujem vrstice"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "skupaj"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Poizvedba je potrebovala %01.4f s"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Spremeni"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Dejanja rezultatov poizvedbe"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Pogled za tiskanje (s polnimi besedili)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Povezave ni mogoče najti"
@@ -2784,6 +2817,58 @@ msgstr "struktura"
msgid "Go to view"
msgstr "Pojdi na pogled"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Neveljavni parameter za uvoz CSV: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Polja zaključena z"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Polja obdana z"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Polja izognjena z"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Vrstice zaključene z"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Določen neveljavni stolpec (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Neveljavna oblika vnosa CSV v vrstici %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Neveljavno število polj v vnosu CSV v vrstici %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Ta vtičnik ne podpira kompresiranih uvozov!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Določena datoteka XML je ali skažena ali nepopolna. Prosimo, odpravite "
+"težave in poskusite znova."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3263,12 +3348,12 @@ msgstr "Povezave"
msgid "Copy table to (database.table):"
msgstr "Kopiraj tabelo v (podatkovna_zbirka.tabela):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabela %s je skopirana v %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Tabele ni mogoče kopirati same vase!"
@@ -3531,11 +3616,6 @@ msgstr "Ne uporabi AUTO_INCREMENT za ničelne vrednosti"
msgid "Drop the databases that have the same names as the users."
msgstr "Izbriši podatkovne zbirke, ki imajo enako ime kot uporabniki."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump je shranjen v datoteko %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamično"
@@ -3604,10 +3684,6 @@ msgstr "Izdaja za Excel"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Izbrana vrsta izvoza mora biti shranjena v datoteko!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Razširjene poizvedbe insert"
@@ -3626,30 +3702,10 @@ msgstr "Neuspeli poizkusi"
msgid "Field %s has been dropped"
msgstr "Polje %s je zavrženo"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Polja obdana z"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Polja izognjena z"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Polja"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Polja zaključena z"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Datoteka %s že obstaja na strežniku, spremenite ime novi ali prepišite "
-"obstoječo datoteko."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Datoteke"
@@ -3750,10 +3806,6 @@ msgstr "Upravljavec"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Izbrane ciljne tabele so bile sinhronizirane z izvornimi tabelami."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Za prikaz morate izbrati morate vsaj en stolpec"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebrejsko"
@@ -3928,35 +3980,11 @@ msgstr "Notranja razmerja"
msgid "Column count has to be larger than zero."
msgstr "Število stolpcev mora biti večje od nič."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Določen neveljavni stolpec (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Neveljavno število polj v vnosu CSV v vrstici %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Neveljavna oblika vnosa CSV v vrstici %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Neveljavni parameter za uvoz CSV: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Dodati morate vsaj eno polje."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Ta vtičnik ne podpira kompresiranih uvozov!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3967,7 +3995,7 @@ msgstr "Neveljaven indeks strežnika: \"%s\""
msgid "Japanese"
msgstr "Japonsko"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4052,10 +4080,6 @@ msgstr "Dolžina/Vrednosti*"
msgid "Number of rows per page"
msgstr "Število vrstic na stran"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Vrstice zaključene z"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litvansko"
@@ -4171,12 +4195,12 @@ msgstr "Premakni meni"
msgid "Move table to (database.table):"
msgstr "Premakni tabelo v (podatkovna_zbirka.tabela):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabela %s je bila premaknjena v %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Tabele ni mogoče premakniti same vase!"
@@ -4246,11 +4270,6 @@ msgstr "Brez"
msgid "This format has no options"
msgstr "Za to obliko ni možnosti"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Spletni strežnik nima dovoljenja za shranjevanje datoteke %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Nimate dovolj pravic, da bi bili sedaj tukaj!"
@@ -4259,11 +4278,6 @@ msgstr "Nimate dovolj pravic, da bi bili sedaj tukaj!"
msgid "No rows selected"
msgstr "Ni izbranih vrstic"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Ni dovolj prostora za shranjevanje datoteke %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4899,7 +4913,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4934,7 +4948,7 @@ msgstr "Preskoči naslednjo"
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5943,7 +5957,8 @@ msgstr "Tabela %s že obstaja!"
msgid "Alter column(s)"
msgstr "Spremeni stolpec(-ce)"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabela %1$s je bila uspešno spremenjena"
@@ -5958,7 +5973,7 @@ msgstr "Uveljavi indeks(e)"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Ali želite izbrisati vse prejšnje vrstice iz ciljnih tabel?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Ime tabele je prazno!"
@@ -6516,14 +6531,6 @@ msgstr "wiki"
msgid "wildcard"
msgstr "nadomestni znak"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Določena datoteka XML je ali skažena ali nepopolna. Prosimo, odpravite "
-"težave in poskusite znova."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Izvozi vsebine"
diff --git a/po/sq.po b/po/sq.po
index b6a8f7528..9a1e8ac5b 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:08+0200\n"
"Last-Translator: Michal \n"
"Language-Team: albanian \n"
@@ -339,7 +339,8 @@ msgstr "Aktiv"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -397,8 +398,8 @@ msgstr "Përmasat e letrës"
msgid "Edit PDF Pages"
msgstr "Ndrysho faqen PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Nuk gjenden tabela në databazë."
@@ -449,13 +450,17 @@ msgstr "Kontrolli i fundit"
msgid "%s table(s)"
msgstr "%s tabela(at)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Query u zbatua me sukses"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Zgjidh të paktën një kolonë për të parë"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -577,7 +582,7 @@ msgid "Browse"
msgstr "Shfaq"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -675,7 +680,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -707,20 +712,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "N.q.s. të zgjedhur:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Zgjidhi të gjithë"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -732,7 +737,7 @@ msgid "Check tables having overhead"
msgstr "Zgjidh të mbingarkuarit"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -760,8 +765,8 @@ msgid "Analyze table"
msgstr "Analizo tabelën"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -850,6 +855,33 @@ msgstr "Kontrollo tabelën"
msgid "Database Log"
msgstr "Databazat"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Hapësirë e pamjaftueshme për të ruajtur file %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"File %s ekziston në server: të lutem, ndrysho emrin e file ose zgjidh "
+"opcionin \"Mbishkruaj\"."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Serveri web nuk ka të drejtat e duhura për të ruajtur file %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump u ruajt tek file %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1037,21 +1069,21 @@ msgid "Choose field to display"
msgstr "Zgjidh fushën që dëshiron të shohësh"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Asnjë lloj"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Paraardhësi"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1059,96 +1091,96 @@ msgid "Next"
msgstr "Në vazhdim"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Gjithsej"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Pri"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Maj"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Qer"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Kor"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Gsh"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Tet"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Shk"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Pri"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1156,176 +1188,176 @@ msgid "May"
msgstr "Maj"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Qer"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Kor"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Gsh"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sht"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Tet"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nën"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dhj"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Djl"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Hën"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Mar"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pre"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Djl"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Hën"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Mar"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Mër"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Enj"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pre"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sht"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Djl"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Hën"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Mar"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Mër"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Enj"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pre"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sht"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "në përdorim"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2020,6 +2052,7 @@ msgstr "Krijo"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Asnjë e drejtë"
@@ -2304,46 +2337,46 @@ msgstr "Zbaton query nga libërshënuesi"
msgid "The row has been deleted"
msgstr "rreshti u fshi"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Hiq"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "tek query"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Shfaqja e regjistrimeve "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "Gjithsej"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Query ka zgjatur %01.4f sec"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Ndrysho"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Shfaq për printim (me full text)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Lidhja nuk u gjet"
@@ -2811,6 +2844,56 @@ msgstr "Struktura"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Fushë që mbaron me"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Fushë e përbërë nga"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Fushë e kufizuar nga"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Rreshta që mbarojnë me"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3295,12 +3378,12 @@ msgstr "Lidhje"
msgid "Copy table to (database.table):"
msgstr "Kopjo tabelën tek (databaza.tabela):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabela %s u kopjua tek %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "I pamundur kopjimi i tabelës tek vetvetja!"
@@ -3569,11 +3652,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump u ruajt tek file %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamik"
@@ -3643,10 +3721,6 @@ msgstr "Edicion i Excel"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Të shtuara të zgjeruara"
@@ -3665,30 +3739,10 @@ msgstr "Përpjekje të dështuara"
msgid "Field %s has been dropped"
msgstr "Fusha %s u eleminua"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Fushë e përbërë nga"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Fushë e kufizuar nga"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Fusha"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Fushë që mbaron me"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"File %s ekziston në server: të lutem, ndrysho emrin e file ose zgjidh "
-"opcionin \"Mbishkruaj\"."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3790,10 +3844,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Zgjidh të paktën një kolonë për të parë"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebraike"
@@ -3967,35 +4017,11 @@ msgstr "Relacione të brendshme"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4006,7 +4032,7 @@ msgstr ""
msgid "Japanese"
msgstr "Japonisht"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4088,10 +4114,6 @@ msgstr "Gjatësia/Set*"
msgid "Number of rows per page"
msgstr "regjistrime për faqe"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Rreshta që mbarojnë me"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Lituane"
@@ -4204,12 +4226,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Sposto tabelën në (databaza.tabela):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabela %s u lëviz tek %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "E pamundur lëvizja e tabelës tek vetvetja!"
@@ -4278,11 +4300,6 @@ msgstr "Asnjë lloj"
msgid "This format has no options"
msgstr "Ky format nuk ka opcione"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Serveri web nuk ka të drejtat e duhura për të ruajtur file %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Nuk ke të drejta të mjaftueshme për të kryer këtë operacion!"
@@ -4291,11 +4308,6 @@ msgstr "Nuk ke të drejta të mjaftueshme për të kryer këtë operacion!"
msgid "No rows selected"
msgstr "Nuk ka rreshta të zgjedhur"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Hapësirë e pamjaftueshme për të ruajtur file %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4942,7 +4954,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4977,7 +4989,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5969,7 +5981,8 @@ msgstr "Përdoruesi %s ekziston!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
@@ -5984,7 +5997,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Emri i tabelës është bosh!"
@@ -6537,12 +6550,6 @@ msgstr ""
msgid "wildcard"
msgstr "wildcard"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index 035dc807b..f61912946 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: serbian_cyrillic \n"
@@ -338,7 +338,8 @@ msgstr "Омогућено"
msgid "Collation"
msgstr "Сортирање"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -396,8 +397,8 @@ msgstr "Димензије папира"
msgid "Edit PDF Pages"
msgstr "Уређивање PDF страна"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Табеле нису пронађене у бази."
@@ -448,13 +449,17 @@ msgstr "Последња провера"
msgid "%s table(s)"
msgstr "%s табела"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Ваш SQL упит је успешно извршен"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Морате изабрати бар једну колону за приказ"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -576,7 +581,7 @@ msgid "Browse"
msgstr "Преглед"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -674,7 +679,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s је подразумевани погон складиштења на овом MySQL серверу."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Означено:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Означи све"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr "Провери табеле које имају прекорачења"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -851,6 +856,33 @@ msgstr "Провери табелу"
msgid "Database Log"
msgstr "База података"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Одабрани тип извоза мора бити сачуван у датотеку!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Недовољно простора за снимање датотеке %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Датотека %s већ постоји на серверу, промените име датотеке или укључите "
+"опцију преписивања."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Веб серверу није дозвољено да сачува датотеку %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Садржај базе је сачуван у датотеку %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1045,20 +1077,20 @@ msgid "Choose field to display"
msgstr "Изабери поља за приказ"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Подаци"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Претходна"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1066,96 +1098,96 @@ msgid "Next"
msgstr "Следећи"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Укупно"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Бинарни"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "мар"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "апр"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "мај"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "јун"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "јул"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "авг"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "окт"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "јан"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "феб"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "мар"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "апр"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1163,176 +1195,176 @@ msgid "May"
msgstr "мај"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "јун"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "јул"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "авг"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "сеп"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "окт"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "нов"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "дец"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нед"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пон"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Уто"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пет"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Нед"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Пон"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Уто"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Сре"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Чет"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Пет"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Суб"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нед"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пон"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Уто"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Сре"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чет"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пет"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Суб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "се користи"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2040,6 +2072,7 @@ msgstr "Направи"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Нема привилегија"
@@ -2331,46 +2364,46 @@ msgstr "Изврши упамћен упит"
msgid "The row has been deleted"
msgstr "Ред је обрисан"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Обустави"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "у упиту"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Приказ записа"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "укупно"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Упит је трајао %01.4f секунди"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Промени"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Операције на резултатима упита"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Поглед за штампу (са пуним текстом)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Веза није пронађена"
@@ -2854,6 +2887,56 @@ msgstr "Структура"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Неисправни параметри за CSV увоз: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Поља раздвојена са"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Поља ограничена са"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Ескејп карактер "
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Линије се завршавају са"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Задата је неисправна колона (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Неисправан формат CSV улаза на линији %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Неисправан број поља у CSV улазу на линији %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Овај додатак не подржава компресоване увозе!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3334,12 +3417,12 @@ msgstr "Конекције"
msgid "Copy table to (database.table):"
msgstr "Копирај табелу у (база.табела):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Табела %s је копирана у %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Не могу да копирам табелу у саму себе!"
@@ -3609,11 +3692,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Одбаци базе које се зову исто као корисници."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Садржај базе је сачуван у датотеку %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "динамички"
@@ -3682,10 +3760,6 @@ msgstr "Excel издање"
msgid "Export/Import to scale"
msgstr "Извор/увоз у размери"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Одабрани тип извоза мора бити сачуван у датотеку!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Проширени INSERT"
@@ -3704,30 +3778,10 @@ msgstr "Неуспелих покушаја"
msgid "Field %s has been dropped"
msgstr "Поље %s је обрисано"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Поља ограничена са"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Ескејп карактер "
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Поља"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Поља раздвојена са"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Датотека %s већ постоји на серверу, промените име датотеке или укључите "
-"опцију преписивања."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Датотеке"
@@ -3829,10 +3883,6 @@ msgstr "Руковалац"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Морате изабрати бар једну колону за приказ"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Хебрејски"
@@ -4005,35 +4055,11 @@ msgstr "Унутрашње релације"
msgid "Column count has to be larger than zero."
msgstr "Број колона мора бити већи од нуле."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Задата је неисправна колона (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Неисправан број поља у CSV улазу на линији %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Неисправан формат CSV улаза на линији %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Неисправни параметри за CSV увоз: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Морате додати барем једно поље."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Овај додатак не подржава компресоване увозе!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4044,7 +4070,7 @@ msgstr "Неисправан индекс сервера: \"%s\""
msgid "Japanese"
msgstr "Јапански"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4126,10 +4152,6 @@ msgstr "Дужина/Вредност*"
msgid "Number of rows per page"
msgstr "Број редова по страни"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Линије се завршавају са"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Литвански"
@@ -4245,12 +4267,12 @@ msgstr "Премести мени"
msgid "Move table to (database.table):"
msgstr "Помери табелу у (база.табела):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Табела %s је померена у %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Не могу да преместим табелу у саму себе!"
@@ -4321,11 +4343,6 @@ msgstr "нема"
msgid "This format has no options"
msgstr "Не постоје опције за овај формат"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Веб серверу није дозвољено да сачува датотеку %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Није Вам дозвољено да будете овде!"
@@ -4334,11 +4351,6 @@ msgstr "Није Вам дозвољено да будете овде!"
msgid "No rows selected"
msgstr "Нема одабраних редова"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Недовољно простора за снимање датотеке %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4973,7 +4985,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5008,7 +5020,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6108,7 +6120,8 @@ msgstr "Табела %s већ постоји!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Изабрани корисници су успешно обрисани."
@@ -6123,7 +6136,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Има табеле је празно!"
@@ -6687,12 +6700,6 @@ msgstr ""
msgid "wildcard"
msgstr "џокер"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 5068a1377..9f4cba5cb 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal \n"
"Language-Team: serbian_latin \n"
@@ -338,7 +338,8 @@ msgstr "Omogućeno"
msgid "Collation"
msgstr "Sortiranje"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -396,8 +397,8 @@ msgstr "Dimenzije papira"
msgid "Edit PDF Pages"
msgstr "Uređivanje PDF strana"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Tabele nisu pronađene u bazi."
@@ -448,13 +449,17 @@ msgstr "Poslednja provera"
msgid "%s table(s)"
msgstr "%s tabela"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Vaš SQL upit je uspešno izvršen"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Morate izabrati bar jednu kolonu za prikaz"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -576,7 +581,7 @@ msgid "Browse"
msgstr "Pregled"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -674,7 +679,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s je podrazumevani pogon skladištenja na ovom MySQL serveru."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Označeno:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Označi sve"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr "Proveri tabele koje imaju prekoračenja"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Analiziraj tabelu"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -851,6 +856,33 @@ msgstr "Proveri tabelu"
msgid "Database Log"
msgstr "Baza podataka"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Odabrani tip izvoza mora biti sačuvan u datoteku!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Nedovoljno prostora za snimanje datoteke %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Datoteka %s već postoji na serveru, promenite ime datoteke ili uključite "
+"opciju prepisivanja."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Sadržaj baze je sačuvan u datoteku %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1045,20 +1077,20 @@ msgid "Choose field to display"
msgstr "Izaberi polja za prikaz"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Podaci"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prethodna"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1066,96 +1098,96 @@ msgid "Next"
msgstr "Sledeći"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Ukupno"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binarni"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "maj"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "avg"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1163,176 +1195,176 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "avg"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ned"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Pon"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Uto"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Pet"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ned"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Pon"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Uto"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Sre"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Čet"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Pet"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sub"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ned"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Pon"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Uto"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Sre"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Čet"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Pet"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sub"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "se koristi"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2040,6 +2072,7 @@ msgstr "Napravi"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Nema privilegija"
@@ -2331,46 +2364,46 @@ msgstr "Izvrši upamćen upit"
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Obustavi"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "u upitu"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Prikaz zapisa"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "ukupno"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Upit je trajao %01.4f sekundi"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Promeni"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operacije na rezultatima upita"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Pogled za štampu (sa punim tekstom)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Veza nije pronađena"
@@ -2854,6 +2887,56 @@ msgstr "Struktura"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Neispravni parametri za CSV uvoz: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Polja razdvojena sa"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Polja ograničena sa"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Escape karakter "
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Linije se završavaju sa"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Zadata je neispravna kolona (%s)!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Neispravan format CSV ulaza na liniji %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Neispravan broj polja u CSV ulazu na liniji %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Ovaj dodatak ne podržava kompresovane uvoze!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3334,12 +3417,12 @@ msgstr "Konekcije"
msgid "Copy table to (database.table):"
msgstr "Kopiraj tabelu u (baza.tabela):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabela %s je kopirana u %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Ne mogu da kopiram tabelu u samu sebe!"
@@ -3609,11 +3692,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Odbaci baze koje se zovu isto kao korisnici."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Sadržaj baze je sačuvan u datoteku %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamički"
@@ -3682,10 +3760,6 @@ msgstr "Excel izdanje"
msgid "Export/Import to scale"
msgstr "Izvor/uvoz u razmeri"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Odabrani tip izvoza mora biti sačuvan u datoteku!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Prošireni INSERT"
@@ -3704,30 +3778,10 @@ msgstr "Neuspelih pokušaja"
msgid "Field %s has been dropped"
msgstr "Polje %s je obrisano"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Polja ograničena sa"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Escape karakter "
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Polja"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Polja razdvojena sa"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Datoteka %s već postoji na serveru, promenite ime datoteke ili uključite "
-"opciju prepisivanja."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Datoteke"
@@ -3829,10 +3883,6 @@ msgstr "Rukovalac"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Morate izabrati bar jednu kolonu za prikaz"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebrejski"
@@ -4005,35 +4055,11 @@ msgstr "Unutrašnje relacije"
msgid "Column count has to be larger than zero."
msgstr "Broj kolona mora biti veći od nule."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Zadata je neispravna kolona (%s)!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Neispravan broj polja u CSV ulazu na liniji %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Neispravan format CSV ulaza na liniji %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Neispravni parametri za CSV uvoz: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Morate dodati barem jedno polje."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Ovaj dodatak ne podržava kompresovane uvoze!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4044,7 +4070,7 @@ msgstr "Neispravan indeks servera: \"%s\""
msgid "Japanese"
msgstr "Japanski"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4126,10 +4152,6 @@ msgstr "Dužina/Vrednost*"
msgid "Number of rows per page"
msgstr "Broj redova po strani"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Linije se završavaju sa"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litvanski"
@@ -4246,12 +4268,12 @@ msgstr "Premesti meni"
msgid "Move table to (database.table):"
msgstr "Pomeri tabelu u (baza.tabela):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabela %s je pomerena u %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Ne mogu da premestim tabelu u samu sebe!"
@@ -4322,11 +4344,6 @@ msgstr "nema"
msgid "This format has no options"
msgstr "Ne postoje opcije za ovaj format"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Veb serveru nije dozvoljeno da sačuva datoteku %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Nije Vam dozvoljeno da budete ovde!"
@@ -4335,11 +4352,6 @@ msgstr "Nije Vam dozvoljeno da budete ovde!"
msgid "No rows selected"
msgstr "Nema odabranih redova"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Nedovoljno prostora za snimanje datoteke %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4975,7 +4987,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5010,7 +5022,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6112,7 +6124,8 @@ msgstr "Tabela %s već postoji!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Izabrani korisnici su uspešno obrisani."
@@ -6127,7 +6140,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Ima tabele je prazno!"
@@ -6692,12 +6705,6 @@ msgstr ""
msgid "wildcard"
msgstr "džoker"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/sv.po b/po/sv.po
index 431977b5b..ef2824fda 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish \n"
@@ -334,7 +334,8 @@ msgstr "Aktivera"
msgid "Collation"
msgstr "Kollationering"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "Pappersstorlek"
msgid "Edit PDF Pages"
msgstr "Redigera PDF-sidor"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Inga tabeller funna i databasen."
@@ -444,13 +445,17 @@ msgstr "Senaste kontroll"
msgid "%s table(s)"
msgstr "%s tabell(er)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Din SQL-fråga utfördes korrekt"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Du måste välja minst en kolumn som ska visas"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -572,7 +577,7 @@ msgid "Browse"
msgstr "Visa"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -670,7 +675,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -701,20 +706,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s är standardlagringsmotorn på denna MySQL-server."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Med markerade:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Markera alla"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -726,7 +731,7 @@ msgid "Check tables having overhead"
msgstr "Markera ooptimerade"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -754,8 +759,8 @@ msgid "Analyze table"
msgstr "Analysera tabell"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -847,6 +852,33 @@ msgstr "Kontrollera tabell"
msgid "Database Log"
msgstr "Databas"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Vald export-typ måste sparas i fil!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Otillräckligt utrymme för att spara filen %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Filen %s finns redan på servern. Ändra filnamnet eller kryssa i skriv över-"
+"alternativet."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Webbservern har inte tillåtelse att spara filen %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "SQL-satserna har sparats till filen %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1041,21 +1073,21 @@ msgid "Choose field to display"
msgstr "Välj fält som ska visas"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Donera"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Föregående"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1063,96 +1095,96 @@ msgid "Next"
msgstr "Nästa"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Totalt"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binär"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "mars"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "april"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "maj"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "juni"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "juli"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "augusti"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "oktober"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "januari"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "februari"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "mars"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "april"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1160,178 +1192,178 @@ msgid "May"
msgstr "maj"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "juni"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "juli"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "augusti"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "september"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "oktober"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "november"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "december"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sön"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Mån"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Tis"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fre"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Sön"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Mån"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Tis"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Ons"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Tors"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Fre"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Lör"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sön"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Mån"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Tis"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Ons"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Tors"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fre"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Lör"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Wiki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "används"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2043,6 +2075,7 @@ msgstr "Skapa"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Inga privilegier"
@@ -2338,46 +2371,46 @@ msgstr "Utför bokmärkt fråga"
msgid "The row has been deleted"
msgstr "Raden har raderats"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Döda"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "i fråga"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Visar rader "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "totalt"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Frågan tog %01.4f sek"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Ändra"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Operationer för frågeresultat"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Utskriftsvänlig visning (med fullständiga texter)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Länk ej funnen"
@@ -2883,6 +2916,56 @@ msgstr "Struktur"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "Ogiltig parameter för CSV-import: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Fälten avslutas med"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Fälten omges av"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Specialtecken i fält föregås av"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Raderna avslutas med"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Ogiltig kolumn (%s) angiven!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Ogiltigt format i CSV-indata på rad %d."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "Ogiltigt antal fält i CSV-indata på rad %d."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Detta tillägg stöder inte komprimerade importer!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3366,12 +3449,12 @@ msgstr "Uppkopplingar"
msgid "Copy table to (database.table):"
msgstr "Kopiera tabellen till (databas.tabell):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Tabellen %s har kopierats till %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Kan inte kopiera tabell till samma namn!"
@@ -3643,11 +3726,6 @@ msgstr "Använd inte AUTO_INCREMENT för nollvärden"
msgid "Drop the databases that have the same names as the users."
msgstr "Ta bort databaserna med samma namn som användarna."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "SQL-satserna har sparats till filen %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dynamisk"
@@ -3716,10 +3794,6 @@ msgstr "Excel-version"
msgid "Export/Import to scale"
msgstr "Exportera/importera till skala"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Vald export-typ måste sparas i fil!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Utökade infogningar"
@@ -3738,30 +3812,10 @@ msgstr "Misslyckade försök"
msgid "Field %s has been dropped"
msgstr "Fältet %s har tagits bort"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Fälten omges av"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Specialtecken i fält föregås av"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Fält"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Fälten avslutas med"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Filen %s finns redan på servern. Ändra filnamnet eller kryssa i skriv över-"
-"alternativet."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Filer"
@@ -3863,10 +3917,6 @@ msgstr "Hanterare"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Du måste välja minst en kolumn som ska visas"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Hebreisk"
@@ -4043,35 +4093,11 @@ msgstr "Interna relationer"
msgid "Column count has to be larger than zero."
msgstr "Antalet kolumner måste vara större än noll."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Ogiltig kolumn (%s) angiven!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "Ogiltigt antal fält i CSV-indata på rad %d."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Ogiltigt format i CSV-indata på rad %d."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "Ogiltig parameter för CSV-import: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Du måste lägga till åtminstone ett fält."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Detta tillägg stöder inte komprimerade importer!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4082,7 +4108,7 @@ msgstr "Ogiltigt serverindex: \"%s\""
msgid "Japanese"
msgstr "Japansk"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4164,10 +4190,6 @@ msgstr "Längd/Värden*"
msgid "Number of rows per page"
msgstr "Rader per sida"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Raderna avslutas med"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litauisk"
@@ -4284,12 +4306,12 @@ msgstr "Flytta meny"
msgid "Move table to (database.table):"
msgstr "Flytta tabellen till (databas.tabell):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Tabellen %s har flyttats till %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Kan inte flytta tabell till samma namn!"
@@ -4359,11 +4381,6 @@ msgstr "Inga"
msgid "This format has no options"
msgstr "Detta format har inga alternativ"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Webbservern har inte tillåtelse att spara filen %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Du har inte tillräcklig behörighet för att vara här nu!"
@@ -4372,11 +4389,6 @@ msgstr "Du har inte tillräcklig behörighet för att vara här nu!"
msgid "No rows selected"
msgstr "Inga rader valda"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Otillräckligt utrymme för att spara filen %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5016,7 +5028,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -5052,7 +5064,7 @@ msgstr ""
msgid "Slave replication"
msgstr "Serverkonfiguration"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -6160,7 +6172,8 @@ msgstr "Tabell %s finns redan!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tabell %1$s har ändrats"
@@ -6175,7 +6188,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Tabellnamnet är tomt!"
@@ -6742,12 +6755,6 @@ msgstr "Wiki"
msgid "wildcard"
msgstr "jokertecken"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/ta.po b/po/ta.po
index 31da5c2af..f00a31301 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
@@ -330,7 +330,8 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -386,8 +387,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr ""
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr ""
@@ -438,13 +439,17 @@ msgstr ""
msgid "%s table(s)"
msgstr ""
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr ""
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr ""
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -566,7 +571,7 @@ msgid "Browse"
msgstr ""
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -664,7 +669,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -695,20 +700,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr ""
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr ""
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -720,7 +725,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -748,8 +753,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -833,6 +838,31 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1018,17 +1048,17 @@ msgid "Choose field to display"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1036,94 +1066,94 @@ msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr ""
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Jan"
msgid "January"
msgstr "தை"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "பங்குனி"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "சித்திரை"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "வைகாசி"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "ஆணி"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ஆடி"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ஆவணி"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ஐப்பசி"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "தை"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "மாசி"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "பங்குனி"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "சித்திரை"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1131,174 +1161,174 @@ msgid "May"
msgstr "வைகாசி"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "ஆணி"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "ஆடி"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "ஆவணி"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "புரட்டாதி"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "ஐப்பசி"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "காத்திகை"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "மார்கழி"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "ஞாயிறு"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "திங்கள்"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "செவ்வாய்"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "வெள்ளி"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "ஞாயிறு"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "திங்கள்"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "செவ்வாய்"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "புதன்"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "வியாழன்"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "வெள்ளி"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "சனி"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "ஞாயிறு"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "திங்கள்"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "செவ்வாய்"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "புதன்"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "வியாழன்"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "வெள்ளி"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "சனி"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr ""
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr ""
@@ -1973,6 +2003,7 @@ msgstr ""
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr ""
@@ -2248,46 +2279,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr ""
@@ -2746,6 +2777,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr ""
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr ""
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3216,12 +3297,12 @@ msgstr ""
msgid "Copy table to (database.table):"
msgstr ""
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr ""
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3477,11 +3558,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr ""
@@ -3550,10 +3626,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr ""
@@ -3572,28 +3644,10 @@ msgstr ""
msgid "Field %s has been dropped"
msgstr ""
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr ""
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr ""
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr ""
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr ""
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr ""
@@ -3689,10 +3743,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr ""
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr ""
@@ -3861,35 +3911,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3900,7 +3926,7 @@ msgstr ""
msgid "Japanese"
msgstr ""
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -3982,10 +4008,6 @@ msgstr ""
msgid "Number of rows per page"
msgstr ""
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr ""
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr ""
@@ -4088,12 +4110,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr ""
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr ""
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4161,11 +4183,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr ""
@@ -4174,11 +4191,6 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4793,7 +4805,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4828,7 +4840,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5794,7 +5806,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5809,7 +5822,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr ""
@@ -6327,12 +6340,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/te.po b/po/te.po
index 20bb98a23..59a6a5138 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-02 12:04+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
@@ -336,7 +336,8 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "కాగితపు పరిమాణం"
msgid "Edit PDF Pages"
msgstr ""
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr ""
@@ -445,13 +446,17 @@ msgstr ""
msgid "%s table(s)"
msgstr ""
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr ""
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr ""
+
# మొదటి అనువాదము
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
@@ -576,7 +581,7 @@ msgid "Browse"
msgstr ""
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -676,7 +681,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -709,20 +714,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr ""
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr ""
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -734,7 +739,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -762,8 +767,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -848,6 +853,31 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1034,13 +1064,13 @@ msgid "Choose field to display"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr ""
# మొదటి అనువాదము
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
@@ -1048,7 +1078,7 @@ msgstr "క్రితము"
# మొదటి అనువాదము
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1056,96 +1086,96 @@ msgid "Next"
msgstr "తదుపరి"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "మొత్తం"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Jan"
msgid "January"
msgstr "జన"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "మార్చి"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "ఏప్రి"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "మే"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "జూన్"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "జూలై"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ఆగ"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "అక్టో"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "జన"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "ఫిబ్ర"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "మార్చి"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "ఏప్రి"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1153,179 +1183,179 @@ msgid "May"
msgstr "మే"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "జూన్"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "జూలై"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "ఆగ"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "సెప్టె"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "అక్టో"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "నవం"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "డిసెం"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "ఆది"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "సోమ"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "మంగళ"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "శుక్ర"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "ఆది"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "సోమ"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "మంగళ"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "బుధ"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "గురు"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "శుక్ర"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "శని"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "ఆది"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "సోమ"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "మంగళ"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "బుధ"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "గురు"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "శుక్ర"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "శని"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "వికీ"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
# మొదటి అనువాదము
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "వాడుకలో ఉన్నది"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2004,6 +2034,7 @@ msgstr "సృష్టించు"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr ""
@@ -2280,47 +2311,47 @@ msgstr ""
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "మొత్తం"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
# మొదటి అనువాదము
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "మార్చుము"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr ""
@@ -2781,6 +2812,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr ""
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr ""
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3266,12 +3347,12 @@ msgstr "అనుసంధానాలు"
msgid "Copy table to (database.table):"
msgstr ""
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr ""
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3530,11 +3611,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr ""
@@ -3603,10 +3679,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr ""
@@ -3625,28 +3697,10 @@ msgstr ""
msgid "Field %s has been dropped"
msgstr ""
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr ""
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr ""
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr ""
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr ""
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "దస్త్రాలు"
@@ -3742,10 +3796,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr ""
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "హిబ్రూ"
@@ -3915,35 +3965,11 @@ msgstr "అంతర్గత సంబంధాలు"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3955,7 +3981,7 @@ msgstr ""
msgid "Japanese"
msgstr "జాపనీస్"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4037,10 +4063,6 @@ msgstr ""
msgid "Number of rows per page"
msgstr ""
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr ""
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "లిథుయేనియన్"
@@ -4143,12 +4165,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr ""
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr ""
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4217,11 +4239,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr ""
@@ -4230,11 +4247,6 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4851,7 +4863,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4886,7 +4898,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5864,7 +5876,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5879,7 +5892,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr ""
@@ -6401,12 +6414,6 @@ msgstr "వికీ"
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/th.po b/po/th.po
index ef3ff72d4..fd0eec89b 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai \n"
@@ -335,7 +335,8 @@ msgstr "เปิดใช้อยู่"
msgid "Collation"
msgstr "การเรียงลำดับ"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "ขนาดกระดาษ"
msgid "Edit PDF Pages"
msgstr "แก้ไขหน้า PDF"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล"
@@ -444,13 +445,17 @@ msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ
msgid "%s table(s)"
msgstr "%s ตาราง"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -572,7 +577,7 @@ msgid "Browse"
msgstr "เปิดดู"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -670,7 +675,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -702,20 +707,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "ทำกับที่เลือก:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "เลือกทั้งหมด"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -727,7 +732,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -755,8 +760,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -845,6 +850,31 @@ msgstr "ตรวจสอบตาราง"
msgid "Database Log"
msgstr "ฐานข้อมูล"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1032,21 +1062,21 @@ msgid "Choose field to display"
msgstr "เลือกฟิลด์ที่ต้องการแสดง"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "ไม่มี"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "ก่อนหน้า"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1054,96 +1084,96 @@ msgid "Next"
msgstr "ต่อไป"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "รวม"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " ข้อมูลไบนารี "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "มี.ค."
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "เม.ย."
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "พ.ค."
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "มิ.ย."
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "ก.ค."
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "ส.ค."
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "ต.ค."
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "ม.ค."
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "ก.พ."
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "มี.ค."
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "เม.ย."
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1151,176 +1181,176 @@ msgid "May"
msgstr "พ.ค."
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "มิ.ย."
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "ก.ค."
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "ส.ค."
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "ก.ย."
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "ต.ค."
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "พ.ย."
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "ธ.ค."
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "อา."
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "จ."
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "อ."
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "ศ."
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "อา."
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "จ."
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "อ."
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "พ."
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "พฤ."
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "ศ."
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "ส."
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "อา."
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "จ."
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "อ."
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "พ."
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "พฤ."
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "ศ."
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "ส."
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ใช้อยู่"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2008,6 +2038,7 @@ msgstr "สร้าง"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "ไม่มีสิทธิ"
@@ -2293,46 +2324,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr "ลบเรียบร้อยแล้ว"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "ฆ่าทิ้ง"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "ในคำค้น"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "แสดงระเบียนที่ "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "ทั้งหมด"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "คำค้นใช้เวลา %01.4f วินาที"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "เปลี่ยน"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "ไม่พบลิงก์"
@@ -2800,6 +2831,56 @@ msgstr "โครงสร้าง"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "จบฟิลด์ด้วย"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "คร่อมฟิลด์ด้วย"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "เครื่องหมายสำหรับ escape char"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "จบแถวด้วย"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3283,12 +3364,12 @@ msgstr "การเชื่อมต่อ"
msgid "Copy table to (database.table):"
msgstr "คัดลอกตารางไปยัง (ฐานข้อมูล.ตาราง):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "คัดลอกตาราง %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "คัดลอกตารางไปที่เดิมไม่ได้"
@@ -3551,11 +3632,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "โยนฐานข้อมูลที่มีชื่อเดียวกับผู้ใช้ทิ้ง."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "ไม่คงที่"
@@ -3625,10 +3701,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "แทรกหลายระเบียนในคราวเดียว"
@@ -3647,28 +3719,10 @@ msgstr "ความพยายามล้มเหลว"
msgid "Field %s has been dropped"
msgstr "โยนฟิลด์ %s ทิ้งไปเรียบร้อยแล้ว"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "คร่อมฟิลด์ด้วย"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "เครื่องหมายสำหรับ escape char"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "จำนวนฟิลด์"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "จบฟิลด์ด้วย"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3766,10 +3820,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "ต้องเลือกให้แสดงอย่างน้อยหนึ่งคอลัมน์"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "ฮิบรู"
@@ -3942,35 +3992,11 @@ msgstr "รีเลชันภายใน"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3981,7 +4007,7 @@ msgstr ""
msgid "Japanese"
msgstr "ญี่ปุ่น"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4063,10 +4089,6 @@ msgstr "ความยาว/เซต*"
msgid "Number of rows per page"
msgstr "ระเบียนต่อหน้า"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "จบแถวด้วย"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "ลิธัวเนีย"
@@ -4173,12 +4195,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "ย้ายตารางไป (database.table):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "ตาราง %s ถูกย้ายไป %s แล้ว"
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "ย้ายตารางไปที่เดิมไม่ได้"
@@ -4247,11 +4269,6 @@ msgstr "ไม่มี"
msgid "This format has no options"
msgstr "รูปแบบนี้ไม่มีตัวเลือก"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "คุณไม่มีสิทธิที่จะเข้ามาตรงนี้!"
@@ -4260,11 +4277,6 @@ msgstr "คุณไม่มีสิทธิที่จะเข้ามา
msgid "No rows selected"
msgstr "ยังไม่ได้เลือกแถว"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4895,7 +4907,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4930,7 +4942,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5916,7 +5928,8 @@ msgstr "มีผู้ใช้ %s อยู่แล้ว!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว."
@@ -5931,7 +5944,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "ชื่อตารางยังว่างอยู่!"
@@ -6460,12 +6473,6 @@ msgstr ""
msgid "wildcard"
msgstr "ไวล์การ์ด"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 62e469f76..bcf95104a 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-03 11:44+0200\n"
"Last-Translator: \n"
"Language-Team: turkish \n"
@@ -336,7 +336,8 @@ msgstr "Etkin"
msgid "Collation"
msgstr "Karşılaştırma"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -394,8 +395,8 @@ msgstr "Kağıt boyutu"
msgid "Edit PDF Pages"
msgstr " PDF Sayfalarını düzenle"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Veritabanında tablo bulunamadı."
@@ -446,13 +447,17 @@ msgstr "Son kontrol"
msgid "%s table(s)"
msgstr "%s tablo"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL sorgunuz başarılı olarak çalıştırıldı"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Görüntülemek için en az bir sütun seçmelisiniz"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -574,7 +579,7 @@ msgid "Browse"
msgstr "Gözat"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -672,7 +677,7 @@ msgstr "İzleme aktif."
msgid "Tracking is not active."
msgstr "İzleme aktif değil."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s bu MySQL sunucusundaki varsayılan depolama motorudur."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Seçilileri:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Tümünü Seç"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr "Ek yükü olan tabloları kontrol et"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Tabloyu incele"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -843,6 +848,33 @@ msgstr "Tabloyu izle"
msgid "Database Log"
msgstr "Veritabanı Günlüğü"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Seçili dışarı aktarma türü dosyaya kaydedilmelidir!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "%s dosyasını kaydetmek için yetersiz alan."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"%s dosyası zaten sunucuda var, dosya adını değiştirin veya üzerine yazma "
+"seçeneğini işaretleyin."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Web sunucusu %s dosyasını kaydetmek için izne sahip değil."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Döküm dosyası %s dosyasına kaydedildi"
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1041,21 +1073,21 @@ msgid "Choose field to display"
msgstr "Göstermek için alan seçin"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Bağış"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Önceki"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1063,96 +1095,96 @@ msgid "Next"
msgstr "İleri"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Toplam"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binari"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mart"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Nis"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "May"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Haz"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Tem"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Ağu"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Ekim"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Ocak"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Şubat"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mart"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Nis"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1160,178 +1192,178 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Haz"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Tem"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Ağu"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Eylül"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Ekim"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Kas"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Ara"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Paz"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Ptesi"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Salı"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cu"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Paz"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Ptesi"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Salı"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Çar"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Per"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Cu"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Ctesi"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Paz"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Ptesi"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Salı"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çar"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Per"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cu"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Ctesi"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Viki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "kullanımda"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2042,6 +2074,7 @@ msgstr "Oluştur"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Yetkiniz yok"
@@ -2339,46 +2372,46 @@ msgstr "İşaretlenmiş sorguyu çalıştır"
msgid "The row has been deleted"
msgstr "Satır silindi"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Sonlandır"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "sorgu içerisinde"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Satırlar gösteriliyor"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "toplam"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Sorgu %01.4f san. sürdü"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Değiştir"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Sorgu sonuçları işlemleri"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Baskı görünümü (tüm metinler ile)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Bağlantı bulunamadı"
@@ -2886,6 +2919,58 @@ msgstr "yapı"
msgid "Go to view"
msgstr "Görünüme git"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "CSV girişi için geçersiz parametre: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Alanları sonlandıran:"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Alanları kapsayan:"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Alanları dolduran:"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Satırı sonlandıran:"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Geçersiz sütun (%s) belirlenmiş!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "CSV girişinin %d. satırında geçersiz biçim."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "CSV girişinde %d. satırda geçersiz alan sayısı."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Bu eklenti sıkıştırılmış içeri aktarım dosyalarını desteklemez!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Belirlenmiş XML dosyası ya kusurlu ya da tamamlanmamış. Lütfen sorunu "
+"düzeltin ve tekrar deneyin."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3368,12 +3453,12 @@ msgstr "Bağlantılar"
msgid "Copy table to (database.table):"
msgstr "Tabloyu şuna (veritabanı.tablo) kopyala:"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "%s tablosu %s üzerine kopyalandı."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Tablo aynısına kopyalanamıyor!"
@@ -3640,11 +3725,6 @@ msgstr "Sıfır değerleri için AUTO_INCREMENT değeri kullanma"
msgid "Drop the databases that have the same names as the users."
msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Döküm dosyası %s dosyasına kaydedildi"
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "değişken"
@@ -3713,10 +3793,6 @@ msgstr "Excel yapısı"
msgid "Export/Import to scale"
msgstr "Ölçeklemek için İçeri/Dışarı Aktar"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Seçili dışarı aktarma türü dosyaya kaydedilmelidir!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Genişletilmiş eklemeler"
@@ -3735,30 +3811,10 @@ msgstr "Başarısız deneme"
msgid "Field %s has been dropped"
msgstr "%s alanı kaldırıldı"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Alanları kapsayan:"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Alanları dolduran:"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Alanlar"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Alanları sonlandıran:"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"%s dosyası zaten sunucuda var, dosya adını değiştirin veya üzerine yazma "
-"seçeneğini işaretleyin."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Dosyalar"
@@ -3859,10 +3915,6 @@ msgstr "Denetimci"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Seçili hedef tablolar kaynak tablolar ile eşitlendi."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Görüntülemek için en az bir sütun seçmelisiniz"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "İbranice"
@@ -4039,35 +4091,11 @@ msgstr "Dahili ilişkiler"
msgid "Column count has to be larger than zero."
msgstr "Sütun sayısı sıfırdan büyük olmalı."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Geçersiz sütun (%s) belirlenmiş!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "CSV girişinde %d. satırda geçersiz alan sayısı."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "CSV girişinin %d. satırında geçersiz biçim."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "CSV girişi için geçersiz parametre: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "En az bir alan eklemek zorundasınız."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Bu eklenti sıkıştırılmış içeri aktarım dosyalarını desteklemez!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4078,7 +4106,7 @@ msgstr "Geçersiz sunucu indeksi: \"%s\""
msgid "Japanese"
msgstr "Japonca"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4163,10 +4191,6 @@ msgstr "Uzunluk/Değerler"
msgid "Number of rows per page"
msgstr "Sayfa başına satır sayısı"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Satırı sonlandıran:"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litvanyaca"
@@ -4284,12 +4308,12 @@ msgstr "Menüyü taşı"
msgid "Move table to (database.table):"
msgstr "Tabloyu şuna (veritabanı.tablo) taşı:"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "%s tablosu %s üzerine taşındı."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Tablo aynısına taşınamıyor!"
@@ -4359,11 +4383,6 @@ msgstr "Hiçbiri"
msgid "This format has no options"
msgstr "Bu biçimin seçenekleri yok"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Web sunucusu %s dosyasını kaydetmek için izne sahip değil."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Burada bulunmak için yeterli izinlere sahip değilsiniz!"
@@ -4372,11 +4391,6 @@ msgstr "Burada bulunmak için yeterli izinlere sahip değilsiniz!"
msgid "No rows selected"
msgstr "Satır seçilmedi"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "%s dosyasını kaydetmek için yetersiz alan."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5031,7 +5045,7 @@ msgstr "Hata yönetimi:"
msgid "IO Thread %s only"
msgstr "Sadece G/Ç İşlemi %s"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "Slave G/Ç işlemi çalışmıyor!"
@@ -5068,7 +5082,7 @@ msgstr "İleri atla"
msgid "Slave replication"
msgstr "Slave kopya etme"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "Slave SQL işlemi çalışmıyor!"
@@ -6182,7 +6196,8 @@ msgstr "%s tablosu zaten var!"
msgid "Alter column(s)"
msgstr "Sekme(leri)yi değiştir"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Tablo %1$s başarılı olarak değiştirldi"
@@ -6197,7 +6212,7 @@ msgstr "İndeks(leri)i uygula"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Hedef tablolardan önceki tüm sıraları silme istiyor musunuz?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Tablo adı boş!"
@@ -6769,14 +6784,6 @@ msgstr "Viki"
msgid "wildcard"
msgstr "joker"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Belirlenmiş XML dosyası ya kusurlu ya da tamamlanmamış. Lütfen sorunu "
-"düzeltin ve tekrar deneyin."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "İçerikleri dışarı aktar"
diff --git a/po/tt.po b/po/tt.po
index bb4ffb237..f69a04437 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal \n"
"Language-Team: tatarish \n"
@@ -337,7 +337,8 @@ msgstr "Açıq"
msgid "Collation"
msgstr "Tezü cayı"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -395,8 +396,8 @@ msgstr "Qäğäz zuqlığı"
msgid "Edit PDF Pages"
msgstr "PDF-Bitlär Üzgärtü"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Bu biremlektä ber genä dä tüşämä yuq."
@@ -447,13 +448,17 @@ msgstr "Soñğı tikşerü"
msgid "%s table(s)"
msgstr "%s tüşämä"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL-sorawıñ uñışlı eşkärtelde"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "You have to choose at least one Column to display"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -575,7 +580,7 @@ msgid "Browse"
msgstr "Küzätü"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -673,7 +678,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -705,20 +710,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "Bu MySQL-serverdä %s digän saqlaw ısulı töp bularaq saylanğan."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Saylanğannı:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Saylap Beter"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -730,7 +735,7 @@ msgid "Check tables having overhead"
msgstr "Check overheaded"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -758,8 +763,8 @@ msgid "Analyze table"
msgstr "Tüşämä centekläw"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -851,6 +856,33 @@ msgstr "Tüşämä tikşerü"
msgid "Database Log"
msgstr "Biremlek"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "\"%s\" biremen saqlaw öçen buş ara citmi."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Serverdä %s digän birem bar inde, adın almaştırası, yä inde östän yazu "
+"tamğasın açası qala."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "The web server does not have permission to save the file %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Eçtälege \"%s\" biremenä saqlandı."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1038,20 +1070,20 @@ msgid "Choose field to display"
msgstr "Kürsätäse Alan saylaw"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
msgid "Done"
msgstr "Eçtälek"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Uzğan"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1059,96 +1091,96 @@ msgid "Next"
msgstr "Kiläse"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Tulayım"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Binar"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Äpr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "May"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Yün"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Yül"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Ökt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Ğın"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Äpr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1156,176 +1188,176 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Yün"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Yül"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Ökt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nöy"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Ykş"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dşm"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sşm"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Cmğ"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Ykş"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Dşm"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Sşm"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Çrş"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Pnc"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Cmğ"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Şmb"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Ykş"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dşm"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sşm"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Çrş"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pnc"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Cmğ"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Şmb"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "totıla"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2025,6 +2057,7 @@ msgstr "Yarat"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Xoquqsız"
@@ -2309,46 +2342,46 @@ msgstr "Tamğalanğan soraw cibärü"
msgid "The row has been deleted"
msgstr "Bu yazma salınğan buldı"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Üter"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "sorawda"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Yazma sanı:"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "tulayım"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Soraw eşkärtü %01.4f sek aldı"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Üzgärt"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Soraw qaytarmasın eşkärtü"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Bastıru küreneşe (bar mätennär belän)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Bäyläneş tabılmadı"
@@ -2832,6 +2865,56 @@ msgstr "Tözeleş"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "CSV yökläweneñ yaraqsız köyläneşe: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Alan arasında bilge"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Alan yaptıruçı bilge"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Alan uzdıru bilgese"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Yul ara bilgese"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3315,12 +3398,12 @@ msgstr "Totaşular"
msgid "Copy table to (database.table):"
msgstr "Boña kübäyt (biremlek.tüşämä):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Table %s has been copied to %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Can't copy table to same one!"
@@ -3588,11 +3671,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Eçtälege \"%s\" biremenä saqlandı."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "üzgärüçän"
@@ -3662,10 +3740,6 @@ msgstr "Excel söreme"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Kiñäytep östise"
@@ -3684,30 +3758,10 @@ msgstr "Failed attempts"
msgid "Field %s has been dropped"
msgstr "%s isemle alan beterelde"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Alan yaptıruçı bilge"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Alan uzdıru bilgese"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Alan"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Alan arasında bilge"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Serverdä %s digän birem bar inde, adın almaştırası, yä inde östän yazu "
-"tamğasın açası qala."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3810,10 +3864,6 @@ msgstr "Eşkärtkeç"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "You have to choose at least one Column to display"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Yähüdçä"
@@ -3986,35 +4036,11 @@ msgstr "Eçke bäyläneş"
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "CSV yökläweneñ yaraqsız köyläneşe: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Kimendä berär alan kertäse."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4025,7 +4051,7 @@ msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız"
msgid "Japanese"
msgstr "Japança"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4107,10 +4133,6 @@ msgstr "Ozınlıq/Bäyä*"
msgid "Number of rows per page"
msgstr "Bit sayın Kertem sanı"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Yul ara bilgese"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litçä"
@@ -4227,12 +4249,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Boña küçerü (biremlek.tüşämä):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "\"%s\" atlı tüşämä \"%s\" kebek ataldı."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Ber ük at belän tüşämä küçerep bulmí!"
@@ -4301,11 +4323,6 @@ msgstr "Buş"
msgid "This format has no options"
msgstr "Bu tözeleşeneñ köyläneşe yuq"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "The web server does not have permission to save the file %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Bonda bulu öçen, xoquqlarıñ citmi!"
@@ -4314,11 +4331,6 @@ msgstr "Bonda bulu öçen, xoquqlarıñ citmi!"
msgid "No rows selected"
msgstr "Kertemnär sayladı"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "\"%s\" biremen saqlaw öçen buş ara citmi."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4952,7 +4964,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4987,7 +4999,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5987,7 +5999,8 @@ msgstr "%s atlı tüşämä bar inde!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
@@ -6002,7 +6015,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Tüşämä adı kertelmi qaldı!"
@@ -6555,12 +6568,6 @@ msgstr ""
msgid "wildcard"
msgstr "almaşbilge"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
#, fuzzy
msgid "Export contents"
diff --git a/po/uk.po b/po/uk.po
index 6114ea387..245834513 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian \n"
@@ -331,7 +331,8 @@ msgstr ""
msgid "Collation"
msgstr "Порівняння"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -389,8 +390,8 @@ msgstr "Формат паперу"
msgid "Edit PDF Pages"
msgstr "Редагувати PDF Сторінки"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "В БД не виявлено таблиць."
@@ -441,13 +442,17 @@ msgstr "Перевірено"
msgid "%s table(s)"
msgstr "%s таблиц(і)"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "Ваш SQL-запит було успішно виконано"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Необхідно вибрати принаймі один Стовпчик для показу"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -569,7 +574,7 @@ msgid "Browse"
msgstr "Переглянути"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -667,7 +672,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -698,20 +703,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "З відміченими:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Відмітити все"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -723,7 +728,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -751,8 +756,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -836,6 +841,33 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "Бракує місця для збереження файлу %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"Файл %s існує на сервері, прошу змінити назву файлу, або відмітити опцію "
+"заміни існуючих файлів."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Веб-сервер не має привілеїв для збереження файлу %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Dump збережено у файл %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1021,21 +1053,21 @@ msgid "Choose field to display"
msgstr "Виберіть поля для відображення"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "Немає"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Назад"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1043,96 +1075,96 @@ msgid "Next"
msgstr "Дальше"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Разом"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr " Двійковий "
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Бер"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Квт"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Трв"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Чрв"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Лип"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Сер"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Жов"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Січ"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Лют"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Бер"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Квт"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1140,176 +1172,176 @@ msgid "May"
msgstr "Трв"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Чрв"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Лип"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Сер"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Вер"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Жов"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Лис"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Гру"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Нд"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Пн"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Вт"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Пт"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Нд"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Пн"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Вт"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Ср"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Чт"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Пт"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Сб"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Нд"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Пн"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Вт"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Ср"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Чт"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Пт"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Сб"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "використовується"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2000,6 +2032,7 @@ msgstr "Створити"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Без привілеїв"
@@ -2281,46 +2314,46 @@ msgstr "Виконати збережений запит"
msgid "The row has been deleted"
msgstr "Рядок видалено"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Вбити"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "по запиту"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Показано записи "
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "всього"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Запит виконувався %01.4f сек"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Змінити"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Лінк не знайдено"
@@ -2779,6 +2812,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Поля розділені"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Поля взято в"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Поля екрануються"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Рядки розділено"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3255,12 +3338,12 @@ msgstr "З'єднань"
msgid "Copy table to (database.table):"
msgstr "Скопіювати таблицю в (база даних.таблиця):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "Таблицю %s було скопійовано в %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Не можу скопіювати таблицю саму в себе!"
@@ -3522,11 +3605,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "Усунути бази даних, які мають такі ж назви як імена користувачів."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Dump збережено у файл %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "динамічний"
@@ -3595,10 +3673,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Розширена вставка"
@@ -3617,30 +3691,10 @@ msgstr "Невдалих спроб"
msgid "Field %s has been dropped"
msgstr "Поле %s було видалено"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Поля взято в"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Поля екрануються"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Поля"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Поля розділені"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"Файл %s існує на сервері, прошу змінити назву файлу, або відмітити опцію "
-"заміни існуючих файлів."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr ""
@@ -3740,10 +3794,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Необхідно вибрати принаймі один Стовпчик для показу"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Іврит"
@@ -3916,35 +3966,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3955,7 +3981,7 @@ msgstr ""
msgid "Japanese"
msgstr "Японське"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4037,10 +4063,6 @@ msgstr "Довжини/Значення*"
msgid "Number of rows per page"
msgstr "записів на сторінці"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Рядки розділено"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Литовське"
@@ -4150,12 +4172,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "Перенести таблицю в (база даних.таблиця):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "Таблицю %s було перенесено в %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Не можу перенести таблицю саму в себе!"
@@ -4223,11 +4245,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Цей формат не має опцій"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Веб-сервер не має привілеїв для збереження файлу %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Ви для цього маєте недостатньо прав!"
@@ -4236,11 +4253,6 @@ msgstr "Ви для цього маєте недостатньо прав!"
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "Бракує місця для збереження файлу %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4867,7 +4879,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4902,7 +4914,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5887,7 +5899,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5902,7 +5915,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Порожня назва таблиці!"
@@ -6445,12 +6458,6 @@ msgstr ""
msgid "wildcard"
msgstr "шаблон"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index eda5ba0aa..0cacaf3a6 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
"Last-Translator: Michal \n"
"Language-Team: Urdu \n"
@@ -330,7 +330,8 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -386,8 +387,8 @@ msgstr ""
msgid "Edit PDF Pages"
msgstr ""
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr ""
@@ -438,13 +439,17 @@ msgstr ""
msgid "%s table(s)"
msgstr ""
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr ""
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr ""
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -566,7 +571,7 @@ msgid "Browse"
msgstr ""
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -664,7 +669,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -695,20 +700,20 @@ 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:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr ""
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr ""
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -720,7 +725,7 @@ msgid "Check tables having overhead"
msgstr ""
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -748,8 +753,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -833,6 +838,31 @@ msgstr ""
msgid "Database Log"
msgstr ""
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr ""
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr ""
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr ""
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1018,17 +1048,17 @@ msgid "Choose field to display"
msgstr ""
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
msgid "Done"
msgstr ""
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
msgid "Prev"
msgstr ""
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1036,231 +1066,231 @@ msgid "Next"
msgstr ""
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
msgid "Today"
msgstr ""
-#: js/messages.php:81
+#: js/messages.php:82
msgid "January"
msgstr ""
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
msgid "March"
msgstr ""
-#: js/messages.php:84
+#: js/messages.php:85
msgid "April"
msgstr ""
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr ""
-#: js/messages.php:86
+#: js/messages.php:87
msgid "June"
msgstr ""
-#: js/messages.php:87
+#: js/messages.php:88
msgid "July"
msgstr ""
-#: js/messages.php:88
+#: js/messages.php:89
msgid "August"
msgstr ""
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
msgid "October"
msgstr ""
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
msgctxt "Short month name"
msgid "May"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr ""
-#: js/messages.php:121
+#: js/messages.php:122
msgid "Sunday"
msgstr ""
-#: js/messages.php:122
+#: js/messages.php:123
msgid "Monday"
msgstr ""
-#: js/messages.php:123
+#: js/messages.php:124
msgid "Tuesday"
msgstr ""
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
msgid "Friday"
msgstr ""
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
msgid "Su"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
msgid "Mo"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
msgid "Tu"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
msgid "We"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
msgid "Th"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
msgid "Fr"
msgstr ""
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
msgid "Sa"
msgstr ""
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
msgid "Minute"
msgstr ""
-#: js/messages.php:165
+#: js/messages.php:166
msgid "Second"
msgstr ""
@@ -1930,6 +1960,7 @@ msgstr ""
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr ""
@@ -2205,46 +2236,46 @@ msgstr ""
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr ""
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr ""
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr ""
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr ""
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr ""
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr ""
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr ""
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr ""
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr ""
@@ -2703,6 +2734,56 @@ msgstr ""
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr ""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr ""
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr ""
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr ""
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr ""
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr ""
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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"
@@ -3173,12 +3254,12 @@ msgstr ""
msgid "Copy table to (database.table):"
msgstr ""
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr ""
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr ""
@@ -3434,11 +3515,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr ""
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr ""
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr ""
@@ -3507,10 +3583,6 @@ msgstr ""
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr ""
@@ -3529,28 +3601,10 @@ msgstr ""
msgid "Field %s has been dropped"
msgstr ""
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr ""
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr ""
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr ""
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr ""
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr ""
@@ -3646,10 +3700,6 @@ msgstr ""
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr ""
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr ""
@@ -3818,35 +3868,11 @@ msgstr ""
msgid "Column count has to be larger than zero."
msgstr ""
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr ""
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr ""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr ""
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr ""
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3857,7 +3883,7 @@ msgstr ""
msgid "Japanese"
msgstr ""
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -3939,10 +3965,6 @@ msgstr ""
msgid "Number of rows per page"
msgstr ""
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr ""
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr ""
@@ -4045,12 +4067,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr ""
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr ""
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr ""
@@ -4118,11 +4140,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr ""
@@ -4131,11 +4148,6 @@ msgstr ""
msgid "No rows selected"
msgstr ""
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr ""
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4750,7 +4762,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4785,7 +4797,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5751,7 +5763,8 @@ msgstr ""
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -5766,7 +5779,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr ""
@@ -6284,12 +6297,6 @@ msgstr ""
msgid "wildcard"
msgstr ""
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index 9f09976a8..50d99c385 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic \n"
@@ -333,7 +333,8 @@ msgstr "Фаоллантириш"
msgid "Collation"
msgstr "Таққослаш"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -391,8 +392,8 @@ msgstr "Қоғоз ўлчами"
msgid "Edit PDF Pages"
msgstr "PDF-саҳифаларни таҳрирлаш"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас."
@@ -443,13 +444,17 @@ msgstr "Охирги текширув"
msgid "%s table(s)"
msgstr "Жадваллар сони: \"%s\""
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL сўрови муваффақиятли бажарилди"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак."
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -571,7 +576,7 @@ msgid "Browse"
msgstr "Кўриб чиқиш"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -669,7 +674,7 @@ msgstr "Кузатиш фаол."
msgid "Tracking is not active."
msgstr "Кузатиш фаол эмас."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -702,20 +707,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL серверидаги андозавий маълумотлар жадвали тури."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Белгиланганларни: "
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Барчасини белгилаш"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -727,7 +732,7 @@ msgid "Check tables having overhead"
msgstr "Оптималлаштириш лозим бўлгн жадвалларни белгилаш"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -755,8 +760,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -840,6 +845,33 @@ msgstr "Жадвални кузатиш"
msgid "Database Log"
msgstr "База лог файлини"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Белгиланган экспорт тури файлга сақланиши шарт!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас. "
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"\"%s\" файли серверда мавжуд, унинг номини ўзгартиринг ёки қайта ёзиш "
+"параметрини ёқинг."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳуқуқлар етарли эмас."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Дамп \"%s\" файлида сақланди."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1042,21 +1074,21 @@ msgid "Choose field to display"
msgstr "Кўрсатиладиган майдонни танлаш"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Садақа"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Орқага"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1064,96 +1096,96 @@ msgid "Next"
msgstr "Кейинги"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Жами"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Иккилик"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Мар"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Апр"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "Май"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Июн"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Июл"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Авг"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Окт"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Янв"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Фев"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Мар"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Апр"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1161,178 +1193,178 @@ msgid "May"
msgstr "Май"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Июн"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Июл"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Авг"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Сен"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Окт"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Ноя"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Дек"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Якш"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Душ"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Сеш"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Жум"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Якш"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Душ"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Сеш"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Чор"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Пай"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Жум"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Шан"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Якш"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Душ"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Сеш"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Чор"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Пай"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Жум"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Шан"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Вики"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ишлатилмоқда"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2055,6 +2087,7 @@ msgstr "Тузиш"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Привилегиялар йўқ"
@@ -2352,46 +2385,46 @@ msgstr "Белгиланган сўровни бажариш"
msgid "The row has been deleted"
msgstr "Ёзув ўчирилди"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Тугатиш"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "сўров бўйича"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Ёзувларни кўрсатиш"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "жами"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "Сўров %01.4f секунд вақт олди"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "Ўзгартириш"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "Сўров натижаларини ишлатиш"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Чоп этиш версияси (тўла)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Алоқа топилмади"
@@ -2899,6 +2932,60 @@ msgstr "тузилиш"
msgid "Go to view"
msgstr "Ушбу кўринишга ўтиш"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "CSV импортидаги парамерт нотўғри: \"%s\""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Майдонлар қуйидаги белги билан бўлинган "
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Майдон қийматлари қуйидаги белги ичига олинган "
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Белги олдида қуйидаги белги мавжуд "
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Қаторлар бўлувчиси"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Нотўғри устун (\"%s\") танланган!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+"Киритилаётган CSV маълумотларнинг %d қаторидаги маълумотлар формати нотўғри."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+"Киритилаётган CSV маълумотларнинг %d қаторидаги майдонлар сони нотўғри."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Кўрсатилган XML файл ё нотўғри тузилган ё чала. Уни тўғирлаб, қайта ҳаракат "
+"қилиб кўринг."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3380,12 +3467,12 @@ msgstr "Уланишлар"
msgid "Copy table to (database.table):"
msgstr "Жадвалдан (маълумотлар омбори.жадвал) га нусха кўчириш:"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "\"%s\" жадвалидан \"%s\" га нусха кўчирилди."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Жадвалнинг ўзидан ўзига нусха кўчириш мумкин эмас!"
@@ -3654,11 +3741,6 @@ msgstr "Ноль қийматлари учун \"AUTO_INCREMENT\" ишлатма
msgid "Drop the databases that have the same names as the users."
msgstr "Фойдаланувчилар номлари билан аталган маълумотлар базаларини ўчириш."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Дамп \"%s\" файлида сақланди."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "динамик"
@@ -3727,10 +3809,6 @@ msgstr "Excel-версияси"
msgid "Export/Import to scale"
msgstr "Масштаб"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Белгиланган экспорт тури файлга сақланиши шарт!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Кенгайтирилган қўйилмалар"
@@ -3749,30 +3827,10 @@ msgstr "Муваффақиятсиз уринишлар сони: "
msgid "Field %s has been dropped"
msgstr "\"%s\" майдони ўчирилди"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Майдон қийматлари қуйидаги белги ичига олинган "
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Белги олдида қуйидаги белги мавжуд "
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Майдонлар"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Майдонлар қуйидаги белги билан бўлинган "
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"\"%s\" файли серверда мавжуд, унинг номини ўзгартиринг ёки қайта ёзиш "
-"параметрини ёқинг."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Файллар сони "
@@ -3874,10 +3932,6 @@ msgstr "Қайта ишловчи дастур"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Танланган жадваллар манба жадваллар билан синхронизация қилинди."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "Сўровни бажариш учун, майдон/майдонлар танланган бўлиши керак."
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Яҳудийча"
@@ -4055,37 +4109,11 @@ msgstr "Ички алоқалар"
msgid "Column count has to be larger than zero."
msgstr "Устунлар сони нолдан кўп бўлиши шарт."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Нотўғри устун (\"%s\") танланган!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-"Киритилаётган CSV маълумотларнинг %d қаторидаги майдонлар сони нотўғри."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-"Киритилаётган CSV маълумотларнинг %d қаторидаги маълумотлар формати нотўғри."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "CSV импортидаги парамерт нотўғри: \"%s\""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Ҳеч бўлмаганда битта майдон киритиш шарт."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4096,7 +4124,7 @@ msgstr "Сервер рақами нотўғри: \"%s\""
msgid "Japanese"
msgstr "Японча"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4181,10 +4209,6 @@ msgstr "Узунлик/қийматлар"
msgid "Number of rows per page"
msgstr "Саҳифадаги қаторлар сони "
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Қаторлар бўлувчиси"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Литвача"
@@ -4303,12 +4327,12 @@ msgstr "Менюни кўчириш"
msgid "Move table to (database.table):"
msgstr "Жадвални (маълумотлар базаси.жадвал) га кўчириш:"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr " \"%s\" жадвали \"%s\" га кўчирилди."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Жадвални ўз-ўзига кўчириб бўлмайди!"
@@ -4378,11 +4402,6 @@ msgstr "Йўқ"
msgid "This format has no options"
msgstr "Ушбу формат учун созланадиган параметр мавжуд эмас"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "\"%s\" файлини веб-серверга сақлаш учун ҳуқуқлар етарли эмас."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳуқуқ мавжуд эмас!"
@@ -4391,11 +4410,6 @@ msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳ
msgid "No rows selected"
msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак. "
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "\"%s\" файлини сақлаш учун дискда етарли жой мавжуд эмас. "
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5055,7 +5069,7 @@ msgstr "Хатоликларни бошқариш:"
msgid "IO Thread %s only"
msgstr "Фақат %s қириш/чиқиш оқимини"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "Тобе кириш/чиқиш оқими ишламаяпти!"
@@ -5092,7 +5106,7 @@ msgstr "Кейингисини ташлаб кетиш"
msgid "Slave replication"
msgstr "Тобе сервер репликацияси"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "Тобе SQL Оқими ишламаяпти!"
@@ -6222,7 +6236,8 @@ msgstr "\"%s\" номли жадвал мавжуд!"
msgid "Alter column(s)"
msgstr "Устун(лар)ни ўзгартириш"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "%1$s жадвали муваффақиятли ўзгартирилди"
@@ -6237,7 +6252,7 @@ msgstr "Индекс(лар)ни сақлаш"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Нишон жадвалдаги барча олдинги қаторларни ўчирмоқчимисиз?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Жадвал номи кўрсатилмаган!"
@@ -6809,14 +6824,6 @@ msgstr "Вики"
msgid "wildcard"
msgstr "Гуруҳлаш белгиси"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Кўрсатилган XML файл ё нотўғри тузилган ё чала. Уни тўғирлаб, қайта ҳаракат "
-"қилиб кўринг."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Таркибини экспорт қилиш"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index 02252e88f..b3926c468 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin \n"
@@ -334,7 +334,8 @@ msgstr "Faollantirish"
msgid "Collation"
msgstr "Taqqoslash"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -392,8 +393,8 @@ msgstr "Qog‘oz o‘lchami"
msgid "Edit PDF Pages"
msgstr "PDF-sahifalarni tahrirlash"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas."
@@ -444,13 +445,17 @@ msgstr "Oxirgi tekshiruv"
msgid "%s table(s)"
msgstr "Jadvallar soni: \"%s\""
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "SQL so‘rovi muvaffaqiyatli bajarildi"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "So‘rovni bajarish uchun, maydon/maydonlar tanlangan bo‘lishi kerak."
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -572,7 +577,7 @@ msgid "Browse"
msgstr "Ko‘rib chiqish"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -671,7 +676,7 @@ msgstr "Kuzatish faol."
msgid "Tracking is not active."
msgstr "Kuzatish faol emas."
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -704,20 +709,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "\"%s\" - MySQL serveridagi andozaviy ma`lumotlar jadvali turi."
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "Belgilanganlarni: "
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "Barchasini belgilash"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -729,7 +734,7 @@ msgid "Check tables having overhead"
msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -757,8 +762,8 @@ msgid "Analyze table"
msgstr "Jadval tahlili"
#: db_structure.php:557 db_structure.php:558 libraries/db_links.inc.php:71
-#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -842,6 +847,33 @@ msgstr "Jadvalni kuzatish"
msgid "Database Log"
msgstr "Baza log faylini"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "Belgilangan eksport turi faylga saqlanishi shart!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "\"%s\" faylini saqlash uchun diskda yetarli joy mavjud emas. "
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr ""
+"\"%s\" fayli serverda mavjud, uning nomini o‘zgartiring yoki qayta yozish "
+"parametrini yoqing."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "\"%s\" faylini veb-serverga saqlash uchun huquqlar yetarli emas."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "Damp \"%s\" faylida saqlandi."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1047,21 +1079,21 @@ msgid "Choose field to display"
msgstr "Ko‘rsatiladigan maydonni tanlash"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "Sadaqa"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Orqaga"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1069,96 +1101,96 @@ msgid "Next"
msgstr "Keyingi"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "Jami"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "Ikkilik"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "May"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Iyun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Iyul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Avg"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Okt"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Yanv"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Fev"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1166,178 +1198,178 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Iyun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Iyul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Avg"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sen"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Okt"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Noya"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dek"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Yaksh"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Dush"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Sesh"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Jum"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Yaksh"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Dush"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Sesh"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Chor"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Pay"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Jum"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Shan"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Yaksh"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Dush"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Sesh"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Chor"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Pay"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Jum"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Shan"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "Viki"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "ishlatilmoqda"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2062,6 +2094,7 @@ msgstr "Tuzish"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "Privilegiyalar yo‘q"
@@ -2362,46 +2395,46 @@ msgstr "Belgilangan so‘rovni bajarish"
msgid "The row has been deleted"
msgstr "Yozuv o‘chirildi"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Tugatish"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "so‘rov bo‘yicha"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "Yozuvlarni ko‘rsatish"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "jami"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "So‘rov %01.4f sekund vaqt oldi"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "O‘zgartirish"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "So‘rov natijalarini ishlatish"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "Chop etish versiyasi (to‘la)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "Aloqa topilmadi"
@@ -2912,6 +2945,61 @@ msgstr "tuzilish"
msgid "Go to view"
msgstr "Ushbu ko‘rinishga o‘tish"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "CSV importidagi paramert noto‘g‘ri: \"%s\""
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "Maydonlar quyidagi belgi bilan bo‘lingan "
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan "
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "Belgi oldida quyidagi belgi mavjud "
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "Qatorlar bo‘luvchisi"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "Noto‘g‘ri ustun (\"%s\") tanlangan!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr ""
+"Kiritilayotgan CSV ma`lumotlarning %d qatoridagi ma`lumotlar formati "
+"noto‘g‘ri."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr ""
+"Kiritilayotgan CSV ma`lumotlarning %d qatoridagi maydonlar soni noto‘g‘ri."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr ""
+"Ko‘rsatilgan XML fayl yo noto‘g‘ri tuzilgan yo chala. Uni to‘g‘irlab, qayta "
+"harakat qilib ko‘ring."
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3395,12 +3483,12 @@ msgstr "Ulanishlar"
msgid "Copy table to (database.table):"
msgstr "Jadvaldan (ma`lumotlar ombori.jadval) ga nusxa ko‘chirish:"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "\"%s\" jadvalidan \"%s\" ga nusxa ko‘chirildi."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "Jadvalning o‘zidan o‘ziga nusxa ko‘chirish mumkin emas!"
@@ -3672,11 +3760,6 @@ msgid "Drop the databases that have the same names as the users."
msgstr ""
"Foydalanuvchilar nomlari bilan atalgan ma`lumotlar bazalarini o‘chirish."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "Damp \"%s\" faylida saqlandi."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "dinamik"
@@ -3745,10 +3828,6 @@ msgstr "Excel-versiyasi"
msgid "Export/Import to scale"
msgstr "Masshtab"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "Belgilangan eksport turi faylga saqlanishi shart!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "Kengaytirilgan qo‘yilmalar"
@@ -3767,30 +3846,10 @@ msgstr "Muvaffaqiyatsiz urinishlar soni: "
msgid "Field %s has been dropped"
msgstr "\"%s\" maydoni o‘chirildi"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "Maydon qiymatlari quyidagi belgi ichiga olingan "
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "Belgi oldida quyidagi belgi mavjud "
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "Maydonlar"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "Maydonlar quyidagi belgi bilan bo‘lingan "
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr ""
-"\"%s\" fayli serverda mavjud, uning nomini o‘zgartiring yoki qayta yozish "
-"parametrini yoqing."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "Fayllar soni "
@@ -3892,10 +3951,6 @@ msgstr "Qayta ishlovchi dastur"
msgid "Selected target tables have been synchronized with source tables."
msgstr "Tanlangan jadvallar manba jadvallar bilan sinxronizatsiya qilindi."
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "So‘rovni bajarish uchun, maydon/maydonlar tanlangan bo‘lishi kerak."
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "Yahudiycha"
@@ -4074,38 +4129,11 @@ msgstr "Ichki aloqalar"
msgid "Column count has to be larger than zero."
msgstr "Ustunlar soni noldan ko‘p bo‘lishi shart."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "Noto‘g‘ri ustun (\"%s\") tanlangan!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr ""
-"Kiritilayotgan CSV ma`lumotlarning %d qatoridagi maydonlar soni noto‘g‘ri."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr ""
-"Kiritilayotgan CSV ma`lumotlarning %d qatoridagi ma`lumotlar formati "
-"noto‘g‘ri."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "CSV importidagi paramert noto‘g‘ri: \"%s\""
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "Hech bo‘lmaganda bitta maydon kiritish shart."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -4116,7 +4144,7 @@ msgstr "Server raqami noto‘g‘ri: \"%s\""
msgid "Japanese"
msgstr "Yaponcha"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4201,10 +4229,6 @@ msgstr "Uzunlik/qiymatlar"
msgid "Number of rows per page"
msgstr "Sahifadagi qatorlar soni "
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "Qatorlar bo‘luvchisi"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "Litvacha"
@@ -4324,12 +4348,12 @@ msgstr "Menyuni ko‘chirish"
msgid "Move table to (database.table):"
msgstr "Jadvalni (ma`lumotlar bazasi.jadval) ga ko‘chirish:"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr " \"%s\" jadvali \"%s\" ga ko‘chirildi."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "Jadvalni o‘z-o‘ziga ko‘chirib bo‘lmaydi!"
@@ -4399,11 +4423,6 @@ msgstr "Yo‘q"
msgid "This format has no options"
msgstr "Ushbu format uchun sozlanadigan parametr mavjud emas"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "\"%s\" faylini veb-serverga saqlash uchun huquqlar yetarli emas."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!"
@@ -4413,11 +4432,6 @@ msgid "No rows selected"
msgstr ""
"Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak. "
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "\"%s\" faylini saqlash uchun diskda yetarli joy mavjud emas. "
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -5086,7 +5100,7 @@ msgstr "Xatoliklarni boshqarish:"
msgid "IO Thread %s only"
msgstr "Faqat %s qirish/chiqish oqimini"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "Tobе kirish/chiqish oqimi ishlamayapti!"
@@ -5123,7 +5137,7 @@ msgstr "Kеyingisini tashlab kеtish"
msgid "Slave replication"
msgstr "Tobе sеrvеr rеplikatsiyasi"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "Tobе SQL Oqimi ishlamayapti!"
@@ -6263,7 +6277,8 @@ msgstr "\"%s\" nomli jadval mavjud!"
msgid "Alter column(s)"
msgstr "Ustun(lar)ni o‘zgartirish"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi"
@@ -6278,7 +6293,7 @@ msgstr "Indеks(lar)ni saqlash"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "Nishon jadvaldagi barcha oldingi qatorlarni o‘chirmoqchimisiz?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "Jadval nomi ko‘rsatilmagan!"
@@ -6857,14 +6872,6 @@ msgstr "Viki"
msgid "wildcard"
msgstr "Guruhlash belgisi"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-"Ko‘rsatilgan XML fayl yo noto‘g‘ri tuzilgan yo chala. Uni to‘g‘irlab, qayta "
-"harakat qilib ko‘ring."
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "Tarkibini eksport qilish"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 95c89e38d..7009f1d98 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-04-08 13:06+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
@@ -335,7 +335,8 @@ msgstr "启用"
msgid "Collation"
msgstr "整理"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -391,8 +392,8 @@ msgstr "纸张大小"
msgid "Edit PDF Pages"
msgstr "编辑 PDF 页"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "数据库中没有表。"
@@ -443,13 +444,17 @@ msgstr "最后检查"
msgid "%s table(s)"
msgstr "%s 张表"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "您的 SQL 语句已成功运行"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "您最少要选择显示一列"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -571,7 +576,7 @@ msgid "Browse"
msgstr "浏览"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -669,7 +674,7 @@ msgstr "追踪已启用。"
msgid "Tracking is not active."
msgstr "追踪已禁用。"
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -700,20 +705,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "%s 是此 MySQL 服务器的默认存储引擎。"
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "选中项:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "全选"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -725,7 +730,7 @@ msgid "Check tables having overhead"
msgstr "仅选择多余"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -753,8 +758,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -838,6 +843,31 @@ msgstr "追踪表"
msgid "Database Log"
msgstr "数据库日志"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr "选择导出文件的类型!"
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "没有足够的空间保存文件 %s。"
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr "服务器上已存在文件 %s,请修改文件名或选中覆盖选项。"
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "网站服务器没有保存文件 %s 的权限。"
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "转存已经保存到文件 %s 中。"
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1026,21 +1056,21 @@ msgid "Choose field to display"
msgstr "选择要显示的字段"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "Donate"
msgid "Done"
msgstr "捐助 (外链,英文)"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "上一个"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1048,96 +1078,96 @@ msgid "Next"
msgstr "下一个"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "总计"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "二进制"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "三月"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "四月"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "五月"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "六月"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "七月"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "八月"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "十月"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "一月"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "二月"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "三月"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "四月"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1145,178 +1175,178 @@ msgid "May"
msgstr "五月"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "六月"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "七月"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "八月"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "九月"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "十月"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "十一月"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "十二月"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "周日"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "周一"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "周二"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "周五"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "周日"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "周一"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "周二"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "周三"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "周四"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "周五"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "周六"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "周日"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "周一"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "周二"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "周三"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "周四"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "周五"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "周六"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
#, fuzzy
#| msgid "Wiki"
msgid "Wk"
msgstr "维基 (Wiki) (外链,英文)"
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "使用中"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2005,6 +2035,7 @@ msgstr "创建"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "无权限"
@@ -2292,46 +2323,46 @@ msgstr "执行书签中的查询"
msgid "The row has been deleted"
msgstr "已删除该行"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "杀死"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "查询中"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "显示行"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "总计"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "查询花费 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "修改"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "查询结果选项"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "打印预览 (全文显示)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "找不到链接"
@@ -2809,6 +2840,56 @@ msgstr "结构"
msgid "Go to view"
msgstr "转到视图"
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "导入 CSV 文件 %s 时有无效参数"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "字段分隔符"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "文字分隔符"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "字段转义符"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "换行符"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "无效的字段 (%s) 。"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "CSV 输入的第 %d 行格式有错。"
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "CSV 输入的第 %d 行字段数有错。"
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "该插件不支持导入文件!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+msgid ""
+"The XML file specified was either malformed or incomplete. Please correct "
+"the issue and try again."
+msgstr "该 XML 文件有错误或者不完整。请修复错误后重试。"
+
#. l10n: This is currently used only in Japanese locales
#: libraries/kanji-encoding.lib.php:143
#, fuzzy
@@ -3285,12 +3366,12 @@ msgstr "连接"
msgid "Copy table to (database.table):"
msgstr "将数据表复制到(数据库名.数据表名):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "已将数据表 %s 复制为 %s。"
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "目标数据表不能为源数据表!"
@@ -3549,11 +3630,6 @@ msgstr "不要给零值使用自增 (AUTO_INCREMENT)"
msgid "Drop the databases that have the same names as the users."
msgstr "删除与用户同名的数据库。"
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "转存已经保存到文件 %s 中。"
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "动态"
@@ -3622,10 +3698,6 @@ msgstr "Excel 版本"
msgid "Export/Import to scale"
msgstr "按比例导出/导入"
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr "选择导出文件的类型!"
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "扩展插入"
@@ -3644,28 +3716,10 @@ msgstr "已失败"
msgid "Field %s has been dropped"
msgstr "已删除字段 %s "
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "文字分隔符"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "字段转义符"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "字段数"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "字段分隔符"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr "服务器上已存在文件 %s,请修改文件名或选中覆盖选项。"
-
#: libraries/messages.inc.php:340 server_binlog.php:136
msgid "Files"
msgstr "文件"
@@ -3764,10 +3818,6 @@ msgstr "句柄"
msgid "Selected target tables have been synchronized with source tables."
msgstr "选中的数据表已根据源数据表同步。"
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "您最少要选择显示一列"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "希伯来语"
@@ -3939,35 +3989,11 @@ msgstr "内联"
msgid "Column count has to be larger than zero."
msgstr "至少要有一个字段。"
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "无效的字段 (%s) 。"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "CSV 输入的第 %d 行字段数有错。"
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "CSV 输入的第 %d 行格式有错。"
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "导入 CSV 文件 %s 时有无效参数"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "至少要添加一个字段。"
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "该插件不支持导入文件!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3978,7 +4004,7 @@ msgstr "无效的服务器索引:“%s”"
msgid "Japanese"
msgstr "日语"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4062,10 +4088,6 @@ msgstr "长度/值"
msgid "Number of rows per page"
msgstr "每页行数"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "换行符"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "立陶宛语"
@@ -4174,12 +4196,12 @@ msgstr "移动菜单"
msgid "Move table to (database.table):"
msgstr "将数据表移动到(数据库名.数据表名):"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "已将数据表 %s 移动到 %s。"
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "目标数据表不能为源数据表!"
@@ -4249,11 +4271,6 @@ msgstr "无"
msgid "This format has no options"
msgstr "此格式没有选项"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "网站服务器没有保存文件 %s 的权限。"
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "权限不足!"
@@ -4262,11 +4279,6 @@ msgstr "权限不足!"
msgid "No rows selected"
msgstr "没有选中任何行"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "没有足够的空间保存文件 %s。"
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4891,7 +4903,7 @@ msgstr "错误管理:"
msgid "IO Thread %s only"
msgstr "仅%s IO 线程"
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr "从 IO 线程未启动!"
@@ -4928,7 +4940,7 @@ msgstr "忽略下"
msgid "Slave replication"
msgstr "从复制"
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr "从 SQL 线程未启动!"
@@ -5973,7 +5985,8 @@ msgstr "数据表 %s 已存在!"
msgid "Alter column(s)"
msgstr "修改字段"
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, php-format
msgid "Table %1$s has been altered successfully"
msgstr "已成功修改表 %1$s "
@@ -5988,7 +6001,7 @@ msgstr "增加索引"
msgid "Would you like to delete all the previous rows from target tables?"
msgstr "你希望删除当前目标表中的所有数据吗?"
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "表名不能为空!"
@@ -6530,12 +6543,6 @@ msgstr "维基 (Wiki) (外链,英文)"
msgid "wildcard"
msgstr "通配符"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr "该 XML 文件有错误或者不完整。请修复错误后重试。"
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr "导出内容"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index acb66de58..cf0697a57 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-10 14:17+0200\n"
+"POT-Creation-Date: 2010-05-11 13:05-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional \n"
@@ -334,7 +334,8 @@ msgstr "啟動"
msgid "Collation"
msgstr "校對"
-#: db_operations.php:609 libraries/messages.inc.php:750 pdf_schema.php:34
+#: db_operations.php:609 libraries/messages.inc.php:750 main.php:316
+#: pdf_schema.php:34
#, php-format
msgid ""
"The additional features for working with linked tables have been "
@@ -390,8 +391,8 @@ msgstr "紙張大小"
msgid "Edit PDF Pages"
msgstr "編輯 PDF 頁碼"
-#: db_printview.php:96 db_structure.php:51 db_tracking.php:35
-#: libraries/messages.inc.php:576 navigation.php:346
+#: db_printview.php:96 db_qbe.php:102 db_structure.php:51 db_tracking.php:35
+#: export.php:359 libraries/messages.inc.php:576 navigation.php:346
msgid "No tables found in database."
msgstr "資料庫中沒有資料表"
@@ -442,13 +443,17 @@ msgstr "最後檢查"
msgid "%s table(s)"
msgstr "%s 資料表"
-#: db_qbe.php:29 libraries/display_tbl.lib.php:1976
+#: db_qbe.php:29 libraries/display_tbl.lib.php:1981
#: libraries/messages.inc.php:1059 libraries/sql_query_form.lib.php:140
#: tbl_operations.php:213 tbl_relation.php:292 tbl_row_action.php:131
#: view_operations.php:62
msgid "Your SQL query has been executed successfully"
msgstr "您的SQL語法已順利執行"
+#: db_qbe.php:42 libraries/messages.inc.php:379
+msgid "You have to choose at least one column to display"
+msgstr "您需要選擇最少顯示一行欄位"
+
#: db_qbe.php:200 libraries/db_structure.lib.php:104
#: libraries/display_tbl.lib.php:866 libraries/messages.inc.php:1022
msgid "Sort"
@@ -570,7 +575,7 @@ msgid "Browse"
msgstr "瀏覽"
#: db_search.php:272 libraries/display_tbl.lib.php:1165
-#: libraries/display_tbl.lib.php:2051 libraries/messages.inc.php:251
+#: libraries/display_tbl.lib.php:2056 libraries/messages.inc.php:251
#: libraries/sql_query_form.lib.php:470 pdf_pages.php:281 pdf_pages.php:406
#: pdf_pages.php:442 pdf_pages.php:470 pmd_general.php:377
#: setup/frames/index.inc.php:125 setup/frames/index.inc.php:216
@@ -668,7 +673,7 @@ msgstr ""
msgid "Tracking is not active."
msgstr ""
-#: db_structure.php:420 libraries/display_tbl.lib.php:1939
+#: db_structure.php:420 libraries/display_tbl.lib.php:1944
#: libraries/messages.inc.php:1236
#, php-format
msgid ""
@@ -699,20 +704,20 @@ msgid "%s is the default storage engine on this MySQL server."
msgstr "這 MySQL 伺服器的預設儲存引擎是 %s "
#: db_structure.php:524 db_structure.php:541 db_structure.php:542
-#: libraries/display_tbl.lib.php:2076 libraries/display_tbl.lib.php:2081
+#: libraries/display_tbl.lib.php:2081 libraries/display_tbl.lib.php:2086
#: libraries/messages.inc.php:1251 libraries/mult_submits.inc.php:16
#: server_databases.php:346 server_databases.php:351
#: server_privileges.php:1557 tbl_structure.php:456 tbl_structure.php:465
msgid "With selected:"
msgstr "選擇的資料表:"
-#: db_structure.php:527 libraries/display_tbl.lib.php:2071
+#: db_structure.php:527 libraries/display_tbl.lib.php:2076
#: libraries/messages.inc.php:156 server_databases.php:348
#: server_privileges.php:530 server_privileges.php:1560 tbl_structure.php:459
msgid "Check All"
msgstr "全選"
-#: db_structure.php:531 libraries/display_tbl.lib.php:2072
+#: db_structure.php:531 libraries/display_tbl.lib.php:2077
#: libraries/messages.inc.php:1192 libraries/replication_gui.lib.php:33
#: server_databases.php:350 server_privileges.php:533
#: server_privileges.php:1564 tbl_structure.php:463
@@ -724,7 +729,7 @@ msgid "Check tables having overhead"
msgstr "檢查額外記錄 (overhead)"
#: db_structure.php:547 db_structure.php:548 db_structure.php:599
-#: libraries/display_tbl.lib.php:2175 libraries/messages.inc.php:680
+#: libraries/display_tbl.lib.php:2180 libraries/messages.inc.php:680
#: libraries/mult_submits.inc.php:28 tbl_structure.php:493
#: tbl_structure.php:495
msgid "Print view"
@@ -752,8 +757,8 @@ 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:2089
-#: libraries/display_tbl.lib.php:2220 libraries/messages.inc.php:318
+#: libraries/display_export.lib.php:83 libraries/display_tbl.lib.php:2094
+#: libraries/display_tbl.lib.php:2225 libraries/messages.inc.php:318
#: libraries/mult_submits.inc.php:62 libraries/server_links.inc.php:84
#: libraries/tbl_links.inc.php:82 pmd_pdf.php:84 pmd_pdf.php:109
#: server_privileges.php:1341 setup/frames/menu.inc.php:22
@@ -842,6 +847,31 @@ msgstr "檢查資料表"
msgid "Database Log"
msgstr "資料庫"
+#: export.php:62 libraries/messages.inc.php:320
+msgid "Selected export type has to be saved in file!"
+msgstr ""
+
+#: export.php:154 export.php:179 export.php:627 libraries/messages.inc.php:575
+#, php-format
+msgid "Insufficient space to save the file %s."
+msgstr "空間不足儲存檔案 %s."
+
+#: export.php:294 libraries/messages.inc.php:332
+#, php-format
+msgid ""
+"File %s already exists on server, change filename or check overwrite option."
+msgstr "檔案 %s 已存在,請更改檔案名稱或選擇「覆寫己存在檔案」選項."
+
+#: export.php:298 export.php:302 libraries/messages.inc.php:570
+#, php-format
+msgid "The web server does not have permission to save the file %s."
+msgstr "Web 伺服器沒有權限儲存檔案 %s."
+
+#: export.php:629 libraries/messages.inc.php:284
+#, php-format
+msgid "Dump has been saved to file %s."
+msgstr "備份已儲到檔案 %s."
+
#: import.php:60 libraries/messages.inc.php:1210
#, php-format
msgid ""
@@ -1029,21 +1059,21 @@ msgid "Choose field to display"
msgstr "選擇顯示之欄位"
#. l10n: Display text for calendar close link
-#: js/messages.php:72
+#: js/messages.php:73
#, fuzzy
#| msgid "None"
msgid "Done"
msgstr "不適用"
#. l10n: Display text for previous month link in calendar
-#: js/messages.php:74
+#: js/messages.php:75
#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "前一頁"
#. l10n: Display text for next month link in calendar
-#: js/messages.php:76 libraries/common.lib.php:2289
+#: js/messages.php:77 libraries/common.lib.php:2289
#: libraries/common.lib.php:2292 libraries/display_tbl.lib.php:338
#: libraries/messages.inc.php:551 server_binlog.php:205 server_binlog.php:207
#: tbl_printview.php:424 tbl_structure.php:802
@@ -1051,96 +1081,96 @@ msgid "Next"
msgstr "下一個"
#. l10n: Display text for current month link in calendar
-#: js/messages.php:78
+#: js/messages.php:79
#, fuzzy
#| msgid "Total"
msgid "Today"
msgstr "總共"
-#: js/messages.php:81
+#: js/messages.php:82
#, fuzzy
#| msgid "Binary"
msgid "January"
msgstr "二進制碼"
-#: js/messages.php:82
+#: js/messages.php:83
msgid "February"
msgstr ""
-#: js/messages.php:83
+#: js/messages.php:84
#, fuzzy
#| msgid "Mar"
msgid "March"
msgstr "Mar"
-#: js/messages.php:84
+#: js/messages.php:85
#, fuzzy
#| msgid "Apr"
msgid "April"
msgstr "Apr"
-#: js/messages.php:85 libraries/messages.inc.php:28
+#: js/messages.php:86 libraries/messages.inc.php:28
msgid "May"
msgstr "May"
-#: js/messages.php:86
+#: js/messages.php:87
#, fuzzy
#| msgid "Jun"
msgid "June"
msgstr "Jun"
-#: js/messages.php:87
+#: js/messages.php:88
#, fuzzy
#| msgid "Jul"
msgid "July"
msgstr "Jul"
-#: js/messages.php:88
+#: js/messages.php:89
#, fuzzy
#| msgid "Aug"
msgid "August"
msgstr "Aug"
-#: js/messages.php:89
+#: js/messages.php:90
msgid "September"
msgstr ""
-#: js/messages.php:90
+#: js/messages.php:91
#, fuzzy
#| msgid "Oct"
msgid "October"
msgstr "Oct"
-#: js/messages.php:91
+#: js/messages.php:92
msgid "November"
msgstr ""
-#: js/messages.php:92
+#: js/messages.php:93
msgid "December"
msgstr ""
#. l10n: Short month name
-#: js/messages.php:96 libraries/messages.inc.php:28
+#: js/messages.php:97 libraries/messages.inc.php:28
msgid "Jan"
msgstr "Jan"
#. l10n: Short month name
-#: js/messages.php:98 libraries/messages.inc.php:28
+#: js/messages.php:99 libraries/messages.inc.php:28
msgid "Feb"
msgstr "Feb"
#. l10n: Short month name
-#: js/messages.php:100 libraries/messages.inc.php:28
+#: js/messages.php:101 libraries/messages.inc.php:28
msgid "Mar"
msgstr "Mar"
#. l10n: Short month name
-#: js/messages.php:102 libraries/messages.inc.php:28
+#: js/messages.php:103 libraries/messages.inc.php:28
msgid "Apr"
msgstr "Apr"
#. l10n: Short month name
-#: js/messages.php:104
+#: js/messages.php:105
#, fuzzy
#| msgid "May"
msgctxt "Short month name"
@@ -1148,176 +1178,176 @@ msgid "May"
msgstr "May"
#. l10n: Short month name
-#: js/messages.php:106 libraries/messages.inc.php:28
+#: js/messages.php:107 libraries/messages.inc.php:28
msgid "Jun"
msgstr "Jun"
#. l10n: Short month name
-#: js/messages.php:108 libraries/messages.inc.php:28
+#: js/messages.php:109 libraries/messages.inc.php:28
msgid "Jul"
msgstr "Jul"
#. l10n: Short month name
-#: js/messages.php:110 libraries/messages.inc.php:28
+#: js/messages.php:111 libraries/messages.inc.php:28
msgid "Aug"
msgstr "Aug"
#. l10n: Short month name
-#: js/messages.php:112 libraries/messages.inc.php:28
+#: js/messages.php:113 libraries/messages.inc.php:28
msgid "Sep"
msgstr "Sep"
#. l10n: Short month name
-#: js/messages.php:114 libraries/messages.inc.php:28
+#: js/messages.php:115 libraries/messages.inc.php:28
msgid "Oct"
msgstr "Oct"
#. l10n: Short month name
-#: js/messages.php:116 libraries/messages.inc.php:28
+#: js/messages.php:117 libraries/messages.inc.php:28
msgid "Nov"
msgstr "Nov"
#. l10n: Short month name
-#: js/messages.php:118 libraries/messages.inc.php:28
+#: js/messages.php:119 libraries/messages.inc.php:28
msgid "Dec"
msgstr "Dec"
-#: js/messages.php:121
+#: js/messages.php:122
#, fuzzy
#| msgid "Sun"
msgid "Sunday"
msgstr "Sun"
-#: js/messages.php:122
+#: js/messages.php:123
#, fuzzy
#| msgid "Mon"
msgid "Monday"
msgstr "Mon"
-#: js/messages.php:123
+#: js/messages.php:124
#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
msgstr "Tue"
-#: js/messages.php:124
+#: js/messages.php:125
msgid "Wednesday"
msgstr ""
-#: js/messages.php:125
+#: js/messages.php:126
msgid "Thursday"
msgstr ""
-#: js/messages.php:126
+#: js/messages.php:127
#, fuzzy
#| msgid "Fri"
msgid "Friday"
msgstr "Fri"
-#: js/messages.php:127
+#: js/messages.php:128
msgid "Saturday"
msgstr ""
#. l10n: Short week day name
-#: js/messages.php:131 libraries/messages.inc.php:27
+#: js/messages.php:132 libraries/messages.inc.php:27
msgid "Sun"
msgstr "Sun"
#. l10n: Short week day name
-#: js/messages.php:133 libraries/messages.inc.php:27
+#: js/messages.php:134 libraries/messages.inc.php:27
msgid "Mon"
msgstr "Mon"
#. l10n: Short week day name
-#: js/messages.php:135 libraries/messages.inc.php:27
+#: js/messages.php:136 libraries/messages.inc.php:27
msgid "Tue"
msgstr "Tue"
#. l10n: Short week day name
-#: js/messages.php:137 libraries/messages.inc.php:27
+#: js/messages.php:138 libraries/messages.inc.php:27
msgid "Wed"
msgstr "Wed"
#. l10n: Short week day name
-#: js/messages.php:139 libraries/messages.inc.php:27
+#: js/messages.php:140 libraries/messages.inc.php:27
msgid "Thu"
msgstr "Thu"
#. l10n: Short week day name
-#: js/messages.php:141 libraries/messages.inc.php:27
+#: js/messages.php:142 libraries/messages.inc.php:27
msgid "Fri"
msgstr "Fri"
#. l10n: Short week day name
-#: js/messages.php:143 libraries/messages.inc.php:27
+#: js/messages.php:144 libraries/messages.inc.php:27
msgid "Sat"
msgstr "Sat"
#. l10n: Minimal week day name
-#: js/messages.php:147
+#: js/messages.php:148
#, fuzzy
#| msgid "Sun"
msgid "Su"
msgstr "Sun"
#. l10n: Minimal week day name
-#: js/messages.php:149
+#: js/messages.php:150
#, fuzzy
#| msgid "Mon"
msgid "Mo"
msgstr "Mon"
#. l10n: Minimal week day name
-#: js/messages.php:151
+#: js/messages.php:152
#, fuzzy
#| msgid "Tue"
msgid "Tu"
msgstr "Tue"
#. l10n: Minimal week day name
-#: js/messages.php:153
+#: js/messages.php:154
#, fuzzy
#| msgid "Wed"
msgid "We"
msgstr "Wed"
#. l10n: Minimal week day name
-#: js/messages.php:155
+#: js/messages.php:156
#, fuzzy
#| msgid "Thu"
msgid "Th"
msgstr "Thu"
#. l10n: Minimal week day name
-#: js/messages.php:157
+#: js/messages.php:158
#, fuzzy
#| msgid "Fri"
msgid "Fr"
msgstr "Fri"
#. l10n: Minimal week day name
-#: js/messages.php:159
+#: js/messages.php:160
#, fuzzy
#| msgid "Sat"
msgid "Sa"
msgstr "Sat"
#. l10n: Column header for week of the year in calendar
-#: js/messages.php:161
+#: js/messages.php:162
msgid "Wk"
msgstr ""
-#: js/messages.php:163
+#: js/messages.php:164
msgid "Hour"
msgstr ""
-#: js/messages.php:164
+#: js/messages.php:165
#, fuzzy
#| msgid "in use"
msgid "Minute"
msgstr "使用中"
-#: js/messages.php:165
+#: js/messages.php:166
#, fuzzy
#| msgid "per second"
msgid "Second"
@@ -2012,6 +2042,7 @@ msgstr "建立"
#: libraries/display_create_database.lib.php:40 libraries/messages.inc.php:572
#: server_privileges.php:74 server_privileges.php:1388
+#: server_replication.php:35
msgid "No Privileges"
msgstr "沒有權限"
@@ -2296,46 +2327,46 @@ msgstr "執行書籤查詢"
msgid "The row has been deleted"
msgstr "記錄已被刪除"
-#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
+#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2056
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
msgid "Kill"
msgstr "Kill"
-#: libraries/display_tbl.lib.php:1929 libraries/messages.inc.php:857
+#: libraries/display_tbl.lib.php:1934 libraries/messages.inc.php:857
msgid "in query"
msgstr "查詢中"
-#: libraries/display_tbl.lib.php:1947 libraries/messages.inc.php:889
+#: libraries/display_tbl.lib.php:1952 libraries/messages.inc.php:889
msgid "Showing rows"
msgstr "顯示記錄"
-#: libraries/display_tbl.lib.php:1957 libraries/messages.inc.php:1121
+#: libraries/display_tbl.lib.php:1962 libraries/messages.inc.php:1121
msgid "total"
msgstr "總計"
-#: libraries/display_tbl.lib.php:1965 libraries/messages.inc.php:735
+#: libraries/display_tbl.lib.php:1970 libraries/messages.inc.php:735
#: sql.php:524
#, php-format
msgid "Query took %01.4f sec"
msgstr "查詢需時 %01.4f 秒"
-#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
+#: libraries/display_tbl.lib.php:2089 libraries/messages.inc.php:143
#: libraries/mult_submits.inc.php:113 querywindow.php:125 querywindow.php:129
#: querywindow.php:132 tbl_structure.php:25 tbl_structure.php:150
#: tbl_structure.php:471
msgid "Change"
msgstr "修改"
-#: libraries/display_tbl.lib.php:2154 libraries/messages.inc.php:732
+#: libraries/display_tbl.lib.php:2159 libraries/messages.inc.php:732
msgid "Query results operations"
msgstr "查詢結果操作"
-#: libraries/display_tbl.lib.php:2182 libraries/messages.inc.php:679
+#: libraries/display_tbl.lib.php:2187 libraries/messages.inc.php:679
msgid "Print view (with full texts)"
msgstr "列印檢視 (顯示完整文字)"
-#: libraries/display_tbl.lib.php:2356 libraries/messages.inc.php:490
+#: libraries/display_tbl.lib.php:2361 libraries/messages.inc.php:490
msgid "Link not found"
msgstr "找不到連結"
@@ -2810,6 +2841,56 @@ msgstr "結構"
msgid "Go to view"
msgstr ""
+#: libraries/import/csv.php:58 libraries/import/csv.php:70
+#: libraries/import/csv.php:74 libraries/import/csv.php:78
+#: libraries/messages.inc.php:450
+#, php-format
+msgid "Invalid parameter for CSV import: %s"
+msgstr "CSV 載入時參數錯誤: %s"
+
+#: libraries/import/csv.php:59 libraries/messages.inc.php:331
+msgid "Fields terminated by"
+msgstr "「欄位分隔」使用字元:"
+
+#: libraries/import/csv.php:71 libraries/messages.inc.php:328
+msgid "Fields enclosed by"
+msgstr "「欄位」使用字元:"
+
+#: libraries/import/csv.php:75 libraries/messages.inc.php:329
+msgid "Fields escaped by"
+msgstr "「ESCAPE」使用字元:"
+
+#: libraries/import/csv.php:79 libraries/messages.inc.php:489
+msgid "Lines terminated by"
+msgstr "「下一行」使用字元:"
+
+#: libraries/import/csv.php:119 libraries/messages.inc.php:447
+#, php-format
+msgid "Invalid column (%s) specified!"
+msgstr "欄 (%s) 區分錯誤.!"
+
+#: libraries/import/csv.php:177 libraries/import/csv.php:424
+#: libraries/messages.inc.php:449
+#, php-format
+msgid "Invalid format of CSV input on line %d."
+msgstr "Invalid format of CSV 檔案第 %d 行中之格式錯誤."
+
+#: libraries/import/csv.php:312 libraries/messages.inc.php:448
+#, php-format
+msgid "Invalid field count in CSV input on line %d."
+msgstr "CSV 檔案第 %d 行中之欄位總數錯誤."
+
+#: libraries/import/ldi.php:55 libraries/messages.inc.php:454
+msgid "This plugin does not support compressed imports!"
+msgstr "這外掛程式不支援壓縮輸入!"
+
+#: libraries/import/xml.php:74 libraries/import/xml.php:130
+#: libraries/messages.inc.php:1255
+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
#, fuzzy
@@ -3289,12 +3370,12 @@ msgstr "連線"
msgid "Copy table to (database.table):"
msgstr "複製資料表到: (格式為 資料庫名稱.資料表名稱):"
-#: libraries/messages.inc.php:188
+#: libraries/messages.inc.php:188 tbl_move_copy.php:58
#, php-format
msgid "Table %s has been copied to %s."
msgstr "已經將資料表 %s 複製為 %s."
-#: libraries/messages.inc.php:189
+#: libraries/messages.inc.php:189 tbl_move_copy.php:48
msgid "Can't copy table to same one!"
msgstr "無法複製到相同資料表!"
@@ -3555,11 +3636,6 @@ msgstr ""
msgid "Drop the databases that have the same names as the users."
msgstr "刪除與使用者相同名稱之資料庫."
-#: libraries/messages.inc.php:284
-#, php-format
-msgid "Dump has been saved to file %s."
-msgstr "備份已儲到檔案 %s."
-
#: libraries/messages.inc.php:286 tbl_printview.php:382 tbl_structure.php:743
msgid "dynamic"
msgstr "動態"
@@ -3629,10 +3705,6 @@ msgstr "Excel 版本"
msgid "Export/Import to scale"
msgstr ""
-#: libraries/messages.inc.php:320
-msgid "Selected export type has to be saved in file!"
-msgstr ""
-
#: libraries/messages.inc.php:321
msgid "Extended inserts"
msgstr "伸延新增模式"
@@ -3651,28 +3723,10 @@ msgstr "嘗試失敗"
msgid "Field %s has been dropped"
msgstr "資料表 %s 已被刪除"
-#: libraries/messages.inc.php:328
-msgid "Fields enclosed by"
-msgstr "「欄位」使用字元:"
-
-#: libraries/messages.inc.php:329
-msgid "Fields escaped by"
-msgstr "「ESCAPE」使用字元:"
-
#: libraries/messages.inc.php:330 libraries/sql_query_form.lib.php:317
msgid "Fields"
msgstr "欄位"
-#: libraries/messages.inc.php:331
-msgid "Fields terminated by"
-msgstr "「欄位分隔」使用字元:"
-
-#: libraries/messages.inc.php:332
-#, php-format
-msgid ""
-"File %s already exists on server, change filename or check overwrite option."
-msgstr "檔案 %s 已存在,請更改檔案名稱或選擇「覆寫己存在檔案」選項."
-
#: libraries/messages.inc.php:340 server_binlog.php:136
#, fuzzy
msgid "Files"
@@ -3773,10 +3827,6 @@ msgstr "操作者"
msgid "Selected target tables have been synchronized with source tables."
msgstr ""
-#: libraries/messages.inc.php:379
-msgid "You have to choose at least one column to display"
-msgstr "您需要選擇最少顯示一行欄位"
-
#: libraries/messages.inc.php:380 libraries/mysql_charsets.lib.php:374
msgid "Hebrew"
msgstr "希伯來語"
@@ -3948,35 +3998,11 @@ msgstr "內部關聯"
msgid "Column count has to be larger than zero."
msgstr "欄位數目需要大於零."
-#: libraries/messages.inc.php:447
-#, php-format
-msgid "Invalid column (%s) specified!"
-msgstr "欄 (%s) 區分錯誤.!"
-
-#: libraries/messages.inc.php:448
-#, php-format
-msgid "Invalid field count in CSV input on line %d."
-msgstr "CSV 檔案第 %d 行中之欄位總數錯誤."
-
-#: libraries/messages.inc.php:449
-#, php-format
-msgid "Invalid format of CSV input on line %d."
-msgstr "Invalid format of CSV 檔案第 %d 行中之格式錯誤."
-
-#: libraries/messages.inc.php:450
-#, php-format
-msgid "Invalid parameter for CSV import: %s"
-msgstr "CSV 載入時參數錯誤: %s"
-
#: libraries/messages.inc.php:452 libraries/tbl_properties.inc.php:784
#: tbl_structure.php:537
msgid "You have to add at least one field."
msgstr "你最少要加入一個欄位."
-#: libraries/messages.inc.php:454
-msgid "This plugin does not support compressed imports!"
-msgstr "這外掛程式不支援壓縮輸入!"
-
#: libraries/messages.inc.php:457
#, php-format
msgid "Invalid server index: \"%s\""
@@ -3987,7 +4013,7 @@ msgstr "伺服器索引錯誤: \"%s\""
msgid "Japanese"
msgstr "日語"
-#: libraries/messages.inc.php:461
+#: libraries/messages.inc.php:461 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 "
@@ -4069,10 +4095,6 @@ msgstr "長度/集合*"
msgid "Number of rows per page"
msgstr "筆記錄/每頁"
-#: libraries/messages.inc.php:489
-msgid "Lines terminated by"
-msgstr "「下一行」使用字元:"
-
#: libraries/messages.inc.php:492 libraries/mysql_charsets.lib.php:265
msgid "Lithuanian"
msgstr "立陶宛語"
@@ -4181,12 +4203,12 @@ msgstr ""
msgid "Move table to (database.table):"
msgstr "移動資料表到:(格式為 資料庫名稱.資料表名稱)"
-#: libraries/messages.inc.php:527
+#: libraries/messages.inc.php:527 tbl_move_copy.php:56
#, php-format
msgid "Table %s has been moved to %s."
msgstr "資料表 %s 已經移動到 %s."
-#: libraries/messages.inc.php:528
+#: libraries/messages.inc.php:528 tbl_move_copy.php:46
msgid "Can't move table to same one!"
msgstr "無法移動到相同資料表!"
@@ -4255,11 +4277,6 @@ msgstr "不適用"
msgid "This format has no options"
msgstr "這種格式並無選項"
-#: libraries/messages.inc.php:570
-#, php-format
-msgid "The web server does not have permission to save the file %s."
-msgstr "Web 伺服器沒有權限儲存檔案 %s."
-
#: libraries/messages.inc.php:573 user_password.php:54
msgid "You don't have sufficient privileges to be here right now!"
msgstr "您現在沒有足夠的權限!"
@@ -4268,11 +4285,6 @@ msgstr "您現在沒有足夠的權限!"
msgid "No rows selected"
msgstr "並無資料列已選擇"
-#: libraries/messages.inc.php:575
-#, php-format
-msgid "Insufficient space to save the file %s."
-msgstr "空間不足儲存檔案 %s."
-
#: libraries/messages.inc.php:577 themes.php:32
#, php-format
msgid ""
@@ -4899,7 +4911,7 @@ msgstr ""
msgid "IO Thread %s only"
msgstr ""
-#: libraries/messages.inc.php:794
+#: libraries/messages.inc.php:794 server_replication.php:296
msgid "Slave IO Thread not running!"
msgstr ""
@@ -4934,7 +4946,7 @@ msgstr ""
msgid "Slave replication"
msgstr ""
-#: libraries/messages.inc.php:802
+#: libraries/messages.inc.php:802 server_replication.php:293
msgid "Slave SQL Thread not running!"
msgstr ""
@@ -5916,7 +5928,8 @@ msgstr "資料表 %s 已存在!"
msgid "Alter column(s)"
msgstr ""
-#: libraries/messages.inc.php:1076 tbl_alter.php:103 tbl_indexes.php:98
+#: libraries/messages.inc.php:1076 tbl_addfield.php:189 tbl_alter.php:103
+#: tbl_indexes.php:98
#, fuzzy, php-format
msgid "Table %1$s has been altered successfully"
msgstr "選擇的使用者已成功刪除."
@@ -5931,7 +5944,7 @@ msgstr ""
msgid "Would you like to delete all the previous rows from target tables?"
msgstr ""
-#: libraries/messages.inc.php:1080
+#: libraries/messages.inc.php:1080 tbl_move_copy.php:82
msgid "The table name is empty!"
msgstr "請輸入資料表名稱!"
@@ -6469,12 +6482,6 @@ msgstr ""
msgid "wildcard"
msgstr "萬用字元"
-#: libraries/messages.inc.php:1255
-msgid ""
-"The XML file specified was either malformed or incomplete. Please correct "
-"the issue and try again."
-msgstr ""
-
#: libraries/messages.inc.php:1256
msgid "Export contents"
msgstr ""
diff --git a/server_replication.php b/server_replication.php
index 2605d792f..9a7f0ddd7 100644
--- a/server_replication.php
+++ b/server_replication.php
@@ -32,7 +32,7 @@ if (! $is_superuser) {
. PMA_getIcon('s_replication.png')
. __('Replication') . "\n"
. '' . "\n";
- PMA_Message::error('strNoPrivileges')->display();
+ PMA_Message::error(__('No Privileges'))->display();
require_once './libraries/footer.inc.php';
}
@@ -290,10 +290,10 @@ if (! isset($GLOBALS['repl_clear_scr'])) {
$slave_skip_error_link = PMA_generate_common_url($_url_params);
if ($server_slave_replication[0]['Slave_SQL_Running'] == 'No') {
- PMA_Message::warning('strReplicationSlaveSQLThreadNotRunning')->display();
+ PMA_Message::warning(__('Slave SQL Thread not running!'))->display();
}
if ($server_slave_replication[0]['Slave_IO_Running'] == 'No') {
- PMA_Message::warning('strReplicationSlaveIOThreadNotRunning')->display();
+ PMA_Message::warning(__('Slave IO Thread not running!'))->display();
}
$_url_params = $GLOBALS['url_params'];
diff --git a/tbl_addfield.php b/tbl_addfield.php
index 572992eb7..500a3daee 100644
--- a/tbl_addfield.php
+++ b/tbl_addfield.php
@@ -186,7 +186,7 @@ if (isset($_REQUEST['do_save_data'])) {
}
// Go back to the structure sub-page
- $message = PMA_Message::success('strTableAlteredSuccessfully');
+ $message = PMA_Message::success(__('Table %1$s has been altered successfully'));
$message->addParam($table);
$active_page = 'tbl_structure.php';
require './tbl_structure.php';
diff --git a/tbl_move_copy.php b/tbl_move_copy.php
index 208dcd627..f4c8d478a 100644
--- a/tbl_move_copy.php
+++ b/tbl_move_copy.php
@@ -43,9 +43,9 @@ if (empty($_REQUEST['target_db'])) {
if (PMA_isValid($_REQUEST['new_name'])) {
if ($db == $_REQUEST['target_db'] && $table == $_REQUEST['new_name']) {
if (isset($_REQUEST['submit_move'])) {
- $message = PMA_Message::error('strMoveTableSameNames');
+ $message = PMA_Message::error(__('Can\'t move table to same one!'));
} else {
- $message = PMA_Message::error('strCopyTableSameNames');
+ $message = PMA_Message::error(__('Can\'t copy table to same one!'));
}
$goto = './tbl_operations.php';
} else {
@@ -53,9 +53,9 @@ if (PMA_isValid($_REQUEST['new_name'])) {
$_REQUEST['what'], isset($_REQUEST['submit_move']), 'one_table');
if (isset($_REQUEST['submit_move'])) {
- $message = PMA_Message::success('strMoveTableOK');
+ $message = PMA_Message::success(__('Table %s has been moved to %s.'));
} else {
- $message = PMA_Message::success('strCopyTableOK');
+ $message = PMA_Message::success(__('Table %s has been copied to %s.'));
}
$old = PMA_backquote($db) . '.' . PMA_backquote($table);
$message->addParam($old);
@@ -79,7 +79,7 @@ if (PMA_isValid($_REQUEST['new_name'])) {
/**
* No new name for the table!
*/
- $message = PMA_Message::error('strTableEmpty');
+ $message = PMA_Message::error(__('The table name is empty!'));
$goto = './tbl_operations.php';
}
|