Git
Threads by month
- ----- 2026 -----
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- 2 participants
- 38803 discussions
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2870-g2b4a5e6
by Marc Delisle 09 May '10
by Marc Delisle 09 May '10
09 May '10
The branch, master has been updated
via 2b4a5e68eee3a9342e061946ac8d356af7a4d16a (commit)
from 78bb9c71c007b93a89799250cac053a8b012c5b4 (commit)
- Log -----------------------------------------------------------------
commit 2b4a5e68eee3a9342e061946ac8d356af7a4d16a
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun May 9 08:03:11 2010 -0400
gettext conversion
-----------------------------------------------------------------------
Summary of changes:
libraries/common.lib.php | 4 ++--
libraries/import.lib.php | 30 +++++++++++++++---------------
libraries/mysql_charsets.lib.php | 1 -
3 files changed, 17 insertions(+), 18 deletions(-)
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 898984d..ef43bde 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -2342,7 +2342,7 @@ function PMA_userDir($dir)
*
* @uses $cfg['DefaultTabDatabase']
* @uses $GLOBALS['db']
- * @uses $GLOBALS['strJumpToDB']
+ * @uses __('Jump to database "%s".')
* @uses PMA_generate_common_url()
* @uses PMA_unescape_mysql_wildcards()
* @uses strlen()
@@ -2363,7 +2363,7 @@ function PMA_getDbLink($database = null)
}
return '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($database) . '"'
- .' title="' . sprintf($GLOBALS['strJumpToDB'], htmlspecialchars($database)) . '">'
+ .' title="' . sprintf(__('Jump to database "%s".'), htmlspecialchars($database)) . '">'
.htmlspecialchars($database) . '</a>';
}
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index cd50694..6569371 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -131,7 +131,7 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false)
$my_die[] = array('sql' => $import_run_buffer['full'], 'error' => PMA_DBI_getError());
if ($cfg['VerboseMultiSubmit']) {
- $msg .= $GLOBALS['strError'];
+ $msg .= __('Error');
}
if (!$cfg['IgnoreMultiSubmitErrors']) {
@@ -142,12 +142,12 @@ function PMA_importRunQuery($sql = '', $full = '', $controluser = false)
$a_num_rows = (int)@PMA_DBI_num_rows($result);
$a_aff_rows = (int)@PMA_DBI_affected_rows();
if ($a_num_rows > 0) {
- $msg .= $GLOBALS['strRows'] . ': ' . $a_num_rows;
+ $msg .= __('Rows'). ': ' . $a_num_rows;
} elseif ($a_aff_rows > 0) {
$message = PMA_Message::affected_rows($a_aff_rows);
$msg .= $message->getMessage();
} else {
- $msg .= $GLOBALS['strEmptyResultSet'];
+ $msg .= __('MySQL returned an empty result set (i.e. zero rows).');
}
}
if (!$sql_query_disabled) {
@@ -1075,16 +1075,16 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
$db_ops_url = 'db_operations.php' . PMA_generate_common_url($params);
$message = '<br /><br />';
- $message .= '<strong>' . $GLOBALS['strImportNoticePt1'] . '</strong><br />';
- $message .= '<ul><li>' . $GLOBALS['strImportNoticePt2'] . '</li>';
- $message .= '<li>' . $GLOBALS['strImportNoticePt3'] . '</li>';
- $message .= '<li>' . $GLOBALS['strImportNoticePt4'] . '</li>';
- $message .= sprintf('<br /><li><a href="%s" title="%s">%s</a> (<a href="%s" title="%s">' . $GLOBALS['strOptions'] . '</a>)</li>',
+ $message .= '<strong>' . __('The following structures have either been created or altered. Here you can:') . '</strong><br />';
+ $message .= '<ul><li>' . __('View a structure`s contents by clicking on its name') . '</li>';
+ $message .= '<li>' . __('Change any of its settings by clicking the corresponding "Options" link') . '</li>';
+ $message .= '<li>' . __('Edit its structure by following the "Structure" link') . '</li>';
+ $message .= sprintf('<br /><li><a href="%s" title="%s">%s</a> (<a href="%s" title="%s">' . __('Options') . '</a>)</li>',
$db_url,
- $GLOBALS['strGoToDatabase'] . ': ' . PMA_backquote($db_name),
+ __('Go to database') . ': ' . PMA_backquote($db_name),
$db_name,
$db_ops_url,
- $GLOBALS['strEdit'] . ' ' . PMA_backquote($db_name) . ' ' . $GLOBALS['strSettings']);
+ __('Edit') . ' ' . PMA_backquote($db_name) . ' ' . __('settings'));
$message .= '<ul>';
@@ -1101,18 +1101,18 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
unset($params);
if (! PMA_isView($db_name, $tables[$i][TBL_NAME])) {
- $message .= sprintf('<li><a href="%s" title="%s">%s</a> (<a href="%s" title="%s">' . $GLOBALS['strStructure'] . '</a>) (<a href="%s" title="%s">' . $GLOBALS['strOptions'] . '</a>)</li>',
+ $message .= sprintf('<li><a href="%s" title="%s">%s</a> (<a href="%s" title="%s">' . __('Structure') . '</a>) (<a href="%s" title="%s">' . __('Options') . '</a>)</li>',
$tbl_url,
- $GLOBALS['strGoToTable'] . ': ' . PMA_backquote($tables[$i][TBL_NAME]),
+ __('Go to table') . ': ' . PMA_backquote($tables[$i][TBL_NAME]),
$tables[$i][TBL_NAME],
$tbl_struct_url,
- PMA_backquote($tables[$i][TBL_NAME]) . ' ' . $GLOBALS['strStructureLC'],
+ PMA_backquote($tables[$i][TBL_NAME]) . ' ' . __('structure'),
$tbl_ops_url,
- $GLOBALS['strEdit'] . ' ' . PMA_backquote($tables[$i][TBL_NAME]) . ' ' . $GLOBALS['strSettings']);
+ __('Edit') . ' ' . PMA_backquote($tables[$i][TBL_NAME]) . ' ' . __('settings'));
} else {
$message .= sprintf('<li><a href="%s" title="%s">%s</a></li>',
$tbl_url,
- $GLOBALS['strGoToView'] . ': ' . PMA_backquote($tables[$i][TBL_NAME]),
+ __('Go to view') . ': ' . PMA_backquote($tables[$i][TBL_NAME]),
$tables[$i][TBL_NAME]);
}
}
diff --git a/libraries/mysql_charsets.lib.php b/libraries/mysql_charsets.lib.php
index 86aa114..40ce377 100644
--- a/libraries/mysql_charsets.lib.php
+++ b/libraries/mysql_charsets.lib.php
@@ -184,7 +184,6 @@ function PMA_getServerCollation() {
* @uses is_array()
* @uses explode()
* @uses count()
- * @uses $GLOBALS['str[Languages|Sorting]']
*
* @param string $collation MySQL collation string
* @return string collation description
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2869-g78bb9c7
by Marc Delisle 09 May '10
by Marc Delisle 09 May '10
09 May '10
The branch, master has been updated
via 78bb9c71c007b93a89799250cac053a8b012c5b4 (commit)
from a3b034eacdb09bc6d5ef268bc68be2eeaf54e985 (commit)
- Log -----------------------------------------------------------------
commit 78bb9c71c007b93a89799250cac053a8b012c5b4
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun May 9 07:07:15 2010 -0400
bug #2998889 Import button does not work in Catalan
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/display_import.lib.php | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index df1988e..f3b0872 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -84,6 +84,7 @@ $Id$
3.3.4.0 (not yet released)
- bug #2996161 [import] properly escape import value
+- bug #2998889 [import] Import button does not work in Catalan
3.3.3.0 (not yet released)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/libraries/display_import.lib.php b/libraries/display_import.lib.php
index 343248a..0e803c4 100644
--- a/libraries/display_import.lib.php
+++ b/libraries/display_import.lib.php
@@ -74,7 +74,7 @@ if ($_SESSION[$SESSION_KEY]["handler"]!="noplugin") {
if (finished==true) {
$('#importmain').css('display', 'none');
$('#import_form_status').css('display', 'inline');
- $('#import_form_status').html('<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" /> <?php echo __('The file is being processed, please be patient.'); ?> ');
+ $('#import_form_status').html('<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" /> <?php echo PMA_jsFormat(__('The file is being processed, please be patient.')); ?> ');
$('#import_form_status').load('import_status.php?message=true&<?php echo PMA_generate_common_url(); ?>'); // loads the message, either success or mysql error
<?php
// reload the left sidebar when the import is finished
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_3RC1-5-g5227d99
by Marc Delisle 09 May '10
by Marc Delisle 09 May '10
09 May '10
The branch, QA_3_3 has been updated
via 5227d998ec1d59d7f980ad793ddf807f7a58ac3e (commit)
from 972101f08ca5b1d6bbbc5dac579247472567f28e (commit)
- Log -----------------------------------------------------------------
commit 5227d998ec1d59d7f980ad793ddf807f7a58ac3e
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sun May 9 07:00:49 2010 -0400
bug #2998889 Import button does not work in Catalan
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/display_import.lib.php | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index f816c2b..10bf32a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
3.3.4.0 (not yet released)
- bug #2996161 [import] properly escape import value
+- bug #2998889 [import] Import button does not work in Catalan
3.3.3.0 (not yet released)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/libraries/display_import.lib.php b/libraries/display_import.lib.php
index b99a8e2..4d40692 100644
--- a/libraries/display_import.lib.php
+++ b/libraries/display_import.lib.php
@@ -66,7 +66,7 @@ window.addEvent('domready', function() {
$clear(periodical_upload);
$('importmain').setStyle('display', 'none');
$('import_form_status').setStyle('display', 'inline');
- $('import_form_status').set('html', '<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" /> <?php echo $strImportProceedingFile; ?> ');
+ $('import_form_status').set('html', '<img src="<?php echo $GLOBALS['pmaThemeImage'];?>ajax_clock_small.gif" alt="ajax clock" /> <?php echo PMA_jsFormat($strImportProceedingFile); ?> ');
$('import_form_status').load('import_status.php?message=true&<?php echo PMA_generate_common_url(); ?>'); // loads the message, either success or mysql error
<?php
// reload the left sidebar when the import is finished
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2868-ga3b034e
by Marc Delisle 07 May '10
by Marc Delisle 07 May '10
07 May '10
The branch, master has been updated
via a3b034eacdb09bc6d5ef268bc68be2eeaf54e985 (commit)
from df1ceb13102e0c605519229f2467ae6020bca180 (commit)
- Log -----------------------------------------------------------------
commit a3b034eacdb09bc6d5ef268bc68be2eeaf54e985
Author: Marc Delisle <marc(a)infomarc.info>
Date: Fri May 7 13:02:26 2010 -0400
gettext conversion
-----------------------------------------------------------------------
Summary of changes:
db_search.php | 78 +++++++-------
libraries/select_lang.lib.php | 8 +-
po/af.po | 192 ++++++++++++++++++-----------------
po/ar.po | 192 ++++++++++++++++++-----------------
po/az.po | 192 ++++++++++++++++++-----------------
po/be.po | 192 ++++++++++++++++++-----------------
po/be(a)latin.po | 192 ++++++++++++++++++-----------------
po/bg.po | 192 ++++++++++++++++++-----------------
po/bn.po | 192 ++++++++++++++++++-----------------
po/bs.po | 192 ++++++++++++++++++-----------------
po/ca.po | 192 ++++++++++++++++++-----------------
po/cs.po | 192 ++++++++++++++++++-----------------
po/da.po | 192 ++++++++++++++++++-----------------
po/de.po | 192 ++++++++++++++++++-----------------
po/el.po | 192 ++++++++++++++++++-----------------
po/en_GB.po | 192 ++++++++++++++++++-----------------
po/es.po | 192 ++++++++++++++++++-----------------
po/et.po | 192 ++++++++++++++++++-----------------
po/eu.po | 192 ++++++++++++++++++-----------------
po/fa.po | 192 ++++++++++++++++++-----------------
po/fi.po | 192 ++++++++++++++++++-----------------
po/fr.po | 192 ++++++++++++++++++-----------------
po/gl.po | 192 ++++++++++++++++++-----------------
po/he.po | 192 ++++++++++++++++++-----------------
po/hi.po | 192 ++++++++++++++++++-----------------
po/hr.po | 192 ++++++++++++++++++-----------------
po/hu.po | 192 ++++++++++++++++++-----------------
po/id.po | 192 ++++++++++++++++++-----------------
po/it.po | 192 ++++++++++++++++++-----------------
po/ja.po | 192 ++++++++++++++++++-----------------
po/ka.po | 192 ++++++++++++++++++-----------------
po/ko.po | 192 ++++++++++++++++++-----------------
po/lt.po | 192 ++++++++++++++++++-----------------
po/lv.po | 192 ++++++++++++++++++-----------------
po/mk.po | 192 ++++++++++++++++++-----------------
po/mn.po | 192 ++++++++++++++++++-----------------
po/ms.po | 192 ++++++++++++++++++-----------------
po/nb.po | 192 ++++++++++++++++++-----------------
po/nl.po | 192 ++++++++++++++++++-----------------
po/phpmyadmin.pot | 192 ++++++++++++++++++-----------------
po/pl.po | 192 ++++++++++++++++++-----------------
po/pt.po | 192 ++++++++++++++++++-----------------
po/pt_BR.po | 192 ++++++++++++++++++-----------------
po/ro.po | 192 ++++++++++++++++++-----------------
po/ru.po | 192 ++++++++++++++++++-----------------
po/si.po | 192 ++++++++++++++++++-----------------
po/sk.po | 194 +++++++++++++++++++-----------------
po/sl.po | 221 +++++++++++++++++++----------------------
po/sq.po | 192 ++++++++++++++++++-----------------
po/sr.po | 192 ++++++++++++++++++-----------------
po/sr(a)latin.po | 192 ++++++++++++++++++-----------------
po/sv.po | 192 ++++++++++++++++++-----------------
po/ta.po | 192 ++++++++++++++++++-----------------
po/te.po | 194 +++++++++++++++++++-----------------
po/th.po | 192 ++++++++++++++++++-----------------
po/tr.po | 192 ++++++++++++++++++-----------------
po/tt.po | 192 ++++++++++++++++++-----------------
po/uk.po | 192 ++++++++++++++++++-----------------
po/ur.po | 192 ++++++++++++++++++-----------------
po/uz.po | 192 ++++++++++++++++++-----------------
po/uz(a)latin.po | 194 +++++++++++++++++++-----------------
po/zh_CN.po | 192 ++++++++++++++++++-----------------
po/zh_TW.po | 192 ++++++++++++++++++-----------------
server_synchronize.php | 7 +-
64 files changed, 6094 insertions(+), 5746 deletions(-)
diff --git a/db_search.php b/db_search.php
index 24bb5cc..fece7d0 100644
--- a/db_search.php
+++ b/db_search.php
@@ -7,23 +7,23 @@
* @todo display executed query, optional?
* @uses $cfg['UseDbSearch']
* @uses $GLOBALS['db']
- * @uses $GLOBALS['strAccessDenied']
- * @uses $GLOBALS['strSearchOption1']
- * @uses $GLOBALS['strSearchOption2']
- * @uses $GLOBALS['strSearchOption3']
- * @uses $GLOBALS['strSearchOption4']
- * @uses $GLOBALS['strSearchResultsFor']
- * @uses $GLOBALS['strNumSearchResultsInTable']
- * @uses $GLOBALS['strBrowse']
- * @uses $GLOBALS['strDelete']
- * @uses $GLOBALS['strNumSearchResultsTotal']
- * @uses $GLOBALS['strSearchFormTitle']
- * @uses $GLOBALS['strSearchNeedle']
- * @uses $GLOBALS['strSearchType']
- * @uses $GLOBALS['strSplitWordsWithSpace']
- * @uses $GLOBALS['strSearchInTables']
- * @uses $GLOBALS['strUnselectAll']
- * @uses $GLOBALS['strSelectAll']
+ * @uses __('Access denied')
+ * @uses __('at least one of the words')
+ * @uses __('all words')
+ * @uses __('the exact phrase')
+ * @uses __('as regular expression')
+ * @uses __('Search results for "<i>%s</i>" %s:')
+ * @uses __('%s match(es) inside table <i>%s</i>')
+ * @uses __('Browse')
+ * @uses __('Delete')
+ * @uses __('<b>Total:</b> <i>%s</i> match(es)')
+ * @uses __('Search in database')
+ * @uses __('Word(s) or value(s) to search for (wildcard: "%"):')
+ * @uses __('Find:')
+ * @uses __('Words are separated by a space character (" ").')
+ * @uses __('Inside table(s):')
+ * @uses __('Unselect All')
+ * @uses __('Select All')
* @uses PMA_DBI_get_tables()
* @uses PMA_sqlAddslashes()
* @uses PMA_getSearchSqls()
@@ -65,7 +65,7 @@ require './libraries/db_common.inc.php';
*/
// If config variable $GLOBALS['cfg']['Usedbsearch'] is on false : exit.
if (! $GLOBALS['cfg']['UseDbSearch']) {
- PMA_mysqlDie($GLOBALS['strAccessDenied'], '', false, $err_url);
+ PMA_mysqlDie(__('Access denied'), '', false, $err_url);
} // end if
$url_query .= '&goto=db_search.php';
$url_params['goto'] = 'db_search.php';
@@ -77,10 +77,10 @@ $url_params['goto'] = 'db_search.php';
$tables_names_only = PMA_DBI_get_tables($GLOBALS['db']);
$search_options = array(
- '1' => $GLOBALS['strSearchOption1'],
- '2' => $GLOBALS['strSearchOption2'],
- '3' => $GLOBALS['strSearchOption3'],
- '4' => $GLOBALS['strSearchOption4'],
+ '1' => __('at least one of the words'),
+ '2' => __('all words'),
+ '3' => __('the exact phrase'),
+ '4' => __('as regular expression'),
);
if (empty($_REQUEST['search_option']) || ! is_string($_REQUEST['search_option'])
@@ -239,7 +239,7 @@ if (isset($_REQUEST['submit_search'])) {
echo '<br />' . "\n"
.'<table class="data">' . "\n"
.'<caption class="tblHeaders">' . "\n"
- .sprintf($GLOBALS['strSearchResultsFor'],
+ .sprintf(__('Search results for "<i>%s</i>" %s:'),
$searched, $option_str) . "\n"
.'</caption>' . "\n";
@@ -257,19 +257,19 @@ if (isset($_REQUEST['submit_search'])) {
$sql_query .= $newsearchsqls['select_count'];
echo '<tr class="' . ($odd_row ? 'odd' : 'even') . '">'
- .'<td>' . sprintf($GLOBALS['strNumSearchResultsInTable'], $res_cnt,
+ .'<td>' . sprintf(__('%s match(es) inside table <i>%s</i>'), $res_cnt,
htmlspecialchars($each_table)) . "</td>\n";
if ($res_cnt > 0) {
$this_url_params['sql_query'] = $newsearchsqls['select_fields'];
echo '<td>' . PMA_linkOrButton(
'sql.php' . PMA_generate_common_url($this_url_params),
- $GLOBALS['strBrowse'], '') . "</td>\n";
+ __('Browse'), '') . "</td>\n";
$this_url_params['sql_query'] = $newsearchsqls['delete'];
echo '<td>' . PMA_linkOrButton(
'sql.php' . PMA_generate_common_url($this_url_params),
- $GLOBALS['strDelete'], $newsearchsqls['delete']) . "</td>\n";
+ __('Delete'), $newsearchsqls['delete']) . "</td>\n";
} else {
echo '<td> </td>' . "\n"
@@ -282,7 +282,7 @@ if (isset($_REQUEST['submit_search'])) {
echo '</table>' . "\n";
if (count($tables_selected) > 1) {
- echo '<p>' . sprintf($GLOBALS['strNumSearchResultsTotal'],
+ echo '<p>' . sprintf(__('<b>Total:</b> <i>%s</i> match(es)'),
$num_search_result_total) . '</p>' . "\n";
}
} // end 1.
@@ -296,22 +296,22 @@ if (isset($_REQUEST['submit_search'])) {
<form method="post" action="db_search.php" name="db_search">
<?php echo PMA_generate_common_hidden_inputs($GLOBALS['db']); ?>
<fieldset>
- <legend><?php echo $GLOBALS['strSearchFormTitle']; ?></legend>
+ <legend><?php echo __('Search in database'); ?></legend>
<table class="formlayout">
- <tr><td><?php echo $GLOBALS['strSearchNeedle']; ?></td>
+ <tr><td><?php echo __('Word(s) or value(s) to search for (wildcard: "%"):'); ?></td>
<td><input type="text" name="search_str" size="60"
value="<?php echo $searched; ?>" /></td>
</tr>
<tr><td align="right" valign="top">
- <?php echo $GLOBALS['strSearchType']; ?></td>
+ <?php echo __('Find:'); ?></td>
<td><?php
$choices = array(
- '1' => $GLOBALS['strSearchOption1'] . PMA_showHint($GLOBALS['strSplitWordsWithSpace']),
- '2' => $GLOBALS['strSearchOption2'] . PMA_showHint($GLOBALS['strSplitWordsWithSpace']),
- '3' => $GLOBALS['strSearchOption3'],
- '4' => $GLOBALS['strSearchOption4'] . ' ' . PMA_showMySQLDocu('Regexp', 'Regexp')
+ '1' => __('at least one of the words') . PMA_showHint(__('Words are separated by a space character (" ").')),
+ '2' => __('all words') . PMA_showHint(__('Words are separated by a space character (" ").')),
+ '3' => __('the exact phrase'),
+ '4' => __('as regular expression') . ' ' . PMA_showMySQLDocu('Regexp', 'Regexp')
);
// 4th parameter set to true to add line breaks
// 5th parameter set to false to avoid htmlspecialchars() escaping in the label
@@ -322,7 +322,7 @@ unset($choices);
</td>
</tr>
<tr><td align="right" valign="top">
- <?php echo $GLOBALS['strSearchInTables']; ?></td>
+ <?php echo __('Inside table(s):'); ?></td>
<td rowspan="2">
<?php
echo ' <select name="table_select[]" size="6" multiple="multiple">' . "\n";
@@ -341,10 +341,10 @@ foreach ($tables_names_only as $each_table) {
echo ' </select>' . "\n";
$alter_select =
'<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('selectall' => 1))) . '#db_search"'
- . ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', true); return false;">' . $GLOBALS['strSelectAll'] . '</a>'
+ . ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', true); return false;">' . __('Select All') . '</a>'
. ' / '
. '<a href="db_search.php' . PMA_generate_common_url(array_merge($url_params, array('unselectall' => 1))) . '#db_search"'
- . ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', false); return false;">' . $GLOBALS['strUnselectAll'] . '</a>';
+ . ' onclick="setSelectOptions(\'db_search\', \'table_select[]\', false); return false;">' . __('Unselect All') . '</a>';
?>
</td>
</tr>
@@ -352,14 +352,14 @@ $alter_select =
<?php echo $alter_select; ?></td>
</tr>
<tr><td align="right">
- <?php echo $GLOBALS['strSearchInField']; ?></td>
+ <?php echo __('Inside field:'); ?></td>
<td><input type="text" name="field_str" size="60"
value="<?php echo ! empty($field_str) ? $field_str : ''; ?>" /></td>
</tr>
</table>
</fieldset>
<fieldset class="tblFooters">
- <input type="submit" name="submit_search" value="<?php echo $GLOBALS['strGo']; ?>"
+ <input type="submit" name="submit_search" value="<?php echo __('Go'); ?>"
id="buttonGo" />
</fieldset>
</form>
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index a6efb2c..7a8927d 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -477,23 +477,23 @@ require_once './libraries/messages.inc.php';
// now, that we have loaded the language strings we can send the errors
if ($GLOBALS['lang_failed_cfg']) {
trigger_error(
- sprintf($GLOBALS['strLanguageUnknown'],
+ sprintf(__('Unknown language: %1$s.'),
htmlspecialchars($GLOBALS['lang_failed_cfg'])),
E_USER_ERROR);
}
if ($GLOBALS['lang_failed_cookie']) {
trigger_error(
- sprintf($GLOBALS['strLanguageUnknown'],
+ sprintf(__('Unknown language: %1$s.'),
htmlspecialchars($GLOBALS['lang_failed_cookie'])),
E_USER_ERROR);
}
if ($GLOBALS['lang_failed_request']) {
trigger_error(
- sprintf($GLOBALS['strLanguageUnknown'],
+ sprintf(__('Unknown language: %1$s.'),
htmlspecialchars($GLOBALS['lang_failed_request'])),
E_USER_ERROR);
}
unset($line, $fall_back_lang,
- $GLOBALS['lang_failed_cfg'], $GLOBALS['lang_failed_cookie'], $GLOBALS['ang_failed_request'], $GLOBALS['strLanguageUnknown']);
+ $GLOBALS['lang_failed_cfg'], $GLOBALS['lang_failed_cookie'], $GLOBALS['ang_failed_request']);
?>
diff --git a/po/af.po b/po/af.po
index f1ace94..4091bb1 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -43,7 +43,7 @@ msgstr "Soek"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -61,7 +61,7 @@ msgstr "Soek"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -196,11 +196,13 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr "Sien die storting (skema) van die databasis"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Kies Alles"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Selekteer Niks"
@@ -506,14 +508,85 @@ msgstr "SQL-navraag op databasis <b>%s</b>:"
msgid "Submit Query"
msgstr "Doen Navraag"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Toegang Geweier"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "ten minste een van die woorde"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "alle woorde"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "die presiese frase"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "as 'n regular expression"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Soek resultate vir \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s resultate binne tabel <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Beloer Data"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Verwyder"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Totaal:</b> <i>%s</i> ooreenkomste"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Soek in databasis"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Vind:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Binne tabel(le):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -678,8 +751,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Databasis"
@@ -1065,13 +1138,6 @@ msgstr "Rekords"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Toegang Geweier"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1510,7 +1576,7 @@ msgstr "Geen Wagwoord"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Wagwoord"
@@ -1798,14 +1864,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr "Die ry is verwyder"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Verwyder"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2156,7 +2214,7 @@ msgstr "Tabel struktuur vir tabel"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Gasheer (host)"
@@ -3014,6 +3072,7 @@ msgid "%s databases have been dropped successfully."
msgstr ""
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Soek in databasis"
@@ -3041,6 +3100,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Soek in databasis"
@@ -3744,7 +3804,8 @@ msgstr ""
msgid "Korean"
msgstr ""
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3959,7 +4020,7 @@ msgid "Show processes"
msgstr "Wys prosesse"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Geen databasisse"
@@ -4065,16 +4126,6 @@ msgstr "Geen gebruiker(s) gevind nie."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s resultate binne tabel <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Totaal:</b> <i>%s</i> ooreenkomste"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
#, fuzzy
@@ -4227,7 +4278,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sorteer"
@@ -4871,47 +4922,6 @@ msgstr "Stoor"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Die skaal faktor is te klein om die skema op een bladsy te pas"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Soek in databasis"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Binne tabel(le):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Woord(e) of waarde(s) om voor te soek (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "ten minste een van die woorde"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "alle woorde"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "die presiese frase"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "as 'n regular expression"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Soek resultate vir \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Vind:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5632,7 +5642,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5648,10 +5658,6 @@ msgstr "Spasie verbruik"
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Woorde is geskei dmv 'n spasie karakter (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5781,7 +5787,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr ""
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6321,7 +6327,7 @@ msgstr "Die gebruiker naam ontbreek!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Gebruiker naam"
@@ -6548,15 +6554,15 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr ""
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/ar.po b/po/ar.po
index 07de4be..67e530f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -43,7 +43,7 @@ msgstr "ابحث"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -61,7 +61,7 @@ msgstr "ابحث"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -194,11 +194,13 @@ msgstr "اطبع"
msgid "View dump (schema) of database"
msgstr "عرض بنية قاعدة البيانات"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "تحديد الكل"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "إلغاء تحديد الكل"
@@ -499,14 +501,85 @@ msgstr "في قاعدة البيانات SQL-إستعلام <b>%s</b>:"
msgid "Submit Query"
msgstr "إرسال الاستعلام"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "غير مسموح"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "على الأقل أحد الكلمات"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "كل الكلمات"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "الجملة بالضبط"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "كصيغة مطابقة"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "ابحث في النتائج عن \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s مطابقة في الجدول <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "استعراض"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "حذف"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>المجموع:</b> <i>%s</i>مطابقة"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "ابحث في قاعدة البيانات"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "ابحث:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "الكلمات مفصولة بحرف مسافة (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "داخل الجدول)الجداول(:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -671,8 +744,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "قاعدة البيانات"
@@ -1056,13 +1129,6 @@ msgstr "لكل ثانية"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "غير مسموح"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1504,7 +1570,7 @@ msgstr "لا كلمة سر"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "كلمة السر"
@@ -1789,14 +1855,6 @@ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
msgid "The row has been deleted"
msgstr "لقد تم حذف الصف"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "حذف"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2143,7 +2201,7 @@ msgstr "بنية الجدول"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "المزود"
@@ -2985,6 +3043,7 @@ msgid "%s databases have been dropped successfully."
msgstr "تم حذف قواعد البيانات %s بنجاح."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -3011,6 +3070,7 @@ msgstr ""
"الويب وخادم MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3719,7 +3779,8 @@ msgstr ""
msgid "Korean"
msgstr "الكورية"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3931,7 +3992,7 @@ msgid "Show processes"
msgstr "عرض العمليات"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "لايوجد قواعد بيانات"
@@ -4036,16 +4097,6 @@ msgstr "المستخدم(ون) لم يتم إيجادهم."
msgid "Number of tables"
msgstr "عدد الجداول"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s مطابقة في الجدول <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>المجموع:</b> <i>%s</i>مطابقة"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4193,7 +4244,7 @@ msgid "Polish"
msgstr "البولندية"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4828,47 +4879,6 @@ msgstr "حفظ"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "نسبة الحجم المحددة صغيرة جدا لملائمة المخطط في صفحة واحدة."
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "ابحث في قاعدة البيانات"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "داخل الجدول)الجداول(:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "الكلمات أو القيم المطلوب البحث عنها (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "على الأقل أحد الكلمات"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "كل الكلمات"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "الجملة بالضبط"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "كصيغة مطابقة"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "ابحث في النتائج عن \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "ابحث:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "يحتاج ملف الإعداد الآن إلى كلمة المرور السرية."
@@ -5586,7 +5596,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5602,10 +5612,6 @@ msgstr "المساحة المستغلة"
msgid "Spanish"
msgstr "أسبانية"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "الكلمات مفصولة بحرف مسافة (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "نوع التصدير"
@@ -5728,7 +5734,7 @@ msgstr "السويدية"
msgid "Switch to copied table"
msgstr "بدل إلى الجدول المنسوخ"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6281,7 +6287,7 @@ msgstr "اسم المستخدم فارغ!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "اسم المستخدم"
@@ -6510,17 +6516,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "اتصالات"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/az.po b/po/az.po
index 031c504..05e0751 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -41,7 +41,7 @@ msgstr "Axtarış"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -59,7 +59,7 @@ msgstr "Axtarış"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -192,11 +192,13 @@ msgstr "Çap et"
msgid "View dump (schema) of database"
msgstr "Me'lumat bazasının sxemini göster"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Hamısını Seç"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Heç birini seçme"
@@ -502,14 +504,85 @@ msgstr "SQL-query on database <b>%s</b>:"
msgid "Submit Query"
msgstr "Emri İcra Et"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Giriş Tesdiq Edilmedi"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "sözlerin en azından birini"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "bütün sözleri"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "tamamile eyni sözü"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "requlyar ifade (regular expression) olaraq"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "\"<i>%s</i>\" üçün axtarış neticeleri %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s uyğunluq tapıldı (<i>%s</i> cedvelinde)"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "İçindekiler"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Sil"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Cemi:</b> <i>%s</i> uyğunluq"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Search in database"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Axtarmaq üçün söz(ler) ve ya deyer(ler) (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Tap:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Inside table(s):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Me'lumat Bazası"
@@ -1065,13 +1138,6 @@ msgstr "saniyede"
msgid "Cannot connect: invalid settings."
msgstr "Elaqe qura bilmirem: yalnış quruluş."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Giriş Tesdiq Edilmedi"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1517,7 +1583,7 @@ msgstr "Parol Yoxdur"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Parol"
@@ -1805,14 +1871,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr "Setir silindi"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Sil"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2163,7 +2221,7 @@ msgstr "Table structure for table"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3028,6 +3086,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s bazası müveffeqiyyetle leğv edildi."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Search in database"
@@ -3055,6 +3114,7 @@ msgstr ""
"MySQL server arasında ağır neqliyyata sebeb ola bilersiniz."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Search in database"
@@ -3773,7 +3833,8 @@ msgstr ""
msgid "Korean"
msgstr ""
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3989,7 +4050,7 @@ msgid "Show processes"
msgstr "Prosesleri göster"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
@@ -4096,16 +4157,6 @@ msgstr "İstifadeçi(ler) tapılmadı."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s uyğunluq tapıldı (<i>%s</i> cedvelinde)"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Cemi:</b> <i>%s</i> uyğunluq"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4258,7 +4309,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sırala"
@@ -4909,47 +4960,6 @@ msgstr "Qeyd Et"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "The scale factor is too small to fit the schema on one page"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Search in database"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Inside table(s):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Axtarmaq üçün söz(ler) ve ya deyer(ler) (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "sözlerin en azından birini"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "bütün sözleri"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "tamamile eyni sözü"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "requlyar ifade (regular expression) olaraq"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "\"<i>%s</i>\" üçün axtarış neticeleri %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Tap:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5671,7 +5681,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5687,10 +5697,6 @@ msgstr "Yer istifadesi"
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Sözler boşluq ifadesi (\" \") ile ayrılmışdır."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Eksport şekli"
@@ -5817,7 +5823,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr "Kopyalanmış cedvele keç"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6380,7 +6386,7 @@ msgstr "İstifadeçi adı boş qaldı!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "İstifadeçi adı"
@@ -6609,17 +6615,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Elaqeler"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/be.po b/po/be.po
index 19e07c0..d2a073f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Пошук"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Пошук"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Друк"
msgid "View dump (schema) of database"
msgstr "Праглядзець дамп (схему) базы дадзеных"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Выбраць усё"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Зьняць усе адзнакі"
@@ -502,14 +504,85 @@ msgstr "SQL-запыт да БД <b>%s</b>:"
msgid "Submit Query"
msgstr "Выканаць запыт"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "У доступе адмоўлена"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "прынамсі адно з словаў"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "усе словы"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "дакладную фразу"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "рэгулярны выраз"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Вынікі пошуку \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s супадзеньняў у табліцы <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Прагляд"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Выдаліць"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Агулам:</b> <i>%s</i> супадзеньняў"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Пошук у базе дадзеных"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Знайсьці:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Словы, падзеленыя прагалам (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "У табліцы(ах):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Унутры поля:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -679,8 +752,8 @@ msgstr "Праверыць табліцу"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "База дадзеных"
@@ -1070,13 +1143,6 @@ msgstr "у сэкунду"
msgid "Cannot connect: invalid settings."
msgstr "Немагчыма падлучыцца: няправільныя налады."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "У доступе адмоўлена"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1534,7 +1600,7 @@ msgstr "Без пароля"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Пароль"
@@ -1826,14 +1892,6 @@ msgstr "Выканаць запыт з закладак"
msgid "The row has been deleted"
msgstr "Радок быў выдалены"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Выдаліць"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2228,7 +2286,7 @@ msgstr "Структура табліцы"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3093,6 +3151,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s базаў дадзеных былі пасьпяхова выдаленыя."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Пошук у базе дадзеных"
@@ -3120,6 +3179,7 @@ msgstr ""
"колькасьць трафіку паміж вэб-сэрвэрам і сэрвэрам MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Пошук у базе дадзеных"
@@ -3846,7 +3906,8 @@ msgstr "Кэш ключоў"
msgid "Korean"
msgstr "Карэйская"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Невядомая мова: %1$s."
@@ -4068,7 +4129,7 @@ msgid "Show processes"
msgstr "Паказаць працэсы"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Базы дадзеных адсутнічаюць"
@@ -4180,16 +4241,6 @@ msgstr "Не знойдзены карыстальнік."
msgid "Number of tables"
msgstr "Колькасьць табліц"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s супадзеньняў у табліцы <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Агулам:</b> <i>%s</i> супадзеньняў"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4338,7 +4389,7 @@ msgid "Polish"
msgstr "Польская"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Парадак"
@@ -4993,47 +5044,6 @@ msgstr "Захаваць"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Маштаб замалы для таго, каб схема займала ўсю старонку"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Пошук у базе дадзеных"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Унутры поля:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "У табліцы(ах):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Слова(ы) або значэньне(і) для пошуку (маска: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "прынамсі адно з словаў"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "усе словы"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "дакладную фразу"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "рэгулярны выраз"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Вынікі пошуку \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Знайсьці:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5886,7 +5896,7 @@ msgstr "Згарнуць/разгарнуць адлюстраваньне ўс
msgid "Snap to grid"
msgstr "Зьвяць зь сеткай"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5902,10 +5912,6 @@ msgstr "Выкарыстаньне прасторы"
msgid "Spanish"
msgstr "Гішпанская"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Словы, падзеленыя прагалам (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Тып экспарту"
@@ -6039,7 +6045,7 @@ msgstr "Швэдзкая"
msgid "Switch to copied table"
msgstr "Перайсьці да скапіяванай табліцы"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6628,7 +6634,7 @@ msgstr "Пустое імя карыстальніка!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Імя карыстальніка"
@@ -6867,17 +6873,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "максымум адначасовых злучэньняў"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 04001a4..d11550e 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -47,7 +47,7 @@ msgstr "Pošuk"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -65,7 +65,7 @@ msgstr "Pošuk"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -198,11 +198,13 @@ msgstr "Druk"
msgid "View dump (schema) of database"
msgstr "Prahladzieć damp (schiemu) bazy dadzienych"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Vybrać usio"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Źniać usie adznaki"
@@ -503,14 +505,85 @@ msgstr "SQL-zapyt da BD %s:"
msgid "Submit Query"
msgstr "Vykanać zapyt"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "U dostupie admoŭlena"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "prynamsi adno z słovaŭ"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "usie słovy"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "dakładnuju frazu"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "rehularny vyraz"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Vyniki pošuku \"%s\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s supadzieńniaŭ u tablicy %s"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Prahlad"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Vydalić"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "Ahułam: %s supadzieńniaŭ"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Pošuk u bazie dadzienych"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Znajści:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Słovy, padzielenyja prahałam (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "U tablicy(ach):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Unutry pola:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -679,8 +752,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Baza dadzienych"
@@ -1064,13 +1137,6 @@ msgstr "u sekundu"
msgid "Cannot connect: invalid settings."
msgstr "Niemahčyma padłučycca: niapravilnyja nałady."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "U dostupie admoŭlena"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1528,7 +1594,7 @@ msgstr "Biez parola"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Parol"
@@ -1820,14 +1886,6 @@ msgstr "Vykanać zapyt z zakładak"
msgid "The row has been deleted"
msgstr "Radok byŭ vydaleny"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Vydalić"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2226,7 +2284,7 @@ msgstr "Struktura tablicy"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Chost"
@@ -3086,6 +3144,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s bazaŭ dadzienych byli paśpiachova vydalenyja."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -3112,6 +3171,7 @@ msgstr ""
"kolkaść trafiku pamiž web-serveram i serveram MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3833,7 +3893,8 @@ msgstr "Keš klučoŭ"
msgid "Korean"
msgstr "Karejskaja"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nieviadomaja mova: %1$s."
@@ -4056,7 +4117,7 @@ msgid "Show processes"
msgstr "Pakazać pracesy"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Bazy dadzienych adsutničajuć"
@@ -4167,16 +4228,6 @@ msgstr "Nie znojdzieny karystalnik."
msgid "Number of tables"
msgstr "Kolkaść tablic"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s supadzieńniaŭ u tablicy %s"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b
> <i>%s</i> match(es)"
-msgstr "Ahułam: %s supadzieńniaŭ"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4324,7 +4375,7 @@ msgid "Polish"
msgstr "Polskaja"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4970,47 +5021,6 @@ msgstr "Zachavać"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Maštab zamały dla taho, kab schiema zajmała ŭsiu staronku"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Pošuk u bazie dadzienych"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Unutry pola:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "U tablicy(ach):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Słova(y) abo značeńnie(i) dla pošuku (maska: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "prynamsi adno z słovaŭ"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "usie słovy"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "dakładnuju frazu"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "rehularny vyraz"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Vyniki pošuku \"%s\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Znajści:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5864,7 +5874,7 @@ msgstr "Zharnuć/razharnuć adlustravańnie ŭsich tablic"
msgid "Snap to grid"
msgstr "Źviać ź sietkaj"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5880,10 +5890,6 @@ msgstr "Vykarystańnie prastory"
msgid "Spanish"
msgstr "Hišpanskaja"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Słovy, padzielenyja prahałam (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Typ ekspartu"
@@ -6015,7 +6021,7 @@ msgstr "Švedzkaja"
msgid "Switch to copied table"
msgstr "Pierajści da skapijavanaj tablicy"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6603,7 +6609,7 @@ msgstr "Pustoje imia karystalnika!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Imia karystalnika"
@@ -6837,17 +6843,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "maksymum adnačasovych złučeńniaŭ"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/bg.po b/po/bg.po
index 8f360eb..1125289 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Търсене"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Търсене"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Печат"
msgid "View dump (schema) of database"
msgstr "Схема на БД"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Селектиране на всичко"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Деселектиране на всичко"
@@ -501,14 +503,85 @@ msgstr "SQL-заявка към базата от данни <b>%s</b>:"
msgid "Submit Query"
msgstr "Изпълни заявката"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Отказан достъп"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "поне една от думите"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "всички думи"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "точната фраза"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "като регулярен израз"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Резултати от търсенето на \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s съвпадение(я) в таблица <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Прелистване"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Изтриване"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Общо:</b> <i>%s</i> съвпадение(я)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Търсене в базата от данни"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Намери:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Думите трябва да се разделят с интервал (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "В таблиците:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -673,8 +746,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "БД"
@@ -1063,13 +1136,6 @@ msgstr "на секунда"
msgid "Cannot connect: invalid settings."
msgstr "Връзката не може да бъде осъществена: невалидни настройки."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Отказан достъп"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1519,7 +1585,7 @@ msgstr "Няма парола"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Парола"
@@ -1808,14 +1874,6 @@ msgstr "Стартиране на запазена SQL-заявка"
msgid "The row has been deleted"
msgstr "Редът беше изтрит"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Изтриване"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2166,7 +2224,7 @@ msgstr "Структура на таблица"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3033,6 +3091,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s бази от данни бяха изтрити успешно."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Търсене в базата от данни"
@@ -3060,6 +3119,7 @@ msgstr ""
"много голям трафик между уеб сървъра и MySQL сървъра."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Търсене в базата от данни"
@@ -3780,7 +3840,8 @@ msgstr "Кеш на заявките"
msgid "Korean"
msgstr "Корейски"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3998,7 +4059,7 @@ msgid "Show processes"
msgstr "MySQL процеси"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Няма бази от данни"
@@ -4105,16 +4166,6 @@ msgstr "Няма потребител(и)."
msgid "Number of tables"
msgstr "Брой полета"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s съвпадение(я) в таблица <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Общо:</b> <i>%s</i> съвпадение(я)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4265,7 +4316,7 @@ msgid "Polish"
msgstr "Полски"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Сортиране"
@@ -4923,47 +4974,6 @@ msgstr "Записване"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Мащаба е твърде малък за да се събере схемата на една страница"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Търсене в базата от данни"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "В таблиците:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Думи или стойности за търсене (знак за заместване: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "поне една от думите"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "всички думи"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "точната фраза"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "като регулярен израз"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Резултати от търсенето на \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Намери:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфигурационния файл има нужда от тайна парола (blowfish_secret)."
@@ -5694,7 +5704,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5710,10 +5720,6 @@ msgstr "Използвано място"
msgid "Spanish"
msgstr "Испански"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Думите трябва да се разделят с интервал (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Тип на експортирането"
@@ -5841,7 +5847,7 @@ msgstr "Шведски"
msgid "Switch to copied table"
msgstr "Превключване към копираната таблица"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6410,7 +6416,7 @@ msgstr "Потребителското име е празно!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Потребителско име"
@@ -6644,17 +6650,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "Максимален брой на едновременните конекции"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/bn.po b/po/bn.po
index e852256..fa55a1d 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "খুঁজুন"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "খুঁজুন"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "প্রিন্ট কর"
msgid "View dump (schema) of database"
msgstr "View dump (schema) of database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "সব সিলেক্ট করুন"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Unselect All"
@@ -501,14 +503,85 @@ msgstr "SQL query on database <b>%s</b>:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "প্রবেশ নিষেধ"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "at least one of the words"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "সব শব্দ"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "the exact phrase"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "as regular expression"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Search results for \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s match(es) inside table <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "ব্রাউজ করুন"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "মুছে ফেল"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> match(es)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "ডাটাবে এ খুজুঁনSearch in database"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Find:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Words are separated by a space character (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Inside table(s):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -674,8 +747,8 @@ msgstr "টেবিল পরীক্ষা কর"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "ডাটাবেজ"
@@ -1063,13 +1136,6 @@ msgstr "per second"
msgid "Cannot connect: invalid settings."
msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "প্রবেশ নিষেধ"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1523,7 +1589,7 @@ msgstr "কোন পাসওয়ার্ড নাই"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "পাসওয়ার্ড"
@@ -1816,14 +1882,6 @@ msgstr "Execute bookmarked query"
msgid "The row has been deleted"
msgstr "সারিটি মুছে ফেলা হয়েছে"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "মুছে ফেল"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2190,7 +2248,7 @@ msgstr "Table structure for table"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "হোষ্ট"
@@ -3058,6 +3116,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s ডাটাবেজসমূহ সফলভাবে মুছে ফেলা হয়েছে "
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "ডাটাবে এ খুজুঁনSearch in database"
@@ -3085,6 +3144,7 @@ msgstr ""
"between the web server and the MySQL server."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "ডাটাবে এ খুজুঁনSearch in database"
@@ -3808,7 +3868,8 @@ msgstr "Key cache"
msgid "Korean"
msgstr "কোরিয়ান"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unknown language: %1$s."
@@ -4030,7 +4091,7 @@ msgid "Show processes"
msgstr "প্রসেসসমূহ দেখান"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "কোন ডাটাবেজ নাই"
@@ -4143,16 +4204,6 @@ msgstr "No user(s) found."
msgid "Number of tables"
msgstr "Number of fields"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s match(es) inside table <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> match(es)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4303,7 +4354,7 @@ msgid "Polish"
msgstr "পোলিশ"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "সাজাঁন"
@@ -4953,47 +5004,6 @@ msgstr "সেভ করুন"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "The scale factor is too small to fit the schema on one page"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "ডাটাবে এ খুজুঁনSearch in database"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Inside table(s):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "at least one of the words"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "সব শব্দ"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "the exact phrase"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "as regular expression"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Search results for \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Find:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5820,7 +5830,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5836,10 +5846,6 @@ msgstr "Space usage"
msgid "Spanish"
msgstr "Spanish"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Words are separated by a space character (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Export type"
@@ -5969,7 +5975,7 @@ msgstr "সুইডিশ"
msgid "Switch to copied table"
msgstr "Switch to copied table"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6550,7 +6556,7 @@ msgstr "The user name is empty!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "ব্যাভারকারীর নাম"
@@ -6784,17 +6790,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "max. concurrent connections"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index 6839ce2..fbc97f7 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Pretraživanje"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Pretraživanje"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Štampaj"
msgid "View dump (schema) of database"
msgstr "Prikaži sadržaj (shemu) baze"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Izaberi sve"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "ništa"
@@ -504,14 +506,85 @@ msgstr "SQL upit na bazi <b>%s</b>:"
msgid "Submit Query"
msgstr "Izvrši SQL upit"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Ulaz nije dozvoljen"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "bar jednu od riječi"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "sve riječi"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "tačan izraz"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "kao regularni izraz"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Rezultati pretrage za \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s pogodaka unutar tabele <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Pregled"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Obriši"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Ukupno:</b> <i>%s</i> pogodaka"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Pretraživanje baze"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Traži:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Riječi se odvajaju razmakom (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Unutar tabela:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -677,8 +750,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Baza podataka"
@@ -1065,13 +1138,6 @@ msgstr "u sekundi"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Ulaz nije dozvoljen"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1517,7 +1583,7 @@ msgstr "Nema lozinke"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Lozinka"
@@ -1805,14 +1871,6 @@ msgstr "Izvrši upamćen upit"
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Obriši"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2162,7 +2220,7 @@ msgstr "Struktura tabele"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3027,6 +3085,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s baza je uspješno odbačena."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Pretraživanje baze"
@@ -3054,6 +3113,7 @@ msgstr ""
"između web i MySQL servera."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Pretraživanje baze"
@@ -3772,7 +3832,8 @@ msgstr ""
msgid "Korean"
msgstr "Korejski"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3988,7 +4049,7 @@ msgid "Show processes"
msgstr "Prikaži listu procesa"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Baza ne postoji"
@@ -4094,16 +4155,6 @@ msgstr "Korisnik nije nađen."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s pogodaka unutar tabele <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Ukupno:</b> <i>%s</i> pogodaka"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4255,7 +4306,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sortiranje"
@@ -4907,47 +4958,6 @@ msgstr "Sačuvaj"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Faktor umanjenja je premali da bi shema stala na jednu stranu"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Pretraživanje baze"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Unutar tabela:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Riječi ili vrednosti koje se traže (džoker: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "bar jednu od riječi"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "sve riječi"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "tačan izraz"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "kao regularni izraz"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Rezultati pretrage za \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Traži:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfiguraciona datoteka zahtjeva tajnu lozinku (blowfish_secret)."
@@ -5669,7 +5679,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5686,10 +5696,6 @@ msgstr "Zauzeće"
msgid "Spanish"
msgstr "Danski"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Riječi se odvajaju razmakom (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5816,7 +5822,7 @@ msgstr "Švedski"
msgid "Switch to copied table"
msgstr "Pređi na kopiranu tabelu"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6377,7 +6383,7 @@ msgstr "Ime korisnika nije unijeto!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Ime korisnika"
@@ -6605,17 +6611,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Konekcije"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/ca.po b/po/ca.po
index 6a862e0..bf24018 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Cerca"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Cerca"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Imprimeix"
msgid "View dump (schema) of database"
msgstr "Veure l'esquema de la base de dades"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Tria Tot"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Desmarca tot"
@@ -500,14 +502,85 @@ msgstr "Consulta SQL a la base de dades <b>%s</b>:"
msgid "Submit Query"
msgstr "Executa consulta"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Accés denegat"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "al menys una d'aquestes paraules"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "Totes les paraules"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "La frase exacta"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "com a expressió regular"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Resultats de la recerca per a \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s resultat(s) a la taula <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Navega"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Esborra"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> resultat(s)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Cerca a la base de dades"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Paraula(es) o valor(s) a cercar (comodí: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Trobat:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Paraules separades per un espai (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "A la(les) taula(es):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Camp interior:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -673,8 +746,8 @@ msgstr "Taules seguides"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Base de dades"
@@ -1059,13 +1132,6 @@ msgstr "per segon"
msgid "Cannot connect: invalid settings."
msgstr "No puc connectar: paràmetres incorrectes."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Accés denegat"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1521,7 +1587,7 @@ msgstr "Sense contrasenya"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Contrasenya"
@@ -1819,14 +1885,6 @@ msgstr "Executa una consulta desada"
msgid "The row has been deleted"
msgstr "S'ha esborrat la fila"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Esborra"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2222,7 +2280,7 @@ msgstr "Estructura de la taula"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Servidor"
@@ -3087,6 +3145,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s Bases de dades s'han esborrat correctament."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Base de dades origen"
@@ -3113,6 +3172,7 @@ msgstr ""
"tràfic entre el servidor Web i el de MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Base de dades destinació"
@@ -3841,7 +3901,8 @@ msgstr "Memòria cau de claus"
msgid "Korean"
msgstr "Coreà"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Idioma desconegut: %1$s."
@@ -4064,7 +4125,7 @@ msgid "Show processes"
msgstr "Mostra els processos"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "No hi ha Bases de Dades"
@@ -4176,16 +4237,6 @@ msgstr "No s'han trobat usuaris."
msgid "Number of tables"
msgstr "Nombre de taules"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s resultat(s) a la taula <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> resultat(s)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4334,7 +4385,7 @@ msgid "Polish"
msgstr "Polac"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Port"
@@ -5005,47 +5056,6 @@ msgstr "Desa"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "El factor de l'escala és massa petit per posar l'esquema en una pàgina"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Cerca a la base de dades"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Camp interior:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "A la(les) taula(es):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Paraula(es) o valor(s) a cercar (comodí: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "al menys una d'aquestes paraules"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "Totes les paraules"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "La frase exacta"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "com a expressió regular"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Resultats de la recerca per a \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Trobat:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5894,7 +5904,7 @@ msgstr "Tot Petit/Gran"
msgid "Snap to grid"
msgstr "Alinia a la graella"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Sòcol"
@@ -5910,10 +5920,6 @@ msgstr "Utilització d'espai"
msgid "Spanish"
msgstr "Espanyol"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Paraules separades per un espai (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Tipus d' Exportació"
@@ -6043,7 +6049,7 @@ msgstr "Suec"
msgid "Switch to copied table"
msgstr "Canvia a una taula copiada"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6627,7 +6633,7 @@ msgstr "El nom d'usuari és buit!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nom d'usuari"
@@ -6879,17 +6885,17 @@ msgstr ""
"a més informació sobre l'estat de replicació al servidor, mira la secció "
"<ahref=\"#replication\">replicació</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Connexió insegura"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/cs.po b/po/cs.po
index d23a460..d92f760 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-05-06 07:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
@@ -47,7 +47,7 @@ msgstr "Vyhledávání"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -65,7 +65,7 @@ msgstr "Vyhledávání"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -198,11 +198,13 @@ msgstr "Vytisknout"
msgid "View dump (schema) of database"
msgstr "Export databáze"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Vybrat vše"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Odznačit vše"
@@ -497,14 +499,85 @@ msgstr "SQL dotaz na databázi <b>%s</b>:"
msgid "Submit Query"
msgstr "Provést dotaz"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Přístup odepřen"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "alespoň jedno ze slov"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "všechna slova"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "přesnou frázi"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "jako regulární výraz"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Výsledky vyhledávání pro „<i>%s</i>“ %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s odpovídající(ch) záznam(ů) v tabulce <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Projít"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Odstranit"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Celkem:</b> <i>%s</i> odpovídající(ch) záznam(ů)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Vyhledávání v databázi"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Najít:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Slova jsou oddělena mezerou („ “)."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "V tabulkách:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Uvnitř pole:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -670,8 +743,8 @@ msgstr "Sledované tabulky"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Databáze"
@@ -1005,13 +1078,6 @@ msgstr "Sekundy"
msgid "Cannot connect: invalid settings."
msgstr "Nepodařilo se připojit: chybné nastavení."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Přístup odepřen"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1462,7 +1528,7 @@ msgstr "Žádné heslo"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Heslo"
@@ -1753,14 +1819,6 @@ msgstr "Spustit oblíbený dotaz"
msgid "The row has been deleted"
msgstr "Řádek byl smazán"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Odstranit"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2148,7 +2206,7 @@ msgstr "Struktura tabulky"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Počítač"
@@ -3007,6 +3065,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databáze byla úspěšně zrušena."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Zdrojová databáze"
@@ -3033,6 +3092,7 @@ msgstr ""
"provozu mezi webserverem a MySQL serverem."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Cílová databáze"
@@ -3753,7 +3813,8 @@ msgstr "Vyrovnávací paměť klíčů"
msgid "Korean"
msgstr "Korejština"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznámý jazyk: %1$s."
@@ -3975,7 +4036,7 @@ msgid "Show processes"
msgstr "Zobrazit procesy"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Žádné databáze"
@@ -4084,16 +4145,6 @@ msgstr "Žádný uživatel nenalezen."
msgid "Number of tables"
msgstr "Počet tabulek"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s odpovídající(ch) záznam(ů) v tabulce <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Celkem:</b> <i>%s</i> odpovídající(ch) záznam(ů)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4246,7 +4297,7 @@ msgid "Polish"
msgstr "Polština"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Port"
@@ -4907,47 +4958,6 @@ msgstr "Uložit"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Měřítko je příliš malé, aby se schéma vešlo na jednu stránku"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Vyhledávání v databázi"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Uvnitř pole:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "V tabulkách:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Slova nebo hodnoty, které chcete vyhledat (zástupný znak: „%“):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "alespoň jedno ze slov"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "všechna slova"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "přesnou frázi"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "jako regulární výraz"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Výsledky vyhledávání pro „<i>%s</i>“ %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Najít:"
-
#: libra
ries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5769,7 +5779,7 @@ msgstr "Vše malé/velké"
msgid "Snap to grid"
msgstr "Zachytávat na mřížku"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Socket"
@@ -5785,10 +5795,6 @@ msgstr "Využití místa"
msgid "Spanish"
msgstr "Španělština"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Slova jsou oddělena mezerou („ “)."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Typ vytvořených dotazů"
@@ -5917,7 +5923,7 @@ msgstr "Švédština"
msgid "Switch to copied table"
msgstr "Přepnout na zkopírovanou tabulku"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6500,7 +6506,7 @@ msgstr "Jméno uživatele je prázdné!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Jméno uživatele"
@@ -6727,15 +6733,15 @@ msgstr ""
"Pro více informací o stavu replikace se podívejte do <a href=\"#replication"
"\">sekce replikace</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr "Zadat ručně"
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr "Současné připojení"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr "Konfigurace: %s"
diff --git a/po/da.po b/po/da.po
index 24ad08c..5b0f8b4 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Søg"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Søg"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Print"
msgid "View dump (schema) of database"
msgstr "Vis dump (skema) af database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Vælg alle"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Fravælg alle"
@@ -500,14 +502,85 @@ msgstr "SQL-forespørgsel til database <b>%s</b>:"
msgid "Submit Query"
msgstr "Send forespørgsel"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Adgang Nægtet"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "mindst et af ordene"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "alle ordene"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "den nøjagtige sætning"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "som regulært udtryk"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Søgeresultater for \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s hit(s) i tabel <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Vis"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Slet"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> hit(s)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Søg i databasen"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Ord eller værdi(er) (jokertegn: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Find:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Ord adskilles af mellemrums-karakter (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Indeni tabel(ler):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -672,8 +745,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Database"
@@ -1056,13 +1129,6 @@ msgstr "pr. sekund"
msgid "Cannot connect: invalid settings."
msgstr "Kan ikke forbinde: ugyldige indstillinger."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Adgang Nægtet"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1514,7 +1580,7 @@ msgstr "Intet kodeord"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Kodeord"
@@ -1806,14 +1872,6 @@ msgstr "Udfør forespørgsel iflg. bogmærke"
msgid "The row has been deleted"
msgstr "Rækken er slettet!"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Slet"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2178,7 +2236,7 @@ msgstr "Struktur-dump for tabellen"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Vært"
@@ -3032,6 +3090,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databaser er blevet droppet korrekt."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -3058,6 +3117,7 @@ msgstr ""
"mellem webserveren og MySQL-serveren."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3774,7 +3834,8 @@ msgstr "Nøglemellemlager (key cache)"
msgid "Korean"
msgstr "Koreansk"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ukendt sprog: %1$s."
@@ -3998,7 +4059,7 @@ msgid "Show processes"
msgstr "Vis tråde"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Ingen databaser"
@@ -4110,16 +4171,6 @@ msgstr "Ingen bruger(e) fundet."
msgid "Number of tables"
msgstr "Antal tabeller"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s hit(s) i tabel <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> hit(s)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4267,7 +4318,7 @@ msgid "Polish"
msgstr "Polsk"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4910,47 +4961,6 @@ msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
"Skaleringsfaktoren er for lille til at tilpasse skematikken til en side"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Søg i databasen"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Indeni tabel(ler):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Ord eller værdi(er) (jokertegn: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "mindst et af ordene"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "alle ordene"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "den nøjagtige sætning"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "som regulært udtryk"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Søgeresultater for \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Find:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5786,7 +5796,7 @@ msgstr "Små/store alle"
msgid "Snap to grid"
msgstr "Snap til gitter"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5802,10 +5812,6 @@ msgstr "Pladsforbrug"
msgid "Spanish"
msgstr "Spansk"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Ord adskilles af mellemrums-karakter (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Eksporttype"
@@ -5934,7 +5940,7 @@ msgstr "Svensk"
msgid "Switch to copied table"
msgstr "Skift til den kopierede tabel"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6515,7 +6521,7 @@ msgstr "Intet brugernavn!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Brugernavn"
@@ -6747,17 +6753,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "maks. samtidige forbindelser"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/de.po b/po/de.po
index de16801..f1e4cfa 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-23 21:07+0200\n"
"Last-Translator: <me(a)michaelkeck.de>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Suche"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Suche"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Drucken"
msgid "View dump (schema) of database"
msgstr "Dump (Schema) der Datenbank anzeigen"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Alle auswählen"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Auswahl entfernen"
@@ -502,14 +504,85 @@ msgstr " SQL-Befehl in der Datenbank <b>%s</b>:"
msgid "Submit Query"
msgstr "SQL-Befehl ausführen"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Zugriff verweigert."
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "mindestens eines der Wörter"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "alle Wörter"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "genau diese Zeichenkette"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "als regulären Ausdruck"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Suchergebnisse für \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s Treffer in der Tabelle <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Anzeigen"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Löschen"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Insgesamt</b> <i>%s</i> Treffer"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Durchsuche die Datenbank"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Finde:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "In der / den Tabelle(n):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Im Feld:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -677,8 +750,8 @@ msgstr "Verfolgte Tabellen"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Datenbank"
@@ -1067,13 +1140,6 @@ msgstr ""
"Die Verbindung konnte aufgrund von ungültigen Einstellungen nicht "
"hergestellt werden."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Zugriff verweigert."
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1542,7 +1608,7 @@ msgstr "Kein Passwort"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Passwort"
@@ -1837,14 +1903,6 @@ msgstr "Gespeicherte SQL-Anfrage ausführen"
msgid "The row has been deleted"
msgstr "Die Zeile wurde gelöscht."
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Löschen"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2235,7 +2293,7 @@ msgstr "Tabellenstruktur für Tabelle"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3105,6 +3163,7 @@ msgstr "Es wurden %s Datenbanken gelöscht."
# source != search / Source != Suche
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Quell-Datenbank"
@@ -3131,6 +3190,7 @@ msgstr ""
"Traffic zwischen dem Web- und dem MySQL-Server zur Folge haben."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Durchsuche die Datenbank"
@@ -3860,7 +3920,8 @@ msgstr "Schlüssel-Cache"
msgid "Korean"
msgstr "Koreanisch"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unbekannte Sprache: \"%1$s\"."
@@ -4086,7 +4147,7 @@ msgid "Show processes"
msgstr "Prozesse anzeigen"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Keine Datenbanken"
@@ -4198,16 +4259,6 @@ msgstr "Es wurden keine Benutzer gefunden."
msgid "Number of tables"
msgstr "Anzahl Tabellen"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s Treffer in der Tabelle <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Insgesamt</b> <i>%s</i> Treffer"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4356,7 +4407,7 @@ msgid "Polish"
msgstr "Polnisch"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sortierung"
@@ -5022,47 +5073,6 @@ msgstr ""
"Der Skalierungsfaktor ist zu klein, sodass das Schema nicht auf eine Seite "
"passt!"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Durchsuche die Datenbank"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Im Feld:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "In der / den Tabelle(n):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Zu suchende Wörter oder Werte (Platzhalter: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "mindestens eines der Wörter"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "alle Wörter"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "genau diese Zeichenkette"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "als regulären Ausdruck"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Suchergebnisse für \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Finde:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5923,7 +5933,7 @@ msgstr "Alles klein/groß"
msgid "Snap to grid"
msgstr "Am Gitter anordnen"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5939,10 +5949,6 @@ msgstr "Speicherplatzverbrauch"
msgid "Spanish"
msgstr "Spanisch"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Die Wörter werden durch Leerzeichen (\" \") getrennt."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Exporttyp"
@@ -6078,7 +6084,7 @@ msgstr "Schwedisch"
msgid "Switch to copied table"
msgstr "Zur kopierten Tabelle wechseln"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6670,7 +6676,7 @@ msgstr "Kein Benutzername eingegeben!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Benutzername"
@@ -6910,17 +6916,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Unsichere Verbindung"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration"
msgid "Configuration: %s"
diff --git a/po/el.po b/po/el.po
index d6d134f..f6ce32a 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Αναζήτηση"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Αναζήτηση"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Εκτύπωση"
msgid "View dump (schema) of database"
msgstr "Εμφάνιση σχήματος της βάσης δεδομένων"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Επιλογή όλων"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Απεπιλογή όλων"
@@ -502,14 +504,85 @@ msgstr "Εντολή SQL στη βάση <b>%s</b>:"
msgid "Submit Query"
msgstr "Υποβολή ερωτήματος"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Άρνηση Πρόσβασης"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "τουλάχιστον έναν από τους όρους"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "όλους τους όρους"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "την ακριβή φράση"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "ως κανονική έκφραση"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Αποτελέσματα αναζήτησης για «<i>%s</i>» %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s αποτελέσματα στον πίνακα <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Περιήγηση"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Διαγραφή"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Σύνολο:</b> <i>%s</i> αποτελέσματα"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Αναζήτηση στη βάση"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Όροι ή τιμές για αναζήτηση (μπαλαντέρ: «%»):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Έυρεση:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Μέσα στους πίνακες:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Εσωτερικό πεδίο:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -677,8 +750,8 @@ msgstr "Παρακολουθούμενοι πίνακες"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Βάση"
@@ -1064,13 +1137,6 @@ msgstr "ανά δευτερόλεπτο"
msgid "Cannot connect: invalid settings."
msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Άρνηση Πρόσβασης"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1531,7 +1597,7 @@ msgstr "Χωρίς Κωδικό Πρόσβασης"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Κωδικός Πρόσβασης"
@@ -1828,14 +1894,6 @@ msgstr "Εκτέλεση αποθηκευμένου ερωτήματος"
msgid "The row has been deleted"
msgstr "Η Εγγραφή έχει διαγραφεί"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Διαγραφή"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2234,7 +2292,7 @@ msgstr "Δομή Πίνακα για τον Πίνακα"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Σύστημα"
@@ -3095,6 +3153,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s βάσεις δεδομένων διεγράφησαν επιτυχώς."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Βάση δεδομένων προέλευσης"
@@ -3121,6 +3180,7 @@ msgstr ""
"δεδομένων μεταξύ του διακομιστή ιστού και του διακομιστή MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Βάση δεδομένων προορισμού"
@@ -3852,7 +3912,8 @@ msgstr "Λανθάνουσα μνήμη κλειδιού"
msgid "Korean"
msgstr "Κορεατικά"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Άγνωστη γλώσσα: %1$s."
@@ -4078,7 +4139,7 @@ msgid "Show processes"
msgstr "Εμφάνιση διεργασιών"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Δεν υπάρχουν βάσεις δεδομένων"
@@ -4190,16 +4251,6 @@ msgstr "Δεν βρέθηκαν χρήστες."
msgid "Number of tables"
msgstr "Αριθμός πινάκων"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s αποτελέσματα στον πίνακα <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Σύνολο:</b> <i>%s</i> αποτελέσματα"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4347,7 +4398,7 @@ msgid "Polish"
msgstr "Πολωνικά"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Θύρα"
@@ -5028,47 +5079,6 @@ msgstr "Αποθήκευση"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Η κλίμακα είναι πολύ μικρή για να εμφανιστεί το σχήμα σε μία σελίδα"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Αναζήτηση στη βάση"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Εσωτερικό πεδίο:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Μέσα στους πίνακες:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Όροι ή τιμές για αναζήτηση (μπαλαντέρ: «%»):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "τουλάχιστον έναν από τους όρους"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "όλους τους όρους"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "την ακριβή φράση"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "ως κανονική έκφραση"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Αποτελέσματα αναζήτησης για «<i>%s</i>» %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Έυρεση:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5946,7 +5956,7 @@ msgstr "Όλα Μικρά/Μεγάλα"
msgid "Snap to grid"
msgstr "Συγκράτηση στο πλέγμα"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Υποδοχή"
@@ -5962,10 +5972,6 @@ msgstr "Χρήση χώρου"
msgid "Spanish"
msgstr "Ισπανικά"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Οι λέξεις χωρίζονται από τον χαρακτήρα διαστήματος (« »)."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Τύπος εξαγωγής"
@@ -6096,7 +6102,7 @@ msgstr "Σουηδικά"
msgid "Switch to copied table"
msgstr "Μεταφορά στον αντεγραμμένο πίνακα"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6693,7 +6699,7 @@ msgstr "Το όνομα του χρήστη είναι κενό!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Όνομα χρήστη"
@@ -6951,17 +6957,17 @@ msgstr ""
"b>. Για περισσότερες πληροφορίες για την κατάσταση αναπαραγωγής στο "
"διακομιστή, επισκευτείτε τον <a href=\"#replication\">τομέα αναπαραγωγής</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Μη ασφαλής σύνδεση"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/en_GB.po b/po/en_GB.po
index 487b010..1cc80fc 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-05-04 11:46+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Search"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Search"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Print"
msgid "View dump (schema) of database"
msgstr "View dump (schema) of database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Select All"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Unselect All"
@@ -496,14 +498,85 @@ msgstr "SQL query on database <b>%s</b>:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Access denied"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "at least one of the words"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "all words"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "the exact phrase"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "as regular expression"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Search results for \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s match(es) inside table <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Browse"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Delete"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> match(es)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Search in database"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Find:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Words are separated by a space character (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Inside table(s):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Inside field:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -670,8 +743,8 @@ msgstr "Tracked tables"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Database"
@@ -1005,13 +1078,6 @@ msgstr "Second"
msgid "Cannot connect: invalid settings."
msgstr "Cannot connect: invalid settings."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Access denied"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1460,7 +1526,7 @@ msgstr "No Password"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Password"
@@ -1748,14 +1814,6 @@ msgstr "Execute bookmarked query"
msgid "The row has been deleted"
msgstr "The row has been deleted"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Delete"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2146,7 +2204,7 @@ msgstr "Table structure for table"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3002,6 +3060,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databases have been dropped successfully."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Source database"
@@ -3028,6 +3087,7 @@ msgstr ""
"between the web server and the MySQL server."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Target database"
@@ -3753,7 +3813,8 @@ msgstr "Key cache"
msgid "Korean"
msgstr "Korean"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Unknown language: %1$s."
@@ -3977,7 +4038,7 @@ msgid "Show processes"
msgstr "Show processes"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "No databases"
@@ -4088,16 +4149,6 @@ msgstr "No user(s) found."
msgid "Number of tables"
msgstr "Number of tables"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s match(es) inside table <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> match(es)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4248,7 +4299,7 @@ msgid "Polish"
msgstr "Polish"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Port"
@@ -4909,47 +4960,6 @@ msgstr "Save"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "The scale factor is too small to fit the schema on one page"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Search in database"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Inside field:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Inside table(s):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "at least one of the words"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "all words"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "the exact phrase"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "as regular expression"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Search results for \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Find:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5779,7 +5789,7 @@ msgstr "Small/Big All"
msgid "Snap to grid"
msgstr "Snap to grid"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Socket"
@@ -5795,10 +5805,6 @@ msgstr "Space usage"
msgid "Spanish"
msgstr "Spanish"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Words are separated by a space character (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Export type"
@@ -5927,7 +5933,7 @@ msgstr "Swedish"
msgid "Switch to copied table"
msgstr "Switch to copied table"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6511,7 +6517,7 @@ msgstr "The user name is empty!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "User name"
@@ -6738,15 +6744,15 @@ msgstr ""
"For further information about replication status on the server, please visit "
"the <a href=#replication>replication section</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr "Enter manually"
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr "Current connection"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr "Configuration: %s"
diff --git a/po/es.po b/po/es.po
index e656cc4..2def997 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Buscar"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Buscar"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Imprimir"
msgid "View dump (schema) of database"
msgstr "Ver el volcado esquema de la base de datos"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Seleccionar todo"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Deseleccionar todo"
@@ -502,14 +504,85 @@ msgstr "Consulta a la base de datos <b>%s</b>:"
msgid "Submit Query"
msgstr "Ejecutar la consulta"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Acceso denegado "
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "al menos una de estas palabras"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "Todas las palabras"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "La frase exacta"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "como expresión regular"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Resultados de la búsqueda por \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s resultado(s) en la tabla <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Examinar"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Borrar"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Buscar en la base de datos"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Palabra(s) o valor(es) a buscar (comodín: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Encontrado:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Palabras separadas por un espacio (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "En la(s) tabla(s):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Dentro del campo:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -678,8 +751,8 @@ msgstr "Saltarse las tablas bloqueadas"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Base de datos"
@@ -1070,13 +1143,6 @@ msgstr "por segundo"
msgid "Cannot connect: invalid settings."
msgstr "No se estableció la conexión: los parámetros están incorrectos."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Acceso denegado "
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1536,7 +1602,7 @@ msgstr "Sin contraseña"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Contraseña"
@@ -1831,14 +1897,6 @@ msgstr "Ejecute la consulta marcada previamente"
msgid "The row has been deleted"
msgstr "La fila se ha borrado"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Borrar"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2242,7 +2300,7 @@ msgstr "Estructura de tabla para la tabla"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Servidor"
@@ -3118,6 +3176,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s bases de datos han sido eliminadas exitosamente."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Buscar en la base de datos"
@@ -3145,6 +3204,7 @@ msgstr ""
"tráfico pesado entre el servidor web y el servidor MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Buscar en la base de datos"
@@ -3879,7 +3939,8 @@ msgstr "Cache principal"
msgid "Korean"
msgstr "Coreano"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Idioma desconocido: %1$s."
@@ -4105,7 +4166,7 @@ msgid "Show processes"
msgstr "Mostrar procesos"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "No hay bases de datos"
@@ -4218,16 +4279,6 @@ msgstr "Usuario(s) no encontrado(s)."
msgid "Number of tables"
msgstr "Número de tablas"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s resultado(s) en la tabla <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4376,7 +4427,7 @@ msgid "Polish"
msgstr "Polaco"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Ordenar"
@@ -5043,47 +5094,6 @@ msgstr ""
"El factor de la escala es demasiado pequeño para poner el esquema en una "
"página"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Buscar en la base de datos"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Dentro del campo:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "En la(s) tabla(s):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Palabra(s) o valor(es) a buscar (comodín: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "al menos una de estas palabras"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "Todas las palabras"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "La frase exacta"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "como expresión regular"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Resultados de la búsqueda por \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Encontrado:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5943,7 +5953,7 @@ msgstr "Pequeño/grande todos"
msgid "Snap to grid"
msgstr "Cuadrícula magnética"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5959,10 +5969,6 @@ msgstr "Espacio utilizado"
msgid "Spanish"
msgstr "Español"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Palabras separadas por un espacio (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Tipo de exportación"
@@ -6098,7 +6104,7 @@ msgstr "Sueco"
msgid "Switch to copied table"
msgstr "Cambiar (switch) a la tabla copiada"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6689,7 +6695,7 @@ msgstr "¡El nombre de usuario está vacío!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nombre de usuario"
@@ -6930,17 +6936,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "C
urrent connection"
msgstr "Conexión insegura"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/et.po b/po/et.po
index d273b86..c964bdd 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Otsi"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Otsi"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Prindi"
msgid "View dump (schema) of database"
msgstr "Vaata andmebaasi väljundit (skeemi)"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Märgista kõik"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Puhasta kõik"
@@ -501,14 +503,85 @@ msgstr "SQL-päring andmebaasist <b>%s</b>:"
msgid "Submit Query"
msgstr "Lae päring"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Ligipääs keelatud"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "vähemalt üks sõnadest"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "kõik sõnadest"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "täpne fraas"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "regulaaravaldisena"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Otsingu tulemused \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s vaste(t) tabelis <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Vaata"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Kustuta"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Kokku:</b> <i>%s</i> vaste(t)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Otsi andmebaasist"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Sõna(d) või väärtus(ed) otsinguks (lühend: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Leia:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Sõnad on eraldatud tühikuga (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Otsi tabeli(te)st:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -674,8 +747,8 @@ msgstr "Kontrolli tabelit"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Andmebaas"
@@ -1063,13 +1136,6 @@ msgstr "sekundis"
msgid "Cannot connect: invalid settings."
msgstr "Ei saa ühendust: vigased seaded."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Ligipääs keelatud"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1521,7 +1587,7 @@ msgstr "Ilma paroolita"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Parool"
@@ -1813,14 +1879,6 @@ msgstr "Käivita salvestatud päring"
msgid "The row has been deleted"
msgstr "Rida kustutatud"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Kustuta"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2187,7 +2245,7 @@ msgstr "Struktuur tabelile"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Masin"
@@ -3048,6 +3106,7 @@ msgid "%s databases have been dropped successfully."
msgstr "andmebaasid %s kustutati õnnestunult."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Otsi andmebaasist"
@@ -3075,6 +3134,7 @@ msgstr ""
"liikuse webiserveri ja MySQL-i vahel."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Otsi andmebaasist"
@@ -3796,7 +3856,8 @@ msgstr "Võtme vahemälu"
msgid "Korean"
msgstr "Korea"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Tundmatu keel: %1$s."
@@ -4016,7 +4077,7 @@ msgid "Show processes"
msgstr "Näita protsesse"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Pole andmebaase"
@@ -4127,16 +4188,6 @@ msgstr "Ei leitud ühtegi kasutajat."
msgid "Number of tables"
msgstr "Tabelite arv"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s vaste(t) tabelis <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Kokku:</b> <i>%s</i> vaste(t)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4287,7 +4338,7 @@ msgid "Polish"
msgstr "Poola"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sorteeri"
@@ -4937,47 +4988,6 @@ msgstr "Salvesta"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Skalaarfaktor on liiga väike, et skeem mahuks ühele lehele."
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Otsi andmebaasist"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Otsi tabeli(te)st:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Sõna(d) või väärtus(ed) otsinguks (lühend: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "vähemalt üks sõnadest"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "kõik sõnadest"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "täpne fraas"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "regulaaravaldisena"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Otsingu tulemused \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Leia:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfiguratsioonifail nõuab nüüd salajast võtmesõna (blowfish_secret)."
@@ -5797,7 +5807,7 @@ msgstr "Kõik Väikeseks/Suureks"
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5813,10 +5823,6 @@ msgstr "Ruumivõtt"
msgid "Spanish"
msgstr "Hispaania"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Sõnad on eraldatud tühikuga (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Ekspordi tüüp"
@@ -5947,7 +5953,7 @@ msgstr "Rootsi"
msgid "Switch to copied table"
msgstr "Mine üle kopeeritud tabelile"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6528,7 +6534,7 @@ msgstr "Kasutajanimi on tühi!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Kasutajanimi"
@@ -6766,17 +6772,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "maks. parallel ühendusi"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/eu.po b/po/eu.po
index 37408c2..f77de94 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: <hey_neken(a)mundurat.net>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Bilatu"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Bilatu"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Inprimatu"
msgid "View dump (schema) of database"
msgstr "Ikusi datu-basearen iraulketa (eskema)"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Dena hautatu"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Desautatu dena"
@@ -506,14 +508,85 @@ msgstr "SQL-kontsulta <b>%s</b> datu-basean:"
msgid "Submit Query"
msgstr "Kontsulta bidali"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Sarbidea ukatua"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "hitz hauetariko bat gutxienez"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "hitz guztiak"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "esaldi zehatza"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "adierazpen erregular moduan"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Bilaketaren emaitzak: \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s emaitza(k) <i>%s</i> taulan"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Arakatu"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Ezabatu"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Guztira:</b> <i>%s</i> emaitza(k)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Datu-basean bilatu"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Aurkitu:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Hitzak \"zuriune\" karakterrarekin bereiztuta daude (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Taul(ar)en barnean:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -679,8 +752,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Datu-basea"
@@ -1069,13 +1142,6 @@ msgstr "segunduko"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Sarbidea ukatua"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1521,7 +1587,7 @@ msgstr "Pasahitzik ez"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Pasahitza"
@@ -1809,14 +1875,6 @@ msgstr "Exekutatu aurretik aukeratutako kontsulta"
msgid "The row has been deleted"
msgstr "Errenkada ezabatua izan da"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Ezabatu"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2166,7 +2224,7 @@ msgstr "Taularen egitura taula honentzat: "
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Zerbitzaria"
@@ -3030,6 +3088,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s datu-base arrakastaz ezabatu dira."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Datu-basean bilatu"
@@ -3057,6 +3116,7 @@ msgstr ""
"MySQL-arenaren arteko trafiko handia sor liteke."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Datu-basean bilatu"
@@ -3777,7 +3837,8 @@ msgstr ""
msgid "Korean"
msgstr "Koreera"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3993,7 +4054,7 @@ msgid "Show processes"
msgstr "Erakutsi prozesuak"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Datu-baserik ez"
@@ -4099,16 +4160,6 @@ msgstr "Ez da erabiltzailerik aurkitu."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s emaitza(k) <i>%s</i> taulan"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Guztira:</b> <i>%s</i> emaitza(k)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4260,7 +4311,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Ordenatu"
@@ -4922,47 +4973,6 @@ msgstr "Gorde"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Eskalaren faktorea txikiegia da eskema orri bakar batean azaltzeko"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Datu-basean bilatu"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Taul(ar)en barnean:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Bilaketa egiteko hitza(k) edo balioa(k) (komodina: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "hitz hauetariko bat gutxienez"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "hitz guztiak"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "esaldi zehatza"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "adierazpen erregular moduan"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Bilaketaren emaitzak: \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Aurkitu:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5688,7 +5698,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5705,10 +5715,6 @@ msgstr "Erabilitako lekua"
msgid "Spanish"
msgstr "Danesa"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Hitzak \"zuriune\" karakterrarekin bereiztuta daude (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Esportazio mota"
@@ -5836,7 +5842,7 @@ msgstr "Suediera"
msgid "Switch to copied table"
msgstr "Kopiatutako taulara aldatu"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6402,7 +6408,7 @@ msgstr "Erabiltzailearen izena hutsik dago!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Erabiltzaile-izena"
@@ -6632,17 +6638,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Konexioak"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/fa.po b/po/fa.po
index 28cb133..17036b0 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: persian <fa(a)li.org>\n"
@@ -41,7 +41,7 @@ msgstr "جستجو"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -59,7 +59,7 @@ msgstr "جستجو"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -193,11 +193,13 @@ msgstr "چاپ"
msgid "View dump (schema) of database"
msgstr "نمايش الگوي پايگاه داده"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "انتخاب همه"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "عدم انتخاب همه"
@@ -503,14 +505,85 @@ msgstr "پرس و جوي SQL از پايگاه داده <b>%s</b>:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "دسترسي مجاز نيست"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "حداقل يكي از كلمات"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "تمامي كلمات"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "عبارت كامل"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "بعنوان مبين منظم(as regular expression)"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "نتيجه جستجوي \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr ""
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "مشاهده"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "حذف"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr ""
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "جستجو در پايگاهداده"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "نوع جستجو :"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "كلمات با علامت فاصله (\" \") جدا ميشوند."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "در جدول(هاي) :"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "پايگاه داده"
@@ -1063,13 +1136,6 @@ msgstr "در ثانیه"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "دسترسي مجاز نيست"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1509,7 +1575,7 @@ msgstr "بدون اسم رمز"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "اسم رمز"
@@ -1797,14 +1863,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr "سطر حذف گرديد ."
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "حذف"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2153,7 +2211,7 @@ msgstr ""
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "ميزبان"
@@ -3013,6 +3071,7 @@ msgid "%s databases have been dropped successfully."
msgstr ""
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "جستجو در پايگاهداده"
@@ -3040,6 +3099,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "جستجو در پايگاهداده"
@@ -3746,7 +3806,8 @@ msgstr ""
msgid "Korean"
msgstr "کرهای"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "زبانِ ناشناس : %1$s."
@@ -3960,7 +4021,7 @@ msgid "Show processes"
msgstr "نمايش فرايندها"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "No databases"
@@ -4067,16 +4128,6 @@ msgstr "هيچ كاربري وچود ندارد."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr ""
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr ""
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4228,7 +4279,7 @@ msgid "Polish"
msgstr "لهستانی"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "ترتيب"
@@ -4865,47 +4916,6 @@ msgstr "ذخيره"
msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "جستجو در پايگاهداده"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "در جدول(هاي) :"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "كلمه(ها) يا مقدار(ها) براي جستجو (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "حداقل يكي از كلمات"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "تمامي كلمات"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "عبارت كامل"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "بعنوان مبين منظم(as regular expression)"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "نتيجه جستجوي \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "نوع جستجو :"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5628,7 +5638,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5644,10 +5654,6 @@ msgstr "فضاي استفادهشده"
msgid "Spanish"
msgstr "اسپانیایی"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "كلمات با علامت فاصله (\" \") جدا ميشوند."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5763,7 +5769,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr ""
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6302,7 +6308,7 @@ msgstr "نام كاربر خالي است!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "نام كاربر"
@@ -6529,15 +6535,15 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr ""
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index fa9d9c0..b8aff75 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: <kajouni(a)gmail.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Etsi"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Etsi"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Tulosta"
msgid "View dump (schema) of database"
msgstr "Tee vedos tietokannasta"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Valitse kaikki"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Poista valinta kaikista"
@@ -502,14 +504,85 @@ msgstr "Suorita SQL-kysely tietokannassa <b>%s</b>:"
msgid "Submit Query"
msgstr "Suorita"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Käyttö estetty"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "vähintään yksi sanoista"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "kaikki sanat"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "koko lause"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "regexp-haku"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Tulokset hakusanalla \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s hakutulosta taulussa <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Selaa"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Poista"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Yhteensä:</b> <i>%s</i> hakutulosta"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Hae tietokannasta"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Haettavat sanat tai arvot (%-merkkiä voi käyttää jokerimerkkinä):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Hae:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Sanat erotetaan välilyönnein."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Tauluista:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Kentän sisältä:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -676,8 +749,8 @@ msgstr "Seurattavat taulut"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Tietokanta"
@@ -1061,13 +1134,6 @@ msgstr "sekunnissa"
msgid "Cannot connect: invalid settings."
msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Käyttö estetty"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1522,7 +1588,7 @@ msgstr "Ei salasanaa"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Salasana"
@@ -1819,14 +1885,6 @@ msgstr "Suorita kysely kirjanmerkeistä"
msgid "The row has been deleted"
msgstr "Rivi on poistettu"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Poista"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2216,7 +2274,7 @@ msgstr "Rakenne taululle"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Palvelin"
@@ -3083,6 +3141,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s tietokantaa poistettiin onnistuneesti."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Lähdetietokanta"
@@ -3109,6 +3168,7 @@ msgstr ""
"runsaasti liikennettä Internet-palvelimen ja MySQL-palvelimen välille."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Kohdetietokanta"
@@ -3830,7 +3890,8 @@ msgstr "Avainvälimuisti"
msgid "Korean"
msgstr "Korealainen"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Tuntematon kieli: %1$s."
@@ -4052,7 +4113,7 @@ msgid "Show processes"
msgstr "Näytä prosessit"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Ei tietokantoja"
@@ -4161,16 +4222,6 @@ msgstr "Käyttäjiä ei ole."
msgid "Number of tables"
msgstr "Taulujen määrä"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s hakutulosta taulussa <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Yhteensä:</b> <i>%s</i> hakutulosta"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4319,7 +4370,7 @@ msgid "Polish"
msgstr "Puolalainen"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Port"
@@ -4989,47 +5040,6 @@ msgstr "Tallenna"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Kaavio ei mahdu yhdelle sivulle tässä mittakaavassa"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Hae tietokannasta"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Kentän sisältä:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Tauluista:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Haettavat sanat tai arvot (%-merkkiä voi käyttää jokerimerkkinä):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "vähintään yksi sanoista"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "kaikki sanat"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "koko lause"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "regexp-haku"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Tulokset hakusanalla \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Hae:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Asetustiedosto vaatii nyt salalausetta (blowfish_secret)."
@@ -5883,7 +5893,7 @@ msgstr "Kaikki pienenä/suurena"
msgid "Snap to grid"
msgstr "Sovita ruudukkoon"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Pistoke"
@@ -5899,10 +5909,6 @@ msgstr "Levytilan käyttö"
msgid "Spanish"
msgstr "Espanjalainen"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Sanat erotetaan välilyönnein."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Vientityyppi"
@@ -6030,7 +6036,7 @@ msgstr "Ruotsalainen"
msgid "Switch to copied table"
msgstr "Siirry kopioituun tauluun"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6616,7 +6622,7 @@ msgstr "Käyttäjän nimi puuttuu!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Käyttäjänimi"
@@ -6865,17 +6871,17 @@ msgstr ""
"palvelimen replikaatiotilasta lisää tietoja kohdasta <a href=\"#replication"
"\">Replikaatio</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Salaamaton yhteys"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/fr.po b/po/fr.po
index 97e697a..6a2b864 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-05-04 16:34+0200\n"
"Last-Translator: Marc <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Rechercher"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Rechercher"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Imprimer"
msgid "View dump (schema) of database"
msgstr "Schéma et données de la base"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Tout sélectionner"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Tout désélectionner"
@@ -496,14 +498,85 @@ msgstr "Requête SQL sur la base <b>%s</b>:"
msgid "Submit Query"
msgstr "Exécuter la requête"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Accès refusé"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "au moins un mot"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "tous les mots"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "phrase exacte"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "expression réguliére"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Résultats de la recherche de \"<i>%s</i>\" %s :"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s occurence(s) dans la table <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Afficher"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Effacer"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total :</b> <i>%s</i> occurence(s)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Effectuer une nouvelle recherche dans la base de données"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Mot ou Valeur à rechercher (passe-partout: «%») :"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Type de recherche :"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Séparer les mots par un espace (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Dans la(les) table(s) :"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Dans la colonne:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -670,8 +743,8 @@ msgstr "Tables faisant l'objet d'un suivi"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Base de données"
@@ -1007,13 +1080,6 @@ msgstr "Seconde"
msgid "Cannot connect: invalid settings."
msgstr "Connexion impossible: réglages incorrects."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Accès refusé"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1472,7 +1538,7 @@ msgstr "aucun mot de passe"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Mot de passe"
@@ -1761,14 +1827,6 @@ 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:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Effacer"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2167,7 +2225,7 @@ msgstr "Structure de la table"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Serveur"
@@ -3030,6 +3088,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s bases de données ont été supprimées."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Base de données source"
@@ -3056,6 +3115,7 @@ msgstr ""
"serveur web et le serveur MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Base de données cible"
@@ -3785,7 +3845,8 @@ msgstr "Cache des clés"
msgid "Korean"
msgstr "coréen"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Langue inconnue: %1$s."
@@ -4011,7 +4072,7 @@ msgid "Show processes"
msgstr "Afficher les processus"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Aucune base de données"
@@ -4126,16 +4187,6 @@ msgstr "Il n'y a aucun utilisateur"
msgid "Number of tables"
msgstr "Nombre de tables"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s occurence(s) dans la table <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total :</b> <i>%s</i> occurence(s)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4289,7 +4340,7 @@ msgid "Polish"
msgstr "polonais"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Port"
@@ -4970,47 +5021,6 @@ msgstr "Sauvegarder"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Veuillez augmenter l'échelle car le schéma déborde la page"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Effectuer une nouvelle recherche dans la base de données"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Dans la colonne:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Dans la(les) table(s) :"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Mot ou Valeur à rechercher (passe-partout: «%») :"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "au moins un mot"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "tous les mots"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "phrase exacte"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "expression réguliére"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Résultats de la recherche de \"<i>%s</i>\" %s :"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Type de recherche :"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5860,7 +5870,7 @@ msgstr "Agrandir/réduire tout"
msgid "Snap to grid"
msgstr "Accrocher à la grille"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Interface de connexion (socket)"
@@ -5876,10 +5886,6 @@ msgstr "Espace utilisé"
msgid "Spanish"
msgstr "espagnol"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Séparer les mots par un espace (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Type d'exportation"
@@ -6009,7 +6015,7 @@ msgstr "suédois"
msgid "Switch to copied table"
msgstr "Aller à la table copiée"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6600,7 +6606,7 @@ msgstr "Le nom d'utilisateur est vide"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nom d'utilisateur"
@@ -6827,15 +6833,15 @@ msgstr ""
"Pour plus d'information sur l'état de la réplication sur ce serveur, "
"consultez la <a href=#replication>section de réplication</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr "Saisir manuellement"
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr "Connexion actuelle"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr "Configuration : %s"
diff --git a/po/gl.po b/po/gl.po
index fb9f426..bda3dbd 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -45,7 +45,7 @@ msgstr "Procurar"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -63,7 +63,7 @@ msgstr "Procurar"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -196,11 +196,13 @@ msgstr "Imprimir"
msgid "View dump (schema) of database"
msgstr "Ver o esquema do volcado da base de datos"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Seleccionar todo"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Non seleccionar nada"
@@ -501,14 +503,85 @@ msgstr "Procura tipo SQL na base de datos <b>%s</b>:"
msgid "Submit Query"
msgstr "Enviar esta procura"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Denegouse o acceso"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "polo menos unha das palabras"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "todas as palabras"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "a frase exacta"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "como expresión regular"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Procurar os resultados para \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s ocorrencias(s) dentro da táboa <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Visualizar"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Eliminar"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> ocorrencia(s)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Procurar na base de datos"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Palabras(s) ou valore(s) a procurar (o comodín é: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Atopar:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "As palabras divídense cun carácter de espazo (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Dentro da(s) táboa(s):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "No campo:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr "Táboas seguidas"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Base de datos"
@@ -1060,13 +1133,6 @@ msgstr "por segundo"
msgid "Cannot connect: invalid settings."
msgstr "Non se pode conectar: os axustes non son válidos."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Denegouse o acceso"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1525,7 +1591,7 @@ msgstr "Sen contrasinal"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Contrasinal"
@@ -1822,14 +1888,6 @@ msgstr "Efectuar a procura gardada"
msgid "The row has been deleted"
msgstr "Eliminouse o rexistro"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Eliminar"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2227,7 +2285,7 @@ msgstr "Estrutura da táboa"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Servidor"
@@ -3094,6 +3152,7 @@ msgid "%s databases have been dropped successfully."
msgstr "Elimináronse %s bases de datos sen problemas."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Base de datos de orixe"
@@ -3120,6 +3179,7 @@ msgstr ""
"un tráfico denso entre o servidor web e o de MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Base de datos de destino"
@@ -3845,7 +3905,8 @@ msgstr "caché da chave"
msgid "Korean"
msgstr "Coreano"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Linguaxe descoñecida: %1$s."
@@ -4068,7 +4129,7 @@ msgid "Show processes"
msgstr "Mostrar os procesos"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Non hai ningunha base de datos"
@@ -4180,16 +4241,6 @@ msgstr "Non se achou ningún usuario."
msgid "Number of tables"
msgstr "Número de táboas"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s ocorrencias(s) dentro da táboa <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> ocorrencia(s)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4338,7 +4389,7 @@ msgid "Polish"
msgstr "Polonés"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Porto"
@@ -5008,47 +5059,6 @@ msgstr ""
"O factor de redución é demasiado pequeno para que o esquema caiba nunha "
"única páxina"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Procurar na base de datos"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "No campo:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Dentro da(s) táboa(s):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Palabras(s) ou valore(s) a procurar (o comodín é: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "polo menos unha das palabras"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "todas as palabras"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "a frase exacta"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "como expresión regular"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Procurar os resultados para \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Atopar:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passp
hrase (blowfish_secret)."
msgstr ""
@@ -5899,7 +5909,7 @@ msgstr "Todo grande/pequeno"
msgid "Snap to grid"
msgstr "Axustar á grella"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Socket"
@@ -5915,10 +5925,6 @@ msgstr "Uso do espazo"
msgid "Spanish"
msgstr "Español"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "As palabras divídense cun carácter de espazo (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Tipo de exportación"
@@ -6050,7 +6056,7 @@ msgstr "Sueco"
msgid "Switch to copied table"
msgstr "Ir à táboa copiada"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6634,7 +6640,7 @@ msgstr "O nome do usuario está vacío!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nome do usuario"
@@ -6886,17 +6892,17 @@ msgstr ""
"b>. Para máis información acerca do estado de replicación do servidor visite "
"a <a href=\"#replication\">sección sobre replicación</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "A conexión non é segura"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/he.po b/po/he.po
index a6f6106..e85ea33 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -41,7 +41,7 @@ msgstr "חיפוש"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -59,7 +59,7 @@ msgstr "חיפוש"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -192,11 +192,13 @@ msgstr "הדפסה"
msgid "View dump (schema) of database"
msgstr "ראיית הוצאה (תבנית) של מאגר נתונים"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "בחירת הכל"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "בטל בחירת הכל"
@@ -498,14 +500,85 @@ msgstr ""
msgid "Submit Query"
msgstr "שליחת שאילתה"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "גישה נדתחה"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "לפחות אחת מן המילים"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "כל המילים"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "הביטוי המדוייק"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "כביטוי רגיל"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "תוצאות חיפוש עבור \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr ""
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "עיון"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "מחיקה"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>סה\"כ:</b> <i>%s</i> פריטים"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "חפש במסד הנתונים"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "מילים או ערכים עבור חיפוש (תו כללי: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "מצא:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "מילים מופרדות ע\"י תו רווח (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "בתוך הטבלה/הטבלאות:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -671,8 +744,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "מאגר נתונים"
@@ -1059,13 +1132,6 @@ msgstr "לשנייה"
msgid "Cannot connect: invalid settings."
msgstr "חיבור נכשל: הגדרות לא תקינות."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "גישה נדתחה"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1507,7 +1573,7 @@ msgstr "ללא סיסמא"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "סיסמא"
@@ -1798,14 +1864,6 @@ msgstr "הרצת שאילתה מועדפת"
msgid "The row has been deleted"
msgstr "השורה נמחקה"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "מחיקה"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2153,7 +2211,7 @@ msgstr "מבנה טבלה עבור טבלה"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "מארח"
@@ -3012,6 +3070,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s מסדי נתונים נמחקו בהצלחה."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "חפש במסד הנתונים"
@@ -3039,6 +3098,7 @@ msgstr ""
"האינטרנט לשרת MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "חפש במסד הנתונים"
@@ -3752,7 +3812,8 @@ msgstr ""
msgid "Korean"
msgstr ""
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3969,7 +4030,7 @@ msgid "Show processes"
msgstr "ראיית תהליכים"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "אין מאגרי נתונים"
@@ -4076,16 +4137,6 @@ msgstr "לא נמצאו משתמשים."
msgid "Number of tables"
msgstr "מספר שדות"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr ""
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>סה\"כ:</b> <i>%s</i> פריטים"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4237,7 +4288,7 @@ msgid "Polish"
msgstr "Polish"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "סידור"
@@ -4878,47 +4929,6 @@ msgstr "שמירה"
msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "חפש במסד הנתונים"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "בתוך הטבלה/הטבלאות:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "מילים או ערכים עבור חיפוש (תו כללי: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "לפחות אחת מן המילים"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "כל המילים"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "הביטוי המדוייק"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "כביטוי רגיל"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "תוצאות חיפוש עבור \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "מצא:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5638,7 +5648,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5654,10 +5664,6 @@ msgstr "שימוש מקום"
msgid "Spanish"
msgstr "ספרדית"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "מילים מופרדות ע\"י תו רווח (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "סוג ייצוא"
@@ -5773,7 +5779,7 @@ msgstr "שוודית"
msgid "Switch to copied table"
msgstr "מעבר לטבלה שהועתקה"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6311,7 +6317,7 @@ msgstr "שם המשתמש ריק !"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "שם משתמש"
@@ -6539,17 +6545,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "חיבורים"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 8aef881..6cc9487 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-05-05 04:47+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -45,7 +45,7 @@ msgstr "खोजें"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -63,7 +63,7 @@ msgstr "खोजें"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -196,11 +196,13 @@ msgstr "छापें"
msgid "View dump (schema) of database"
msgstr "डंप (स्कीमा) डेटाबेस दिखाएं"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "सभी का चयन करें"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr " सभी को रद्द करें"
@@ -504,14 +506,85 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "प्रवेश निषेध"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "कोई भी एक शब्द"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "सभी शब्द"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "यथार्थ वाक्यांश"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr ""
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "\"<i>%s</i>\" %s के लिये सर्च के परिणाम :"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr ""
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "ब्राउज़"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "डिलीट"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr ""
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "डाटाबेस में सर्च करें"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "खोजो:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "शब्दों में space (\" \") से अंतर करें."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr " टेबल में:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -676,8 +749,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr " डाटाबेस"
@@ -1049,13 +1122,6 @@ msgstr ""
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "प्रवेश निषेध"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1486,7 +1552,7 @@ msgstr "पासवर्ड नहीं है"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr ""
@@ -1767,14 +1833,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr "रौ को डिलीट कर दिया"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "डिलीट"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2121,7 +2179,7 @@ msgstr ""
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "होस्ट"
@@ -2965,6 +3023,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s डाटाबेस को सफलता से डिलीट कर दिया गया।"
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -2991,6 +3050,7 @@ msgstr ""
"संभावना है। "
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3686,7 +3746,8 @@ msgstr ""
msgid "Korean"
msgstr "कोरियन"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3893,7 +3954,7 @@ msgid "Show processes"
msgstr "प्रोसेस दिखाओ"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "कोइ डाटाबेस नहिं"
@@ -3998,16 +4059,6 @@ msgstr "कोई यूसर नहीं।"
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr ""
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr ""
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4155,7 +4206,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4787,47 +4838,6 @@ msgstr ""
msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "डाटाबेस में सर्च करें"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr " टेबल में:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "शब्द अथवा वेल्यु जिसे सर्च करना है (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "कोई भी एक शब्द"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "सभी शब्द"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "यथार्थ वाक्यांश"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr ""
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "\"<i>%s</i>\" %s के लिये सर्च के परिणाम :"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "खोजो:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5541,7 +5551,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5557,10 +5567,6 @@ msgstr ""
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "शब्दों में space (\" \") से अंतर करें."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5674,7 +5680,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr ""
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6208,7 +6214,7 @@ msgstr "यूसरनेम खाली है!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "यूसर नेम"
@@ -6432,15 +6438,15 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr ""
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 7633aca..cbad81d 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Traži"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Traži"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Ispiši"
msgid "View dump (schema) of database"
msgstr "Prikaži ispis (shemu) baze podataka"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Odaberi sve"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Ukloni sav odabir"
@@ -502,14 +504,85 @@ msgstr "SQL upit nad bazom podataka <b>%s</b>:"
msgid "Submit Query"
msgstr "Podnesi upit"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Pristup odbijen"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "najmanje jedna riječ"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "sve riječi"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "točan izraz"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "kao regularan izraz"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Rezultati pretraživanja za \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s poklapanja unutar tablice <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Pretraživanje"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Izbriši"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Ukupno:</b> <i>%s</i> poklapanja"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Traži u bazi podataka"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Riječi ili vrijednost za pretraživanje (džoker: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Traži:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Riječi su razdvojene znakom razmaka (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Unutar tablica:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Unutar polja:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -676,8 +749,8 @@ msgstr "Provjeri tablicu"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Baza podataka"
@@ -1069,13 +1142,6 @@ msgstr "po sekundi"
msgid "Cannot connect: invalid settings."
msgstr "Povezivanje nije moguće: neispravna postavka."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Pristup odbijen"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1533,7 +1599,7 @@ msgstr "Bez lozinke"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Lozinka"
@@ -1825,14 +1891,6 @@ msgstr "Izvrši favorizirani upit"
msgid "The row has been deleted"
msgstr "Redak je izbrisan"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Izbriši"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2227,7 +2285,7 @@ msgstr "Tablična struktura za tablicu"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Računalo"
@@ -3087,6 +3145,7 @@ msgid "%s databases have been dropped successfully."
msgstr "Baza podataka %s uspješno je odbačena."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Traži u bazi podataka"
@@ -3114,6 +3173,7 @@ msgstr ""
"velik promet između web poslužitelja i MySQL poslužitelja."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Traži u bazi podataka"
@@ -3838,7 +3898,8 @@ msgstr "Pohrana ključeva"
msgid "Korean"
msgstr "Korejski"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nepoznati jezik: %1$s."
@@ -4061,7 +4122,7 @@ msgid "Show processes"
msgstr "Prikaži procese"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Nema baza podataka"
@@ -4172,16 +4233,6 @@ msgstr "Korisnici nisu pronađeni."
msgid "Number of tables"
msgstr "Broj tablica"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s poklapanja unutar tablice <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Ukupno:</b> <i>%s</i> poklapanja"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4330,7 +4381,7 @@ msgid "Polish"
msgstr "Poljski"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Presloži"
@@ -4982,47 +5033,6 @@ msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
"Vrijednost omjera suviše je malen kako bi shema stala na jednu stranicu"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Traži u bazi podataka"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Unutar polja:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Unutar tablica:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Riječi ili vrijednost za pretraživanje (džoker: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "najmanje jedna riječ"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "sve riječi"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "točan izraz"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "kao regularan izraz"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Rezultati pretraživanja za \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Traži:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfiguracijska datoteka potražuje tajnu lozinku (blowfish_secret)."
@@ -5864,7 +5874,7 @@ msgstr "Malo / Sve veliko"
msgid "Snap to grid"
msgstr "Poravnaj s mrežom"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5880,10 +5890,6 @@ msgstr "Iskorištenost prostora"
msgid "Spanish"
msgstr "Španjolski"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Riječi su razdvojene znakom razmaka (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Vrsta izvoza"
@@ -6016,7 +6022,7 @@ msgstr "Švedski"
msgid "Switch to copied table"
msgstr "Prebaci se na kopiranu tablicu"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6603,7 +6609,7 @@ msgstr "Korisničko ime je prazno!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Korisničko ime"
@@ -6843,17 +6849,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "najv. uzastopnih veza"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/hu.po b/po/hu.po
index 7aa413b..ebd56c1 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian <hu(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Keresés"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Keresés"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Nyomtatás"
msgid "View dump (schema) of database"
msgstr "Adatbázis kiírás (vázlat) megtekintése"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Mind kijelölése"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Mind törlése"
@@ -500,14 +502,85 @@ msgstr "SQL-lekérdezés a(z) <b>%s</b> adatbázison:"
msgid "Submit Query"
msgstr "Lekérdezés indítása"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "A hozzáférés megtagadva"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "legalább az egyik szó"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "minden szó"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "a pontos kifejezés"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "reguláris kifejezésként"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Keresési eredmények \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s találat a(z) <i>%s</i> táblában"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Tartalom"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Törlés"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Összesen:</b> <i>%s</i> találat"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Keresés az adatbázisban"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Keresés:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "A szavak elválasztása szóköz karakterrel (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Táblá(k)ban:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Mezőben:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr "A zárolt táblák kihagyása"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Adatbázis"
@@ -1067,13 +1140,6 @@ msgstr "másodpercenként"
msgid "Cannot connect: invalid settings."
msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "A hozzáférés megtagadva"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1533,7 +1599,7 @@ msgstr "Nincs jelszó"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Jelszó"
@@ -1828,14 +1894,6 @@ 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:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Törlés"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2229,7 +2287,7 @@ msgstr "Tábla szerkezet:"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Hoszt"
@@ -3100,6 +3158,7 @@ msgid "%s databases have been dropped successfully."
msgstr "A(z) %s adatbázis eldobása sikerült."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Keresés az adatbázisban"
@@ -3127,6 +3186,7 @@ msgstr ""
"közti nagy adatforgalomhoz vezethet."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Keresés az adatbázisban"
@@ -3853,7 +3913,8 @@ msgstr "Kulcs gyorsítótár"
msgid "Korean"
msgstr "Koreai"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ismeretlen nyelv: %1$s."
@@ -4076,7 +4137,7 @@ msgid "Show processes"
msgstr "Folyamatok megjelenítése"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Nincs adatbázis"
@@ -4188,16 +4249,6 @@ msgstr "Nem található(k) a felhasználó(k)."
msgid "Number of tables"
msgstr "Táblák száma"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s találat a(z) <i>%s</i> táblában"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Összesen:</b> <i>%s</i> találat"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4346,7 +4397,7 @@ msgid "Polish"
msgstr "Lengyel"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Rendezés"
@@ -5008,47 +5059,6 @@ msgstr "Mentés"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "A mérettényező túl kicsi, hogy a séma ráférjen egy oldalra"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Keresés az adatbázisban"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Mezőben:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Táblá(k)ban:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Keresendő szavak vagy értékek (karakterhelyettesítő: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "legalább az egyik szó"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "minden szó"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "a pontos kifejezés"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "reguláris kifejezésként"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Keresési eredmények \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Keresés:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5891,7 +5901,7 @@ msgstr "Mind kicsi/nagy"
msgid "Snap to grid"
msgstr "Rácshoz illesztés"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5907,10 +5917,6 @@ msgstr "Területhasználat"
msgid "Spanish"
msgstr "Spanyol"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "A szavak elválasztása szóköz karakterrel (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Exportálás típusa"
@@ -6044,7 +6050,7 @@ msgstr "Svéd"
msgid "Switch to copied table"
msgstr "A másolt táblára váltás"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6636,7 +6642,7 @@ msgstr "Üres a felhasználónév!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Felhasználónév"
@@ -6882,17 +6888,17 @@ msgstr ""
"szerveren lévő többszörözéses állapotról a <a href=\"#replication"
"\">többszörözés részben</a> kaphat bővebb információt."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Veszélyes kapcsolat"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/id.po b/po/id.po
index 14d965e..b7bd4a2 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-17 21:14+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Cari"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Cari"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Cetak"
msgid "View dump (schema) of database"
msgstr "Tampilkan Dump (Skema) dari database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Pilih semua"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Unselect semua"
@@ -501,14 +503,85 @@ msgstr "Pencarian SQL dalam database <b>%s</b>:"
msgid "Submit Query"
msgstr "Jalankan pencarian SQL"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Akses ditolak"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "sekurang-kurangnya salah satu kata"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "seluruh kata"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "kata-kata tepat"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "sebagai regular expression"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Hasil pencarian untuk \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s catatan dalam tabel <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Browse"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Hapus"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Jumlah:</b> <i>%s</i> rekord"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Cari dalam database"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Kata atau nilai untuk dicari (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Cari:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Kata dipisahkan oleh karakter spasi (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Cari dalam tabel:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -676,8 +749,8 @@ msgstr "Tabel-tabel yang dilacak"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Database"
@@ -1063,13 +1136,6 @@ msgstr "per detik"
msgid "Cannot connect: invalid settings."
msgstr "Koneksi gagal: Stelan tidak berlaku."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Akses ditolak"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1518,7 +1584,7 @@ msgstr "Kata Sandi belum ditetapkan"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Kata Sandi"
@@ -1807,14 +1873,6 @@ msgstr "Eksekusikan pencarian dengan mengikuti penunjuk halaman"
msgid "The row has been deleted"
msgstr "Baris telah dihapus"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Hapus"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2181,7 +2239,7 @@ msgstr "Struktur dari tabel"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3037,6 +3095,7 @@ msgid "%s databases have been dropped successfully."
msgstr "Sukses menghapus database %s."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Database cumber"
@@ -3063,6 +3122,7 @@ msgstr ""
"mengakibatkan traffic yang cukup tinggi antara webserver dan server MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Database target"
@@ -3780,7 +3840,8 @@ msgstr ""
msgid "Korean"
msgstr "Bahasa Korea"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4002,7 +4063,7 @@ msgid "Show processes"
msgstr "Tampilkan Proses"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Database tidak ditemukan"
@@ -4111,16 +4172,6 @@ msgstr "Pengguna tidak ditemukan."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s catatan dalam tabel <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Jumlah:</b> <i>%s</i> rekord"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4271,7 +4322,7 @@ msgid "Polish"
msgstr "Polandia"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Urutkan"
@@ -4932,47 +4983,6 @@ msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
"Faktor skala yang dipilih terlalu kecil untuk dimuat dalam skema satu halaman"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Cari dalam database"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Cari dalam tabel:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Kata atau nilai untuk dicari (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "sekurang-kurangnya salah satu kata"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "seluruh kata"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "kata-kata tepat"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "sebagai regular expression"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Hasil pencarian untuk \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Cari:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5697,7 +5707,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5713,10 +5723,6 @@ msgstr "Penggunaan tempat"
msgid "Spanish"
msgstr "Bahasa Spanyol"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Kata dipisahkan oleh karakter spasi (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Jenis Ekspor"
@@ -5846,7 +5852,7 @@ msgstr "Bahasa Swedia"
msgid "Switch to copied table"
msgstr "Pindah ke tabel salinan"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6419,7 +6425,7 @@ msgstr "Nama pengguna masih kosong!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nama pengguna"
@@ -6658,17 +6664,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Koneksi"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/it.po b/po/it.po
index ab73b8f..fb983ad 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-11 11:19+0200\n"
"Last-Translator: Fabio <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
@@ -47,7 +47,7 @@ msgstr "Cerca"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -65,7 +65,7 @@ msgstr "Cerca"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -198,11 +198,13 @@ msgstr "Stampa"
msgid "View dump (schema) of database"
msgstr "Visualizza dump (schema) del database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Seleziona tutto"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Deseleziona tutto"
@@ -503,14 +505,85 @@ msgstr "SQL-query sul database <b>%s</b>:"
msgid "Submit Query"
msgstr "Invia Query"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Accesso negato"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "almeno una delle parole"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "tutte le parole"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "la frase esatta"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "come espressione regolare"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Cerca i risultati per \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s corrisponde/ono nella tabella <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Mostra"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Elimina"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Totale:</b> <i>%s</i> corrispondenza/e"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Cerca nel database"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "parola/e o valore/i da cercare (carattere jolly: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Trova:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Le parole sono separate da spazi (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Nella/e tabella/e:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Campi contenuti:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -678,8 +751,8 @@ msgstr "Controlla tabella"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Database"
@@ -1070,13 +1143,6 @@ msgstr "al secondo"
msgid "Cannot connect: invalid settings."
msgstr "Impossibile connettersi: impostazioni non valide."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Accesso negato"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1532,7 +1598,7 @@ msgstr "Nessuna Password"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Password"
@@ -1831,14 +1897,6 @@ msgstr "Esegue la query dalle preferite"
msgid "The row has been deleted"
msgstr "La riga è stata cancellata"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Elimina"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2235,7 +2293,7 @@ msgstr "Struttura della tabella"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3095,6 +3153,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databases sono stati cancellati correttamente."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Database di origine"
@@ -3121,6 +3180,7 @@ msgstr ""
"traffico intenso fra il server web e MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Database di destinazione"
@@ -3850,7 +3910,8 @@ msgstr "Key cache"
msgid "Korean"
msgstr "Coreano"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Lingua non conosciuta : %1$s."
@@ -4076,7 +4137,7 @@ msgid "Show processes"
msgstr "Visualizza processi in esecuzione"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Nessun database"
@@ -4188,16 +4249,6 @@ msgstr "Nessun utente trovato."
msgid "Number of tables"
msgstr "Numero di tabelle"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s corrisponde/ono nella tabella <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Totale:</b> <i>%s</i> corrispondenza/e"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4347,7 +4398,7 @@ msgid "Polish"
msgstr "Polacco"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Ordinamento"
@@ -5008,47 +5059,6 @@ msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
"Il fattore di scala è troppo piccolo per riempire lo schema nella pagina"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Cerca nel database"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Campi contenuti:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Nella/e tabella/e:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "parola/e o valore/i da cercare (carattere jolly: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "almeno una delle parole"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "tutte le parole"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "la frase esatta"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "come espressione regolare"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Cerca i risultati per \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Trova:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5901,7 +5911,7 @@ msgstr "Espandi/Contrai"
msgid "Snap to grid"
msgstr "Calamita alla griglia"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5917,10 +5927,6 @@ msgstr "Spazio utilizzato"
msgid "Spanish"
msgstr "Spagnolo"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Le parole sono separate da spazi (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Tipo di esportazione"
@@ -6055,7 +6061,7 @@ msgstr "Svedese"
msgid "Switch to copied table"
msgstr "Passa alla tabella copiata"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6646,7 +6652,7 @@ msgstr "Il nome utente è vuoto!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nome utente"
@@ -6886,17 +6892,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Connessione non sicura"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Config
uration"
msgid "Configuration: %s"
diff --git a/po/ja.po b/po/ja.po
index 7d4d254..da60ddd 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: japanese <jp(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "検索"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "検索"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "印刷"
msgid "View dump (schema) of database"
msgstr "DB のダンプ(スキーマ)表示"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "全選択"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "全選択解除"
@@ -502,14 +504,85 @@ msgstr "データベース <b>%s</b> のSQL:"
msgid "Submit Query"
msgstr "クエリを実行する"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "アクセスは拒否されました"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "いずれかの単語を含む"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "すべての単語を含む"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "完全一致"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "正規表現"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "\"<i>%s</i>\" の検索結果 %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s 件(テーブル <i>%s</i>)"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "表示"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "削除"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>合計:</b> <i>%s</i> 件"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "データベース内検索"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "検索する単語や値 (ワイルドカード: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "検索条件:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "各単語は空白文字(\" \")で区切ってください"
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "検索するテーブル:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "検索するフィールド:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -674,8 +747,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "データベース"
@@ -1055,13 +1128,6 @@ msgstr "/秒"
msgid "Cannot connect: invalid settings."
msgstr "接続できません: 設定が無効です"
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "アクセスは拒否されました"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1509,7 +1575,7 @@ msgstr "パスワードなし"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "パスワード"
@@ -1800,14 +1866,6 @@ msgstr "ブックマークされたクエリを実行する"
msgid "The row has been deleted"
msgstr "行を削除しました"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "削除"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2196,7 +2254,7 @@ msgstr "テーブルの構造"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "ホスト"
@@ -3049,6 +3107,7 @@ msgid "%s databases have been dropped successfully."
msgstr "データベース %s を正常に削除しました"
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -3075,6 +3134,7 @@ msgstr ""
"が激増することがあります"
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3795,7 +3855,8 @@ msgstr "キーキャッシュ"
msgid "Korean"
msgstr "韓国語"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "言語ファイルが登録されていません: %1$s"
@@ -4016,7 +4077,7 @@ msgid "Show processes"
msgstr "MySQL プロセスの表示"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "データベースが存在しません"
@@ -4125,16 +4186,6 @@ msgstr "ユーザが存在しません"
msgid "Number of tables"
msgstr "テーブル数"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s 件(テーブル <i>%s</i>)"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>合計:</b> <i>%s</i> 件"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4282,7 +4333,7 @@ msgid "Polish"
msgstr "ポーランド語"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4919,47 +4970,6 @@ msgstr "保存する"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "倍率が小さすぎるためスキーマが 1 ページに収まりません"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "データベース内検索"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "検索するフィールド:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "検索するテーブル:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "検索する単語や値 (ワイルドカード: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "いずれかの単語を含む"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "すべての単語を含む"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "完全一致"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "正規表現"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "\"<i>%s</i>\" の検索結果 %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "検索条件:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5769,7 +5779,7 @@ msgstr "すべてを大きく/小さく"
msgid "Snap to grid"
msgstr "グリッドにあわせる"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5785,10 +5795,6 @@ msgstr "ディスク使用量"
msgid "Spanish"
msgstr "スペイン語"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "各単語は空白文字(\" \")で区切ってください"
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "エクスポート形式"
@@ -5918,7 +5924,7 @@ msgstr "スウェーデン語"
msgid "Switch to copied table"
msgstr "コピーしたテーブルに切り替える"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6494,7 +6500,7 @@ msgstr "ユーザ名が空です!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "ユーザ名"
@@ -6726,17 +6732,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "最大同時接続数"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration"
msgid "Configuration: %s"
diff --git a/po/ka.po b/po/ka.po
index 79ad83a..55c1596 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "ძებნა"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "ძებნა"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "დაბეჭდვა"
msgid "View dump (schema) of database"
msgstr "View dump (schema) of database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "ყველას მონიშნვა"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "მონიშნვის მოხსნა"
@@ -500,14 +502,85 @@ msgstr "SQL query on database <b>%s</b>:"
msgid "Submit Query"
msgstr "მოთხოვნის გაგზავნა"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "წვდომა აკრძალულია"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "ერთი სიტყვა მაინც"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "ყველა სიტყვა"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "ზუსტი ფრაზა"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "რეგულარული გამოსახულება"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Search results for \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s match(es) inside table <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "არჩევა"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "წაშლა"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> match(es)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "მონაცემთა ბაზაში ძებნა"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "იპოვე:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Words are separated by a space character (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "ცხრილ(ებ)ში:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "ველში:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr "დაბლოკილი ცხრილების გამოტ
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "მონაცემთა ბაზა"
@@ -1067,13 +1140,6 @@ msgstr "წამში"
msgid "Cannot connect: invalid settings."
msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "წვდომა აკრძალულია"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1526,7 +1592,7 @@ msgstr "პაროლი არაა"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "პაროლი"
@@ -1818,14 +1884,6 @@ msgstr "ჩანიშნული მოთხოვნის გაშვე
msgid "The row has been deleted"
msgstr "სტრიქონი წაიშალა"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "წაშლა"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2216,7 +2274,7 @@ msgstr "Table structure for table"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "ჰოსტი"
@@ -3082,6 +3140,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databases have been dropped successfully."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "მონაცემთა ბაზაში ძებნა"
@@ -3109,6 +3168,7 @@ msgstr ""
"between the web server and the MySQL server."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "მონაცემთა ბაზაში ძებნა"
@@ -3833,7 +3893,8 @@ msgstr "Key cache"
msgid "Korean"
msgstr "კორეული"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "უცნობი ენა: %1$s."
@@ -4058,7 +4119,7 @@ msgid "Show processes"
msgstr "პროცესების ჩვენება"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "მონაცემთა ბაზები არაა"
@@ -4170,16 +4231,6 @@ msgstr "მომხმარებლ(ებ)ის პოვნა ვერ
msgid "Number of tables"
msgstr "ცხრილების რაოდენობა"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s match(es) inside table <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> match(es)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4328,7 +4379,7 @@ msgid "Polish"
msgstr "პოლონური"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "დალაგება"
@@ -4982,47 +5033,6 @@ msgstr "შენახვა"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "The scale factor is too small to fit the schema on one page"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "მონაცემთა ბაზაში ძებნა"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "ველში:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "ცხრილ(ებ)ში:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "ერთი სიტყვა მაინც"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "ყველა სიტყვა"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "ზუსტი ფრაზა"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "რეგულარული გამოსახულება"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Search results for \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "იპოვე:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5851,7 +5861,7 @@ msgstr "Small/Big All"
msgid "Snap to grid"
msgstr "Snap to grid"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5867,10 +5877,6 @@ msgstr "ადგილის გამოყენება"
msgid "Spanish"
msgstr "ესპანური"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Words are separated by a space character (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Export type"
@@ -6002,7 +6008,7 @@ msgstr "შვედური"
msgid "Switch to copied table"
msgstr "Switch to copied table"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6586,7 +6592,7 @@ msgstr "მომხმარებლის სახელი ცარიე
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "მომხმარებლის სახელი"
@@ -6821,17 +6827,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "დაუცველი კავშირი"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/ko.po b/po/ko.po
index ccbab64..7854a5f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: korean <ko(a)li.org>\n"
@@ -41,7 +41,7 @@ msgstr "검색"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -59,7 +59,7 @@ msgstr "검색"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -194,11 +194,13 @@ msgstr "인쇄"
msgid "View dump (schema) of database"
msgstr "데이터베이스의 덤프(스키마) 데이터 보기"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "모두 선택"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "모두 선택안함"
@@ -506,14 +508,85 @@ msgstr "데이터베이스 <b>%s</b>에 SQL 질의:"
msgid "Submit Query"
msgstr "질의 실행"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "접근이 거부되었습니다."
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "아무 단어나"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "모든 단어"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "정확한 문구"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "정규표현식"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr ""
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr ""
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "보기"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "삭제"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr ""
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "데이터베이스 검색"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "찾을 단어, 값 (와일드카드: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "찾는 방식:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "단어는 스페이스(\" \")로 구분됩니다."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "찾을 테이블:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -678,8 +751,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "데이터베이스"
@@ -1066,13 +1139,6 @@ msgstr "레코드수"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "접근이 거부되었습니다."
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1507,7 +1573,7 @@ msgstr "암호 없음"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "암호"
@@ -1793,14 +1859,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr "선택한 줄(레코드)을 삭제 하였습니다."
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "삭제"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2150,7 +2208,7 @@ msgstr "테이블 구조"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "호스트"
@@ -3015,6 +3073,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s 데이터베이스를 삭제했습니다."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "데이터베이스 검색"
@@ -3041,6 +3100,7 @@ msgstr ""
"주의: 데이터베이스 통계 보기는 웹서버와 MySQL 서버 사이에 큰 부하를 줍니다."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "데이터베이스 검색"
@@ -3748,7 +3808,8 @@ msgstr ""
msgid "Korean"
msgstr ""
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3961,7 +4022,7 @@ msgid "Show processes"
msgstr "MySQL 프로세스 보기"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "데이터베이스가 없습니다"
@@ -4067,16 +4128,6 @@ msgstr "사용자가 없습니다."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr ""
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr ""
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4228,7 +4279,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "정렬"
@@ -4871,47 +4922,6 @@ msgstr "저장"
msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "데이터베이스 검색"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "찾을 테이블:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "찾을 단어, 값 (와일드카드: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "아무 단어나"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "모든 단어"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "정확한 문구"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "정규표현식"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr ""
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "찾는 방식:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5634,7 +5644,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5650,10 +5660,6 @@ msgstr "공간 사용량"
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "단어는 스페이스(\" \")로 구분됩니다."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5771,7 +5777,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr "복사한 테이블로 옮겨감"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6310,7 +6316,7 @@ msgstr "사용자명이 없습니다!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "사용자명"
@@ -6539,17 +6545,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "연결 수"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 50eeb84..8fe3366 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis <rytis.s(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Paieška"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Paieška"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Spausdinti"
msgid "View dump (schema) of database"
msgstr "Sukurti, peržiūrėti duombazės atvaizdį"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Pažymėti visus"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Atžymėti visus"
@@ -502,14 +504,85 @@ msgstr "SQL-užklausa duombazėje <b>%s</b>:"
msgid "Submit Query"
msgstr "Vykdyti užklausą"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Priėjimas uždraustas"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "bent vienas iš žodžių"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "visi žodžiai"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "ištisa frazė"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "kaip reguliarųjį išsireiškimą"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Paieškos rezultatai frazei \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s atitikmuo(enys) lentelėje <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Peržiūrėti"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Trinti"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Viso:</b> <i>%s</i> atitikmuo(enys)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Paieška duombazėje"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simbolis: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Rasti:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Žodžiai atskirti tarpo simboliu (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Lentelės(ių) viduje:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr "Patikrinti lentelę"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Duombazė"
@@ -1065,13 +1138,6 @@ msgstr "per sekundę"
msgid "Cannot connect: invalid settings."
msgstr "Neįmanoma prisijungti: neteisingi duomenys."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Priėjimas uždraustas"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1521,7 +1587,7 @@ msgstr "Nėra slaptažodžio"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Slaptažodis"
@@ -1812,14 +1878,6 @@ msgstr "Įvykdyti išsaugotą užklausą"
msgid "The row has been deleted"
msgstr "Eilutė ištrinta"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Trinti"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2178,7 +2236,7 @@ msgstr "Sukurta duomenų struktūra lentelei"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Darbinė stotis"
@@ -3037,6 +3095,7 @@ msgid "%s databases have been dropped successfully."
msgstr "Sėkmingai pašalintos %s duombazės."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Eiti į duomenų bazę"
@@ -3064,6 +3123,7 @@ msgstr ""
"darbinių stočių, gali padidėti aukščiau normos."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Paieška duombazėje"
@@ -3783,7 +3843,8 @@ msgstr "Užklausų saugykla"
msgid "Korean"
msgstr "Korėjiečių"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nežinoma kalba: %1$s."
@@ -4005,7 +4066,7 @@ msgid "Show processes"
msgstr "Rodyti procesus"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Nėra duombazių"
@@ -4113,16 +4174,6 @@ msgstr "Nerasta vartotojo(ų)."
msgid "Number of tables"
msgstr "Lentelių skaičius"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s atitikmuo(enys) lentelėje <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Viso:</b> <i>%s</i> atitikmuo(enys)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4272,7 +4323,7 @@ msgid "Polish"
msgstr "Lenkų"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Jungtis"
@@ -4927,47 +4978,6 @@ msgstr "Išsaugoti"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Dydžio matas yra per mažas norint sutalpinti vaizdą viename lape."
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Paieška duombazėje"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Lentelės(ių) viduje:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Paieškos žodis(iai) arba reikšmė(ės) (pakaitos simbolis: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "bent vienas iš žodžių"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "visi žodžiai"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "ištisa frazė"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "kaip reguliarųjį išsireiškimą"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Paieškos rezultatai frazei \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Rasti:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Nustatymų faile nurodykite slaptą frazę (blowfish_secret)."
@@ -5705,7 +5715,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5721,10 +5731,6 @@ msgstr "Vietos naudojimas"
msgid "Spanish"
msgstr "Ispanų"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Žodžiai atskirti tarpo simboliu (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Eksporto tipas"
@@ -5853,7 +5859,7 @@ msgstr "Švedų"
msgid "Switch to copied table"
msgstr "Pereiti į lentelės kopiją"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6422,7 +6428,7 @@ msgstr "Tuščias vartotojo vardas!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Vartotojo vardas"
@@ -6655,17 +6661,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Nesaugus susijungimas"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/lv.po b/po/lv.po
index 00891d4..bf927cd 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Meklēt"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Meklēt"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Drukāt"
msgid "View dump (schema) of database"
msgstr "Apskatīt datubāzes dampu (shēmu)"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Iezīmēt visu"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Neiezīmēt neko"
@@ -501,14 +503,85 @@ msgstr "SQL vaicājums uz datubāzes <b>%s</b>:"
msgid "Submit Query"
msgstr "Izpildīt vaicājumu"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Pieeja aizliegta"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "kaut viens no vārdiem"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "visi vārdi"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "precīza frāze"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "kā regulārā izteiksme"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Meklēšanas rezultāti \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s rezultāti tabulā <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Apskatīt"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Dzēst"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Kopumā:</b> <i>%s</i> rezultāti"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Meklēt datubāzē"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Atrast:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Vārdi ir atdalīti ar tukšumu (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Tabulā(s):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -674,8 +747,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Datubāze"
@@ -1063,13 +1136,6 @@ msgstr "sekundē"
msgid "Cannot connect: invalid settings."
msgstr "Nevar pieslēgties: kļūda konfigurācijā."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Pieeja aizliegta"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1516,7 +1582,7 @@ msgstr "Nav paroles"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Parole"
@@ -1806,14 +1872,6 @@ msgstr "Izpildīt iegrāmatoto vaicājumu"
msgid "The row has been deleted"
msgstr "Ieraksts tika dzēsts"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Dzēst"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2163,7 +2221,7 @@ msgstr "Tabulas struktūra tabulai"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Hosts"
@@ -3029,6 +3087,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s datubāzes tika veiksmīgi dzēstas."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Meklēt datubāzē"
@@ -3056,6 +3115,7 @@ msgstr ""
"apmaiņu starp webserveri un MySQL serveri."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Meklēt datubāzē"
@@ -3773,7 +3833,8 @@ msgstr ""
msgid "Korean"
msgstr "Korejiešu"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3988,7 +4049,7 @@ msgid "Show processes"
msgstr "Parādīt procesus"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Nav datubāzu"
@@ -4096,16 +4157,6 @@ msgstr "Lietotāji netika atrasti."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s rezultāti tabulā <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Kopumā:</b> <i>%s</i> rezultāti"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4256,7 +4307,7 @@ msgid "Polish"
msgstr "Poļu"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Kārtošana"
@@ -4912,47 +4963,6 @@ msgstr "Saglabāt"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Mērogošanas faktors ir pārāk mazs, lai shēma ietilptu vienā lapā"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Meklēt datubāzē"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Tabulā(s):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Vārdi vai vērtības meklēšanai (aizstājējzīme: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "kaut viens no vārdiem"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "visi vārdi"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "precīza frāze"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "kā regulārā izteiksme"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Meklēšanas rezultāti \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Atrast:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfigurācijas fails tagad prasa slepeno paroli (blowfish_secret)."
@@ -5674,7 +5684,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5690,10 +5700,6 @@ msgstr "Diska vietas lietošana"
msgid "Spanish"
msgstr "Spāņu"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Vārdi ir atdalīti ar tukšumu (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Eksporta veids"
@@ -5821,7 +5827,7 @@ msgstr "Zviedru"
msgid "Switch to copied table"
msgstr "Pārslēgties uz nokopēto tabulu"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6385,7 +6391,7 @@ msgstr "Lietotāja vārds nav norādīts!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Lietotājvārds"
@@ -6618,17 +6624,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Konekcijas"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/mk.po b/po/mk.po
index 5d86da2..823b150 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic <mk(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Пребарување"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Пребарување"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Печати"
msgid "View dump (schema) of database"
msgstr "Прикажи содржина (шема) на базата"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "избери се"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "ништо"
@@ -501,14 +503,85 @@ msgstr "SQL упит на базата на податоци <b>%s</b>:"
msgid "Submit Query"
msgstr "Изврши SQL"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Пристапот не е допуштен"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "барем еден од зборовите"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "сите зборови"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "точен израз"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "како регуларен израз"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Резултати од пребарувањето за \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s погодоци во табелата <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Преглед"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "избриши"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>вкупно:</b> <i>%s</i> погодоци"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Пребарување низ базата на податоци"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Барај:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Зборовите се одвојуваат со празно место (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "во табела(и):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -674,8 +747,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "База на податоци"
@@ -1062,13 +1135,6 @@ msgstr "во секунда"
msgid "Cannot connect: invalid settings."
msgstr "Не може да се поврзам: лоши подесувања."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Пристапот не е допуштен"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1521,7 +1587,7 @@ msgstr "Нема лозинка"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Лозинка"
@@ -1810,14 +1876,6 @@ msgstr "Изврши запамтен упит"
msgid "The row has been deleted"
msgstr "Записот е избришан"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "избриши"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2187,7 +2245,7 @@ msgstr "Структура на табелата"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3051,6 +3109,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s базата на податоци успешно е избришана."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Пребарување низ базата на податоци"
@@ -3078,6 +3137,7 @@ msgstr ""
"сообраќајот помеѓу веб серверот и MySQL серверот."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Пребарување низ базата на податоци"
@@ -3798,7 +3858,8 @@ msgstr ""
msgid "Korean"
msgstr "Корејски"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -4020,7 +4081,7 @@ msgid "Show processes"
msgstr "Прикажи листа на процеси"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Базата на податоци не постои"
@@ -4128,16 +4189,6 @@ msgstr "Корисникот не е пронајден."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s погодоци во табелата <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>вкупно:</b> <i>%s</i> погодоци"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4288,7 +4339,7 @@ msgid "Polish"
msgstr "Полски"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Подредуваање"
@@ -4946,47 +4997,6 @@ msgstr ""
"Факторот на намалување е премал и шемата не може да ја собере на една "
"страница"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Пребарување низ базата на податоци"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "во табела(и):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Зборови или вредности кои се бараат (џокер знак \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "барем еден од зборовите"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "сите зборови"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "точен израз"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "како регуларен израз"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Резултати од пребарувањето за \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Барај:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфигурациската податотека бара лозинка (blowfish_secret)."
@@ -5707,7 +5717,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5723,10 +5733,6 @@ msgstr "Големина"
msgid "Spanish"
msgstr "Шпански"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Зборовите се одвојуваат со празно место (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Тип на извоз"
@@ -5853,7 +5859,7 @@ msgstr "Шведски"
msgid "Switch to copied table"
msgstr "Премини на копираната табела"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6427,7 +6433,7 @@ msgstr "Не е внесен назив на корисник!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Назив на корисник"
@@ -6662,17 +6668,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Конекции"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index c
a1e593..eb8a25c 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn(a)li.org>\n"
@@ -43,7 +43,7 @@ msgstr "Хайх"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -61,7 +61,7 @@ msgstr "Хайх"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -194,11 +194,13 @@ msgstr "Хэвлэх"
msgid "View dump (schema) of database"
msgstr "ӨС-ийн схем харах"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Бүгдийг сонгох"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Бүх сонгосныг болих"
@@ -499,14 +501,85 @@ msgstr "ӨС <b>%s</b> дахь SQL-асуулт:"
msgid "Submit Query"
msgstr "Асуултыг илгээх"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Хандах эрхгүй"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "Үгүүдийн ядаж нэгээр"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "бүх үг"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "яг цав өгүүлбэр"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "as regular expression"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Хайлтын үр дүн \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s олдоц(ууд) хүснэгт <i>%s</i>-д"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Хөтлөх"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Устгах"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Нийт:</b> <i>%s</i> олдоц(ууд)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Өгөгдлийн санд хайх"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Хайх:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Хүснэгт(үүд) дотор:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -671,8 +744,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "ӨС"
@@ -1054,13 +1127,6 @@ msgstr "секундэд"
msgid "Cannot connect: invalid settings."
msgstr "Холбогдсонгүй: тохируулга буруу."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Хандах эрхгүй"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1504,7 +1570,7 @@ msgstr "Нууц үггүй"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Нууц үг"
@@ -1794,14 +1860,6 @@ msgstr "Тэмдэглэгдсэн асуулт ажиллуулах"
msgid "The row has been deleted"
msgstr "Мөр устгагдсан"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Устгах"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2165,7 +2223,7 @@ msgstr "Хүснэгтийн бүтэц"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3012,6 +3070,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s ӨС амжилттай устгагдлаа."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -3037,6 +3096,7 @@ msgstr ""
"Тэмдэглэл: Вэб сервэр, MySQL-ийн хоорондох өгөгдөл дамжуулах статистик."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3747,7 +3807,8 @@ msgstr "Түлхүүрийн нөөцлөл"
msgid "Korean"
msgstr "Солонгос"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Үл мэдэгдэх хэл: %1$s."
@@ -3966,7 +4027,7 @@ msgid "Show processes"
msgstr "Процесууд харах"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "ӨС байхгүй"
@@ -4073,16 +4134,6 @@ msgstr "Хэрэглэгч олдсонгүй."
msgid "Number of tables"
msgstr "Хүснэгтийн тоо"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s олдоц(ууд) хүснэгт <i>%s</i>-д"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Нийт:</b> <i>%s</i> олдоц(ууд)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4230,7 +4281,7 @@ msgid "Polish"
msgstr "Польш"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4870,47 +4921,6 @@ msgstr "Хадгалах"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Хэт жижиг схемийг нэг хуудсанд дүүргэх"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Өгөгдлийн санд хайх"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Хүснэгт(үүд) дотор:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Үг(үүд) ба утга(ууд) -ыг хайх (түлхүүр \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "Үгүүдийн ядаж нэгээр"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "бүх үг"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "яг цав өгүүлбэр"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "as regular expression"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Хайлтын үр дүн \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Хайх:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Тохиргооны файл одоо нууцлал шаардаж байна (blowfish_secret)."
@@ -5675,7 +5685,7 @@ msgstr "Жижиш/Том Бүгдийг"
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5691,10 +5701,6 @@ msgstr "Ашиглалтын зай"
msgid "Spanish"
msgstr "Испани"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Їгнїїд хоосон зайгаар (\" \") хуваагдана."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Гаргах төрөл"
@@ -5819,7 +5825,7 @@ msgstr "Швед"
msgid "Switch to copied table"
msgstr "Хуулагдсан хүснэгт рүү шилжих"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6381,7 +6387,7 @@ msgstr "Хэрэглэгчийн нэр хоосон!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Хэрэглэгчийн нэр"
@@ -6612,17 +6618,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "ХИ. давхацсан холболтууд"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/ms.po b/po/ms.po
index 4a41a55..e0319e6 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms(a)li.org>\n"
@@ -41,7 +41,7 @@ msgstr "Cari"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -59,7 +59,7 @@ msgstr "Cari"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -194,11 +194,13 @@ msgstr "Cetak"
msgid "View dump (schema) of database"
msgstr "Lihat longgokan (skema) pangkalan data"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Sila pilih pangkalan data"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Nyahpilih Semua"
@@ -503,14 +505,85 @@ msgstr "SQL- kueri pada pangkalan data <b>%s</b>:"
msgid "Submit Query"
msgstr "Hantar Kueri"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Akses dinafikan"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "sekurang-kurangnya satu perkataan"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "semua perkataan"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "Frasa tepat"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "sebagai penyataan regular (regexp)"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Hasil carian bagi \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s padanan di dalam jadual <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Lungsur"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Padam"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Jumlah</b>: <i>%s</i> padanan"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Cari di pangkalan data"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Perkataan atau nilai untuk dicari (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Cari:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Di dalam jadual:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Pangkalan Data"
@@ -1065,13 +1138,6 @@ msgstr "Rekod"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Akses dinafikan"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1511,7 +1577,7 @@ msgstr "Tiada Katalaluan"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Katalaluan"
@@ -1799,14 +1865,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr "Baris telah dipadam"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Padam"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2156,7 +2214,7 @@ msgstr "Struktur jadual bagi jadual"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Hos"
@@ -3018,6 +3076,7 @@ msgid "%s databases have been dropped successfully."
msgstr ""
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Cari di pangkalan data"
@@ -3045,6 +3104,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Cari di pangkalan data"
@@ -3755,7 +3815,8 @@ msgstr ""
msgid "Korean"
msgstr ""
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3969,7 +4030,7 @@ msgid "Show processes"
msgstr "Papar proses"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Tiada pangkalan data"
@@ -4075,16 +4136,6 @@ msgstr "Tiada pengguna dijumpai."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s padanan di dalam jadual <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Jumlah</b>: <i>%s</i> padanan"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4236,7 +4287,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Isih"
@@ -4880,47 +4931,6 @@ msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
"Faktor skala adalah terlalu kecil supaya muat dengan skema dalam satu halaman"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Cari di pangkalan data"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Di dalam jadual:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Perkataan atau nilai untuk dicari (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "sekurang-kurangnya satu perkataan"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "semua perkataan"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "Frasa tepat"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "sebagai penyataan regular (regexp)"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Hasil carian bagi \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Cari:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5642,7 +5652,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5658,10 +5668,6 @@ msgstr "Penggunaan ruang"
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Perkataan dipisahkan oleh aksara ruang (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5789,7 +5795,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr ""
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6327,7 +6333,7 @@ msgstr "Kata Pengenalan kosong!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Kata Pengenalan"
@@ -6556,17 +6562,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Hubungan"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index 5bfaa6b..13c6f58 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-05-06 08:35+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
@@ -45,7 +45,7 @@ msgstr "Søk"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -63,7 +63,7 @@ msgstr "Søk"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -196,11 +196,13 @@ msgstr "Skriv ut"
msgid "View dump (schema) of database"
msgstr "Vis dump (skjema) av database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Velg alle"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Fjern alle valgte"
@@ -495,14 +497,85 @@ msgstr "SQL-spørring i database <b>%s</b>:"
msgid "Submit Query"
msgstr "Kjør spørring"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Ingen tilgang"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "minst ett av ordene"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "alle ordene"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "med den nøyaktige setningen"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "som \"regular expression\""
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Søkeresultat for \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s treff i tabell <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Se på"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Slett"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Totalt:</b> <i>%s</i> treff"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Søk i database"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Ord eller verdi(er) å søke etter (jokertegn: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Finn:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Ord er separert med et mellomrom (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "I tabell(ene):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "I felt:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -667,8 +740,8 @@ msgstr "Overvåkede tabeller"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Database"
@@ -1002,13 +1075,6 @@ msgstr "Sekund"
msgid "Cannot connect: invalid settings."
msgstr "Kan ikke koble til: ugyldige innstillinger."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Ingen tilgang"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1454,7 +1520,7 @@ msgstr "Intet passord"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Passord"
@@ -1742,14 +1808,6 @@ msgstr "Utfør lagret spørring"
msgid "The row has been deleted"
msgstr "Raden er slettet"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Slett"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2140,7 +2198,7 @@ msgstr "Tabellstruktur for tabell"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Vert"
@@ -2997,6 +3055,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databasene har blitt slettet."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Kildedatabase"
@@ -3023,6 +3082,7 @@ msgstr ""
"mellom webtjeneren og MySQL-tjeneren."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Måldatabase"
@@ -3752,7 +3812,8 @@ msgstr "Nøkkelmellomlager"
msgid "Korean"
msgstr "koreansk"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Ukjent språk: %1$s."
@@ -3975,7 +4036,7 @@ msgid "Show processes"
msgstr "Vis prosesser"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Ingen databaser"
@@ -4086,16 +4147,6 @@ msgstr "Ingen bruker(e) funnet."
msgid "Number of tables"
msgstr "Antall tabeller"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s treff i tabell <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Totalt:</b> <i>%s</i> treff"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4246,7 +4297,7 @@ msgid "Polish"
msgstr "Polsk"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Port"
@@ -4909,47 +4960,6 @@ msgstr "Lagre"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Skaleringsfaktoren er for liten til å romme alt på en side"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Søk i database"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "I felt:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "I tabell(ene):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Ord eller verdi(er) å søke etter (jokertegn: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "minst ett av ordene"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "alle ordene"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "med den nøyaktige setningen"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "som \"regular expression\""
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Søkeresultat for \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Finn:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5788,7 +5798,7 @@ msgstr "Liten/Stor alle"
msgid "Snap to grid"
msgstr "Lås til ruter"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Socket"
@@ -5804,10 +5814,6 @@ msgstr "Plassbruk"
msgid "Spanish"
msgstr "Spansk"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Ord er separert med et mellomrom (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Eksporttype"
@@ -5938,7 +5944,7 @@ msgstr "svensk"
msgid "Switch to copied table"
msgstr "Bytt til kopiert tabell"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6521,7 +6527,7 @@ msgstr "Brukernavnet er tomt!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Brukernavn"
@@ -6748,15 +6754,15 @@ msgstr ""
"For mer informasjon om replikasjonsstatusen for tjeneren, gå til <a href="
"\"#replication\">replikasjonsseksjonen</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr "Skriv inn manuelt"
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr "Nåværende tilkobling"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr "Konfigurasjon: %s"
diff --git a/po/nl.po b/po/nl.po
index fcf0c1c..cc5473f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-26 15:46+0200\n"
"Last-Translator: <rink(a)initfour.nl>\n"
"Language-Team: dutch <nl(a)li.org>\n"
@@ -45,7 +45,7 @@ msgstr "Zoeken"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -63,7 +63,7 @@ msgstr "Zoeken"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -196,11 +196,13 @@ msgstr "Afdrukken"
msgid "View dump (schema) of database"
msgstr "Bekijk een dump (schema) van database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Selecteer alles"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Deselecteer alles"
@@ -501,14 +503,85 @@ msgstr "SQL-query op database <b>%s</b>:"
msgid "Submit Query"
msgstr "Query uitvoeren"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Toegang geweigerd "
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "ten minste een van de woorden"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "alle woorden"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "de exacte zin"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "als een reguliere expressie"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Zoek resultaten voor \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s overeenkomst(en) in de tabel <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Verkennen"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Verwijderen"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Totaal:</b> <i>%s</i> overeenkomst(en)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Zoeken in de database"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Woord(en) of waarde(s) waarnaar gezocht moet worden (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Zoek:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Woorden worden gesplits door een spatiekarakter (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "In de tabel(len):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "In het veld:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -674,8 +747,8 @@ msgstr "Tabellen met tracker"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Database"
@@ -1061,13 +1134,6 @@ msgstr "per seconde"
msgid "Cannot connect: invalid settings."
msgstr "Kan niet verbinden: ongeldige instellingen."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Toegang geweigerd "
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1525,7 +1591,7 @@ msgstr "Geen wachtwoord"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Wachtwoord"
@@ -1822,14 +1888,6 @@ msgstr "Voor de gebookmarkte query uit"
msgid "The row has been deleted"
msgstr "De rij is verwijderd"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Verwijderen"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2227,7 +2285,7 @@ msgstr "Tabelstructuur voor tabel"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Machine"
@@ -3098,6 +3156,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databases zijn succesvol verwijderd."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Bron database"
@@ -3124,6 +3183,7 @@ msgstr ""
"tussen de webserver en de MySQL-server."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Doel database"
@@ -3849,7 +3909,8 @@ msgstr "Sleutelcache"
msgid "Korean"
msgstr "Koreaans"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Onbekende taal: %1$s."
@@ -4074,7 +4135,7 @@ msgid "Show processes"
msgstr "Laat processen zien"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Geen databases"
@@ -4187,16 +4248,6 @@ msgstr "Geen gebruiker(s) gevonden."
msgid "Number of tables"
msgstr "Aantal tabellen"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s overeenkomst(en) in de tabel <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Totaal:</b> <i>%s</i> overeenkomst(en)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4345,7 +4396,7 @@ msgid "Polish"
msgstr "Pools"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Poort"
@@ -5021,47 +5072,6 @@ msgstr "Opslaan"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "De schaalfactor is te klein om het schema op een pagina te zetten"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Zoeken in de database"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "In het veld:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "In de tabel(len):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Woord(en) of waarde(s) waarnaar gezocht moet worden (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "ten minste een van de woorden"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "alle woorden"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "de exacte zin"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "als een reguliere expressie"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Zoek resultaten voor \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Zoek:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5917,7 +5927,7 @@ msgstr "Alles In/uitklappen"
msgid "Snap to grid"
msgstr "Kleef aan raster"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Socket"
@@ -5933,10 +5943,6 @@ msgstr "Ruimtegebruik"
msgid "Spanish"
msgstr "Spaans"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Woorden worden gesplits door een spatiekarakter (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Export type"
@@ -6065,7 +6071,7 @@ msgstr "Zweeds"
msgid "Switch to copied table"
msgstr "Wissel naar de gekopieerde tabel"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6653,7 +6659,7 @@ msgstr "De gebruikersnaam is leeg!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Gebruikersnaam"
@@ -6905,17 +6911,17 @@ msgstr ""
"voor meer informatie over replicatie in de <a href=\"#replication"
"\">replication status</a> sectie."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Onveilige verbinding"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 765a90d..1d7c862 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr ""
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr ""
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr ""
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr ""
@@ -496,14 +498,85 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr ""
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr ""
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr ""
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr ""
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr ""
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, possible-php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr ""
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, possible-php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr ""
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr ""
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr ""
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, possible-php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr ""
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr ""
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr ""
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr ""
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr ""
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr ""
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -668,8 +741,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr ""
@@ -1003,13 +1076,6 @@ msgstr ""
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1434,7 +1500,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr ""
@@ -1713,14 +1779,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr ""
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2067,7 +2125,7 @@ msgstr ""
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr ""
@@ -2909,6 +2967,7 @@ msgid "%s databases have been dropped successfully."
msgstr ""
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -2933,6 +2992,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3628,7 +3688,8 @@ msgstr ""
msgid "Korean"
msgstr ""
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, possible-php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3835,7 +3896,7 @@ msgid "Show processes"
msgstr ""
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr ""
@@ -3940,16 +4001,6 @@ msgstr ""
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, possible-php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr ""
-
-#: libraries/messages.inc.php:588
-#, possible-php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr ""
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4097,7 +4148,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4725,47 +4776,6 @@ msgstr ""
msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr ""
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr ""
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr ""
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr ""
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr ""
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr ""
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr ""
-
-#: libraries/messages.inc.php:848
-#, possible-php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr ""
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr ""
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5477,7 +5487,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5493,10 +5503,6 @@ msgstr ""
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr ""
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5610,7 +5616,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr ""
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6144,7 +6150,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr ""
@@ -6357,15 +6363,15 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr ""
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, possible-php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 1983b2e..fa88315 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish <pl(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Szukaj"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Szukaj"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Drukuj"
msgid "View dump (schema) of database"
msgstr "Zrzut bazy danych"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Zaznacz wszystkie"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Odznacz wszystkie"
@@ -500,14 +502,85 @@ msgstr "Zapytanie SQL dla bazy danych <b>%s</b>:"
msgid "Submit Query"
msgstr "Wykonaj zapytania"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Brak dostępu"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "przynajmniej jedno ze słów"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "wszystkie słowa"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "cała fraza"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "wyrażenie regularne"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Szukaj w rezultatach dla \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s trafień wewnątrz tabeli <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Przeglądaj"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Usuń"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>W sumie:</b> <i>%s</i> trafień"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Szukaj w bazie danych"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Szukane słowa lub wartości (symbol wieloznaczny: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Znajdź:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Słowa są rozdzielane znakiem spacji (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Wewnątrz tabel(i):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Wewnątrz pola:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr "Pomiń zablokowane tabele"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Baza danych"
@@ -1069,13 +1142,6 @@ msgstr "na sekundę"
msgid "Cannot connect: invalid settings."
msgstr "Nie udało się nawiązać połączenia: błędne ustawienia."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Brak dostępu"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1531,7 +1597,7 @@ msgstr "Brak hasła"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Hasło"
@@ -1826,14 +1892,6 @@ msgstr "Wykonaj zapamiętanego zapytania"
msgid "The row has been deleted"
msgstr "Rekord został skasowany"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Usuń"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2216,7 +2274,7 @@ msgstr "Struktura tabeli dla "
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3083,6 +3141,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s baz danych zostało pomyślnie usuniętych."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Szukaj w bazie danych"
@@ -3110,6 +3169,7 @@ msgstr ""
"serwerem WWW a serwerem MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Szukaj w bazie danych"
@@ -3833,7 +3893,8 @@ msgstr "Bufor podręczny indeksów"
msgid "Korean"
msgstr "Koreański"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nieznany język: %1$s."
@@ -4055,7 +4116,7 @@ msgid "Show processes"
msgstr "Pokaż procesy"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Brak baz danych"
@@ -4166,16 +4227,6 @@ msgstr "Nie znaleziono użytkownika(ów)."
msgid "Number of tables"
msgstr "Liczba tabel"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s trafień wewnątrz tabeli <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>W sumie:</b> <i>%s</i> trafień"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4324,7 +4375,7 @@ msgid "Polish"
msgstr "Polski"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sortuj"
@@ -4983,47 +5034,6 @@ msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
"Współczynnik skali jest za mały, by schemat zmieścił się na jednej stronie"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Szukaj w bazie danych"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Wewnątrz pola:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Wewnątrz tabel(i):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Szukane słowa lub wartości (symbol wieloznaczny: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "przynajmniej jedno ze słów"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "wszystkie słowa"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "cała fraza"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "wyrażenie regularne"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Szukaj w rezultatach dla \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Znajdź:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5861,7 +5871,7 @@ msgstr "Wszystko małe/duże"
msgid "Snap to grid"
msgstr "Przyciągaj do siatki"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5877,10 +5887,6 @@ msgstr "Wykorzystanie przestrzeni"
msgid "Spanish"
msgstr "Hiszpański"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Słowa są rozdzielane znakiem spacji (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Rodzaj eksportu"
@@ -6014,7 +6020,7 @@ msgstr "Szwedzki"
msgid "Switch to copied table"
msgstr "Przełącz na skopiowaną tabelę"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6599,7 +6605,7 @@ msgstr "Brak nazwy użytkownika!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nazwa użytkownika"
@@ -6838,17 +6844,17 @@ msgid ""
"th
e <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Niezabezpieczone połączenie"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration"
msgid "Configuration: %s"
diff --git a/po/pt.po b/po/pt.po
index 60c6d65..2514bc9 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese <pt(a)li.org>\n"
@@ -41,7 +41,7 @@ msgstr "Pesquisar"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -59,7 +59,7 @@ msgstr "Pesquisar"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -192,11 +192,13 @@ msgstr "Imprimir"
msgid "View dump (schema) of database"
msgstr "Ver o esquema da base de dados"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Selecciona Todas"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Limpa Todas as Selecções"
@@ -502,14 +504,85 @@ msgstr "Comando SQL na base de dados <b>%s</b>:"
msgid "Submit Query"
msgstr "Executa Comando SQL"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Acesso Negado"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "pelo menos uma das palavras"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "todas as palavras"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "a frase exacta"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "as regular expression"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Procurar resultados para \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s resultado(s) na tabela <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Visualiza"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Apagar"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Pesquisar na Base de Dados"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Palavra(s) ou valor(es) para pesquisar para (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Procurar:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "As palavras são separadas pelo caracter espaço (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Dentro de Tabela(s):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -676,8 +749,8 @@ msgstr "Verificar tabela"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Base de Dados"
@@ -1067,13 +1140,6 @@ msgstr "por segundo"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Acesso Negado"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1523,7 +1589,7 @@ msgstr "Sem palavra-passe"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Palavra-passe"
@@ -1811,14 +1877,6 @@ msgstr "Executar um query marcado(do marcador)"
msgid "The row has been deleted"
msgstr "Registo eliminado"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Apagar"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2168,7 +2226,7 @@ msgstr "Estrutura da tabela"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Máquina"
@@ -3036,6 +3094,7 @@ msgid "%s databases have been dropped successfully."
msgstr "As Bases de Dados %s foram apagadas com sucesso."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Pesquisar na Base de Dados"
@@ -3063,6 +3122,7 @@ msgstr ""
"entre o servidor web e o de MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Pesquisar na Base de Dados"
@@ -3782,7 +3842,8 @@ msgstr "Tipo de Query"
msgid "Korean"
msgstr "Coreano"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3998,7 +4059,7 @@ msgid "Show processes"
msgstr "Mostra os Processos"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Sem bases de dados"
@@ -4104,16 +4165,6 @@ msgstr "Nenhum utilizador encontrado."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s resultado(s) na tabela <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4268,7 +4319,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Ordenação"
@@ -4920,47 +4971,6 @@ msgstr "Guarda"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "O factor escala é muito pequeno para encaixar o esquema numa página"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Pesquisar na Base de Dados"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Dentro de Tabela(s):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Palavra(s) ou valor(es) para pesquisar para (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "pelo menos uma das palavras"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "todas as palavras"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "a frase exacta"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "as regular expression"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Procurar resultados para \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Procurar:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5685,7 +5695,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5702,10 +5712,6 @@ msgstr "Espaço ocupado"
msgid "Spanish"
msgstr "Dinamarquês"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "As palavras são separadas pelo caracter espaço (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Tipo de Exportação"
@@ -5835,7 +5841,7 @@ msgstr "Sueco"
msgid "Switch to copied table"
msgstr "Mudar para a tabela copiada"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6377,7 +6383,7 @@ msgstr "O nome do utilizador está vazio!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nome do Utilizador"
@@ -6608,17 +6614,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Ligações"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 2617740..fa28e92 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-21 05:17+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Procurar"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Procurar"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Imprimir"
msgid "View dump (schema) of database"
msgstr "Ver o esquema do Banco de Dados"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Selecionar Todos"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Desmarcar Todos"
@@ -502,14 +504,85 @@ msgstr "Consulta no Banco de Dados <b>%s</b>:"
msgid "Submit Query"
msgstr "Enviar consulta SQL"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Acesso negado"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "pelo menos uma das palavras"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "todas as palavras"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "a frase exata"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "como expressão regular"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Procurar resultados por \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s resultado(s) dentro da tabela <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Visualizar"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Remover"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Procurar no Banco de Dados"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Encontrar:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Palavras são separadas por um caracter de espaço (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Dentro da(s) tabela(s):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Dentro do campo:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr "Verificar tabela"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Banco de Dados"
@@ -1065,13 +1138,6 @@ msgstr "por segundo"
msgid "Cannot connect: invalid settings."
msgstr "Não pode conectar: configurações inválidas."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Acesso negado"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1522,7 +1588,7 @@ msgstr "Sem senha"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Senha"
@@ -1814,14 +1880,6 @@ msgstr "Executar consulta marcada"
msgid "The row has been deleted"
msgstr "Registro eliminado"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Remover"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2191,7 +2249,7 @@ msgstr "Estrutura da tabela"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Servidor"
@@ -3047,6 +3105,7 @@ msgid "%s databases have been dropped successfully."
msgstr "Banco de Dados %s foi eliminado com sucesso!"
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Procurar no Banco de Dados"
@@ -3074,6 +3133,7 @@ msgstr ""
"dados entre o servidor web e o servidor MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Procurar no Banco de Dados"
@@ -3797,7 +3857,8 @@ msgstr "Chave do cache"
msgid "Korean"
msgstr "Coreano"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Linguagem desconhecida: %1$s."
@@ -4020,7 +4081,7 @@ msgid "Show processes"
msgstr "Mostrar os Processos"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Sem bases"
@@ -4132,16 +4193,6 @@ msgstr "Nenhum usuário(s) encontrado."
msgid "Number of tables"
msgstr "Numero de tabelas"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s resultado(s) dentro da tabela <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> resultado(s)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4289,7 +4340,7 @@ msgid "Polish"
msgstr "Polonês"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Porta"
@@ -4939,47 +4990,6 @@ msgstr "Salvar"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "A escala é muito pequena para ajustar o esquema em uma página"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Procurar no Banco de Dados"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Dentro do campo:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Dentro da(s) tabela(s):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Palavra(s) ou valor(es) para procurar (coringa: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "pelo menos uma das palavras"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "todas as palavras"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "a frase exata"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "como expressão regular"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Procurar resultados por \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Encontrar:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5823,7 +5833,7 @@ msgstr "Tudo Pequeno/Grande"
msgid "Snap to grid"
msgstr "Ajustar à grade"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5839,10 +5849,6 @@ msgstr "Uso do espaço"
msgid "Spanish"
msgstr "Espanhol"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Palavras são separadas por um caracter de espaço (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Tipo de exportação"
@@ -5975,7 +5981,7 @@ msgstr "Suéco"
msgid "Switch to copied table"
msgstr "Mudar para a tabela copiada"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6558,7 +6564,7 @@ msgstr "O nome do usuário está em branco!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nome do usuário"
@@ -6795,17 +6801,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "máx. de conexões concorrentes"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration"
msgid "Configuration: %s"
diff --git a/po/ro.po b/po/ro.po
index 15ad24a..525785a 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-13 00:41+0200\n"
"Last-Translator: <ronaldinia(a)yahoo.com>\n"
"Language-Team: romanian <ro(a)li.org>\n"
@@ -47,7 +47,7 @@ msgstr "Caută"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -65,7 +65,7 @@ msgstr "Caută"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -198,11 +198,13 @@ msgstr "Listare"
msgid "View dump (schema) of database"
msgstr "Vizualizarea schemei bazei de date"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Selectează tot"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Deselectează tot"
@@ -503,14 +505,85 @@ msgstr "Comandă SQL pe baza de date <b>%s</b>:"
msgid "Submit Query"
msgstr "Trimite comanda"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Acces interzis"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "cel puțin unul dintre cuvinte"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "toate cuvintele"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "fraza exactă"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "ca o expresie"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Caută rezultate pentru \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s rezultat(e) în interiorul tabelului <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Navigare"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Șterge"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> rezultat(e)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Caută în baza de date"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Cuvînt/valoare de căutat (metacaracter: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Găsește:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Cuvinte despărțite de un spațiu (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "În interiorul tabelei(lor):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "În cîmpul:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -677,8 +750,8 @@ msgstr "Verificare tabel"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Baza de date"
@@ -1070,13 +1143,6 @@ msgstr "pe secundă"
msgid "Cannot connect: invalid settings."
msgstr "Conexiune esuata: setari invalide."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Acces interzis"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1532,7 +1598,7 @@ msgstr "Nu există parolă"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Parola"
@@ -1823,14 +1889,6 @@ msgstr "Executare comandă marcată"
msgid "The row has been deleted"
msgstr "Linia a fost ștearsă"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Șterge"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2223,7 +2281,7 @@ msgstr "Structura de tabel pentru tabelul"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Gazda"
@@ -3094,6 +3152,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s baza(ele) de data(e) au fost aruncate."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Caută în baza de date"
@@ -3121,6 +3180,7 @@ msgstr ""
"traficului între MySQL și serverul Web."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Caută în baza de date"
@@ -3843,7 +3903,8 @@ msgstr "Key cache"
msgid "Korean"
msgstr "Coreean"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Limbă necunoscută: %1$s."
@@ -4067,7 +4128,7 @@ msgid "Show processes"
msgstr "Afișează procesele"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Nu sînt baze de date"
@@ -4180,16 +4241,6 @@ msgstr "Nu s-a găsit nici un utilizator."
msgid "Number of tables"
msgstr "Număr de tabele"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s rezultat(e) în interiorul tabelului <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> rezultat(e)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4338,7 +4389,7 @@ msgid "Polish"
msgstr "Polononez"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sortare"
@@ -4997,47 +5048,6 @@ msgstr "Salveaza"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Factorul de scalare este prea mica pentru a inchepe in pagina"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Caută în baza de date"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "În cîmpul:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "În interiorul tabelei(lor):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Cuvînt/valoare de căutat (metacaracter: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "cel puțin unul dintre cuvinte"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "toate cuvintele"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "fraza exactă"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "ca o expresie"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Caută rezultate pentru \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Găsește:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5867,7 +5877,7 @@ msgstr "Small/Big All"
msgid "Snap to grid"
msgstr "Aliniere la grilă"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5883,10 +5893,6 @@ msgstr "Utilizare spațiu"
msgid "Spanish"
msgstr "Spaniolă"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Cuvinte despărțite de un spațiu (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Modul de export"
@@ -6017,7 +6023,7 @@ msgstr "Suedez"
msgid "Switch to copied table"
msgstr "Schimbă la tabela copiată"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6601,7 +6607,7 @@ msgstr "Numele de utilizator este gol!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Nume utilizator"
@@ -6839,16 +6845,16 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
msgid "Current connection"
msgstr "Comprimă conexiunea"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 94a18c5..b0fba05 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: russian <ru(a)li.org>\n"
@@ -47,7 +47,7 @@ msgstr "Поиск"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -65,7 +65,7 @@ msgstr "Поиск"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -198,11 +198,13 @@ msgstr "Печать"
msgid "View dump (schema) of database"
msgstr "Отобразить дамп (схему) базы данных"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Выделить все"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Снять выделение"
@@ -503,14 +505,85 @@ msgstr "SQL-запрос к базе данных <b>%s</b>:"
msgid "Submit Query"
msgstr "Выполнить запрос"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "В доступе отказано"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "любое из слов"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "все слова"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "точное соответствие"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "регулярное выражение"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Результаты поиска по "<i>%s</i>" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s вхождения(ий) в таблице <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Обзор"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Удалить"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Итого:</b> <i>%s</i> вхождения(ий)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Поиск в базе данных"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Слово(а) или значение(я) для поиска (групповой символ: "%"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Искать:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Слова разделяются пробелом (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "В таблице/таблицах:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Внутри поля:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -677,8 +750,8 @@ msgstr "Отслеживаемые таблицы"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "База данных"
@@ -1062,13 +1135,6 @@ msgstr "в секунду"
msgid "Cannot connect: invalid settings."
msgstr "Соединение невозможно! Неверные настройки."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "В доступе отказано"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1526,7 +1592,7 @@ msgstr "Без пароля"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Пароль"
@@ -1820,14 +1886,6 @@ msgstr "Выполнить отмеченный запрос"
msgid "The row has been deleted"
msgstr "Запись была удалена"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Удалить"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2225,7 +2283,7 @@ msgstr "Структура таблицы"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3096,6 +3154,7 @@ msgid "%s databases have been dropped successfully."
msgstr "Удалено баз данных: %s"
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Источник"
@@ -3122,6 +3181,7 @@ msgstr ""
"трафик между веб-сервером и сервером MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Целевая база данных"
@@ -3843,7 +3903,8 @@ msgstr "Кеш индекса"
msgid "Korean"
msgstr "Корейский"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Неизвестный язык: %1$s."
@@ -4068,7 +4129,7 @@ msgid "Show processes"
msgstr "Список процессов"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Базы данных отсутствуют"
@@ -4179,16 +4240,6 @@ msgstr "Пользователей не найдено."
msgid "Number of tables"
msgstr "Количество таблиц"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s вхождения(ий) в таблице <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Итого:</b> <i>%s</i> вхождения(ий)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4339,7 +4390,7 @@ msgid "Polish"
msgstr "Польский"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Порт"
@@ -5011,47 +5062,6 @@ msgstr "Сохранить"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Схема не помещается на одной странице. Необходимо уменьшить масштаб."
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Поиск в базе данных"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Внутри поля:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "В таблице/таблицах:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Слово(а) или значение(я) для поиска (групповой символ: "%"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "любое из слов"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "все слова"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "точное соответствие"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "регулярное выражение"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Результаты поиска по "<i>%s</i>" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Искать:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5915,7 +5925,7 @@ msgstr "Свернуть/развернуть отображение всех т
msgid "Snap to grid"
msgstr "Привязать к сетке"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Сокет"
@@ -5931,10 +5941,6 @@ msgstr "Используемое пространство"
msgid "Spanish"
msgstr "Испанский"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Слова разделяются пробелом (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Тип экспорта"
@@ -6063,7 +6069,7 @@ msgstr "Шведский"
msgid "Switch to copied table"
msgstr "Переключиться на скопированную таблицу"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6655,7 +6661,7 @@ msgstr "Не задано имя пользователя!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Имя пользователя"
@@ -6906,17 +6912,17 @@ msgstr ""
"получения подробной информации о состоянии репликации сервера, пожалуйста, "
"перейдите в <a href=\"#replication\">раздел репликации</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Небезопасное соединение"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/si.po b/po/si.po
index 27a8a02..40d7aaa 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
@@ -45,7 +45,7 @@ msgstr "සෙවීම"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -63,7 +63,7 @@ msgstr "සෙවීම"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -196,11 +196,13 @@ msgstr "මුද්රණය කරන්න"
msgid "View dump (schema) of database"
msgstr "View dump (schema) of database"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "සියල්ල තෝරන්න"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන්න"
@@ -502,14 +504,85 @@ msgstr "SQL query on database <b>%s</b>:"
msgid "Submit Query"
msgstr "විමසුම ඉදිරිපත් කරන්න"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "පිවිසුම වලක්වා ඇත"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "අවම වශයෙන් එක් වචනයක්වත්"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "සියලු වචන"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "හරියටම වාක්යාංශය"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "as regular expression"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "\"<i>%s</i>\" %s සඳහා සෙවීම් ප්රතිළුල:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s match(es) inside table <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "බ්රවුස් කරන්න"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "ඉවත් කරන්න"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Total:</b> <i>%s</i> match(es)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "දත්තගබඩාවේ සොයන්න"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "සොයන්න:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Words are separated by a space character (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "වගු(ව) තුල:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -675,8 +748,8 @@ msgstr "වගුව පරීක්ෂා කරන්න"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "දත්තගබඩාව"
@@ -1064,13 +1137,6 @@ msgstr "තප්පරයකට"
msgid "Cannot connect: invalid settings."
msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "පිවිසුම වලක්වා ඇත"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1521,7 +1587,7 @@ msgstr "මුරපදයක් නැත"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "මුරපදය"
@@ -1814,14 +1880,6 @@ msgstr "Execute bookmarked query"
msgid "The row has been deleted"
msgstr "පෙළ ඉවත් කරන ලදි"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "ඉවත් කරන්න"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2188,7 +2246,7 @@ msgstr "වගුවක් සඳහා වගු සැකිල්ල"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "දායකයා"
@@ -3051,6 +3109,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s දත්තගබඩාව සාර්ථකව හලන ලදි."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "දත්තගබඩාවේ සොයන්න"
@@ -3078,6 +3137,7 @@ msgstr ""
"between the web server and the MySQL server."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "දත්තගබඩාවේ සොයන්න"
@@ -3798,7 +3858,8 @@ msgstr "යතුරු කෑෂ් කිරීම"
msgid "Korean"
msgstr "කොරියානු"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "%1$s නොදන්නා භාෂාවකි."
@@ -4020,7 +4081,7 @@ msgid "Show processes"
msgstr "ක්රියාවලිය පෙන්වන්න"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "දත්තගබඩා නොමැත"
@@ -4133,16 +4194,6 @@ msgstr "No user(s) found."
msgid "Number of tables"
msgstr "ක්ෂේත්ර ගණන"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s match(es) inside table <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Total:</b> <i>%s</i> match(es)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4293,7 +4344,7 @@ msgid "Polish"
msgstr "පෝලන්ත"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "තෝරනවා"
@@ -4943,47 +4994,6 @@ msgstr "සේව් කරන්න"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "The scale factor is too small to fit the schema on one page"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "දත්තගබඩාවේ සොයන්න"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "වගු(ව) තුල:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Word(s) or value(s) to search for (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "අවම වශයෙන් එක් වචනයක්වත්"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "සියලු වචන"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "හරියටම වාක්යාංශය"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "as regular expression"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "\"<i>%s</i>\" %s සඳහා සෙවීම් ප්රතිළුල:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "සොයන්න:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5810,7 +5820,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5826,10 +5836,6 @@ msgstr "අවකාශ භාවිතය"
msgid "Spanish"
msgstr "ස්පාඤ්ඤ"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Words are separated by a space character (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "අපනයන වර්ගය"
@@ -5959,7 +5965,7 @@ msgstr "ස්වීඩීනියානු"
msgid "Switch to copied table"
msgstr "Switch to copied table"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6536,7 +6542,7 @@ msgstr "භාවිත නාමය හිස්ව පවතී!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "භාවිත නාමය"
@@ -6770,17 +6776,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "max. concurrent connections"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/sk.po b/po/sk.po
index 16ffa9c..0101a1f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: slovak <sk(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Hľadať"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Hľadať"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Vytlačiť"
msgid "View dump (schema) of database"
msgstr "Zobraziť dump (schému) databázy"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Označiť všetko"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Odznačiť všetko"
@@ -504,14 +506,86 @@ msgstr " SQL dopyt v databáze <b>%s</b>:"
msgid "Submit Query"
msgstr "Odošli dopyt"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Prístup zamietnutý"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "najmenej jedno zo slov"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "všetky slová"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "presný výraz"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "ako regulárny výraz"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Prehľadať výsledky na \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s výskyt(ov)v tabuľke <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Prechádzať"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Zmazať"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Celkovo:</b> <i>%s</i> výskyt(ov)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Hľadať v databáze"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr ""
+"Slovo(á) alebo hodnotu(y), ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Nájdi:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Slová sú rozdelené medzerou (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "V tabuľke(ách):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -676,8 +750,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Databáza"
@@ -1066,13 +1140,6 @@ msgstr "za sekundu"
msgid "Cannot connect: invalid settings."
msgstr "Nepodarilo sa pripojiť: chybné nastavenia."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Prístup zamietnutý"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1520,7 +1587,7 @@ msgstr "Žiadne heslo"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Heslo"
@@ -1818,14 +1885,6 @@ msgstr "Spustiť obľúbený dopyt"
msgid "The row has been deleted"
msgstr "Riadok bol zmazaný"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Zmazať"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2191,7 +2250,7 @@ msgstr "Štruktúra tabuľky pre tabuľku"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Hostiteľ"
@@ -3054,6 +3113,7 @@ msgid "%s databases have been dropped successfully."
msgstr "Úspešne zrušených databáz: %s."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Zdrojová databáza"
@@ -3080,6 +3140,7 @@ msgstr ""
"sieťovej prevádzky medzi databázou a web serverom."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Cieľová databáza"
@@ -3798,7 +3859,8 @@ msgstr "Vyrovnávacia pamäť kľúčov"
msgid "Korean"
msgstr "Kórejčina"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznámy jazyk: %1$s."
@@ -4021,7 +4083,7 @@ msgid "Show processes"
msgstr "Zobraziť procesy"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Žiadne databázy"
@@ -4131,16 +4193,6 @@ msgstr "Nebol nájdený žiadny používateľ."
msgid "Number of tables"
msgstr "Počet tabuliek"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s výskyt(ov)v tabuľke <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Celkovo:</b> <i>%s</i> výskyt(ov)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4290,7 +4342,7 @@ msgid "Polish"
msgstr "Poľština"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Port"
@@ -4949,48 +5001,6 @@ msgstr "Uložiť"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Mierka je príliš mala na roztiahnutie schémy na stránku"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Hľadať v databáze"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "V tabuľke(ách):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr ""
-"Slovo(á) alebo hodnotu(y), ktoré chcete vyhľadať (nahradzujúci znak: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "najmenej jedno zo slov"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "všetky slová"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "presný výraz"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "ako regulárny výraz"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Prehľadať výsledky na \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Nájdi:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5826,7 +5836,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Socket"
@@ -5842,10 +5852,6 @@ msgstr "Zabrané miesto"
msgid "Spanish"
msgstr "Španielsky"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Slová sú rozdelené medzerou (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Typ vytvorených dopytov"
@@ -5973,7 +5979,7 @@ msgstr "Švédsky"
msgid "Switch to copied table"
msgstr "Prepnúť na skopírovanú tabuľku"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6547,7 +6553,7 @@ msgstr "Meno používateľa je prázdne!"
#: libraries/replication_gui.lib.php:56
libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Meno používateľa"
@@ -6799,17 +6805,17 @@ msgstr ""
"informácií o stave replikácie na tomto serveri navštívte prosím <a href="
"\"#replication\">sekciu replikácie</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "max. súčasných pripojení"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/sl.po b/po/sl.po
index 2101e2d..14af9e2 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-05-06 23:21+0200\n"
"Last-Translator: <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
-"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
-"n%100==4 ? 2 : 3);\n"
+"Language: sl\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
+"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -46,7 +46,7 @@ msgstr "Iskanje"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Iskanje"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Natisni"
msgid "View dump (schema) of database"
msgstr "Preglej povzetek stanja podatkovne baze"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Izberi vse"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Prekliči izbor vsega"
@@ -273,7 +275,6 @@ msgid "Status"
msgstr "Stanje"
#: db_operations.php:544
-#| msgid "Enabled"
msgctxt "BLOB repository"
msgid "Enabled"
msgstr "Omogočeno"
@@ -287,13 +288,11 @@ msgid "Damaged"
msgstr "Poškodovano"
#: db_operations.php:562
-#| msgid "Repair"
msgctxt "BLOB repository"
msgid "Repair"
msgstr "Popravi"
#: db_operations.php:570
-#| msgid "Disabled"
msgctxt "BLOB repository"
msgid "Disabled"
msgstr "Onemogočeno"
@@ -499,14 +498,85 @@ msgstr "Poizvedba SQL na zbirki podatkov <b>%s</b>:"
msgid "Submit Query"
msgstr "Izvedi poizvedbo"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Dostop zavrnjen"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "katerokoli besedo"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "vse besede"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "točno določeno frazo"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "kot običajni izraz (regular expression)"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Rezultati iskanja \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s zadetek(ov) v tabeli <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Prebrskaj"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Izbriši"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Skupaj:</b> <i>%s</i> zadetek(ov)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Išči v podatkovni zbirki"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Iskane besede ali vrednosti (nadomestni znak: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Najdi:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Besede so ločene s presledkom (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "V tabelah:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "V polju:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -671,8 +741,8 @@ msgstr "Sledene tabele"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Podatkovna zbirka"
@@ -757,13 +827,11 @@ msgstr "Prekliči"
#. l10n: Display text for calendar close link
#: js/messages.php:74
-#| msgid "Donate"
msgid "Done"
msgstr "Končano"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:76
-#| msgid "Previous"
msgid "Prev"
msgstr "Prejšnji"
@@ -777,12 +845,10 @@ msgstr "Naslednji"
#. l10n: Display text for current month link in calendar
#: js/messages.php:80
-#| msgid "Total"
msgid "Today"
msgstr "Danes"
#: js/messages.php:83
-#| msgid "Binary"
msgid "January"
msgstr "januar"
@@ -791,12 +857,10 @@ msgid "February"
msgstr "februar"
#: js/messages.php:85
-#| msgid "Mar"
msgid "March"
msgstr "marec"
#: js/messages.php:86
-#| msgid "Apr"
msgid "April"
msgstr "april"
@@ -805,17 +869,14 @@ msgid "May"
msgstr "maj"
#: js/messages.php:88
-#| msgid "Jun"
msgid "June"
msgstr "junij"
#: js/messages.php:89
-#| msgid "Jul"
msgid "July"
msgstr "julij"
#: js/messages.php:90
-#| msgid "Aug"
msgid "August"
msgstr "avgust"
@@ -824,7 +885,6 @@ msgid "September"
msgstr "september"
#: js/messages.php:92
-#| msgid "Oct"
msgid "October"
msgstr "oktober"
@@ -858,7 +918,6 @@ msgstr "apr"
#. l10n: Short month name
#: js/messages.php:106
-#| msgid "May"
msgctxt "Short month name"
msgid "May"
msgstr "maj"
@@ -899,17 +958,14 @@ msgid "Dec"
msgstr "dec"
#: js/messages.php:123
-#| msgid "Sun"
msgid "Sunday"
msgstr "nedelja"
#: js/messages.php:124
-#| msgid "Mon"
msgid "Monday"
msgstr "ponedeljek"
#: js/messages.php:125
-#| msgid "Tue"
msgid "Tuesday"
msgstr "torek"
@@ -922,7 +978,6 @@ msgid "Thursday"
msgstr "četrtek"
#: js/messages.php:128
-#| msgid "Fri"
msgid "Friday"
msgstr "petek"
@@ -1021,13 +1076,6 @@ msgstr "Sekunde"
msgid "Cannot connect: invalid settings."
msgstr "Povezava ni mogoča: neveljavne nastavitve."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Dostop zavrnjen"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1186,7 +1234,6 @@ msgstr ""
#: libraries/common.inc.php:594
#, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s"
@@ -1480,7 +1527,7 @@ msgstr "Brez gesla"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Geslo"
@@ -1495,7 +1542,6 @@ msgid "Password Hashing"
msgstr ""
#: libraries/display_change_password.lib.php:66
-#| msgid "MySQL 4.0 compatible"
msgid "MySQL 4.0 compatible"
msgstr "Združljivo z MySQL 4.0"
@@ -1587,17 +1633,14 @@ msgid "None"
msgstr "Brez"
#: libraries/display_export.lib.php:247
-#| msgid "\"zipped\""
msgid "zipped"
msgstr "zipano"
#: libraries/display_export.lib.php:253
-#| msgid "\"gzipped\""
msgid "gzipped"
msgstr "gzipano"
#: libraries/display_export.lib.php:259
-#| msgid "\"bzipped\""
msgid "bzipped"
msgstr "bzipano"
@@ -1773,14 +1816,6 @@ msgstr "Izvedi izbrano poizvedbo"
msgid "The row has been deleted"
msgstr "Vrstica je izbrisana"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Izbriši"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2131,7 +2166,7 @@ msgstr "Struktura tabele"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Gostitelj"
@@ -2986,6 +3021,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s podatkovne zbirke so uspešno zavržene."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Izvorna zbirka podatkov"
@@ -3012,6 +3048,7 @@ msgstr ""
"povečan promet med spletnim in podatkovnim strežnikom."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Ciljna zbirka podatkov"
@@ -3724,7 +3761,8 @@ msgstr ""
msgid "Korean"
msgstr "Korejsko"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Neznani jezik: %1$s."
@@ -3941,7 +3979,7 @@ msgid "Show processes"
msgstr "Pokaži procese"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Brez zbirk podatkov"
@@ -4050,16 +4088,6 @@ msgstr "Ni mogoče najti uporabnika(ov)."
msgid "Number of tables"
msgstr "Število tabel"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s zadetek(ov) v tabeli <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Skupaj:</b> <i>%s</i> zadetek(ov)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4211,7 +4239,7 @@ msgid "Polish"
msgstr "Poljsko"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Vrata"
@@ -4855,47 +4883,6 @@ msgstr "Shrani"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Faktor povečava je premajhen, da bi spravili shemo na eno stran"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Išči v podatkovni zbirki"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "V polju:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "V tabelah:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Iskane besede ali vrednosti (nadomestni znak: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "katerokoli besedo"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "vse besede"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "točno določeno frazo"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "kot običajni izraz (regular expression)"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Rezultati iskanja \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Najdi:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5615,7 +5602,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5631,10 +5618,6 @@ msgstr "Poraba prostora"
msgid "Spanish"
msgstr "Špansko"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Besede so ločene s presledkom (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Vrsta izvoza"
@@ -5759,7 +5742,7 @@ msgstr "Švedsko"
msgid "Switch to copied table"
msgstr "Preklopi na kopirano tabelo"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6324,7 +6307,7 @@ msgstr "Uporabniško ime je prazno!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Uporabniško ime"
@@ -6558,15 +6541,15 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr "Vnesite ročno"
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr "Trenutna povezava"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr "Konfiguracija: %s"
diff --git a/po/sq.po b/po/sq.po
index 2916aa2..9c05d83 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:08+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: albanian <sq(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Kërko"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Kërko"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Printo"
msgid "View dump (schema) of database"
msgstr "Shfaq dump (skema) e databazës"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Zgjidh gjithçka"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Ç'zgjidh gjithçka"
@@ -505,14 +507,85 @@ msgstr "SQL-query tek databaza <b>%s</b>:"
msgid "Submit Query"
msgstr "Dërgo Query"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Hyrja nuk u pranua"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "të paktën njërën nga fjalët"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "të gjitha fjalët"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "fraza precize"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "si shprehje e rregullt"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Kërko rezultatet për \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s korrispondon(jnë) tek tabela <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Shfaq"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Fshi"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Gjithsej:</b> <i>%s</i> korrispondues(ë)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Kërko në databazë"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Fjala(ë) apo vlera(at) për t'u kërkuar (karakteri Jolly: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Gjej:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Fjalët janë të ndara me një hapsirë (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Tek tabela(at):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -678,8 +751,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Databazat"
@@ -1066,13 +1139,6 @@ msgstr "në sekondë"
msgid "Cannot connect: invalid settings."
msgstr "E pamundur lidhja: rregullime të pavlefshme."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Hyrja nuk u pranua"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1516,7 +1582,7 @@ msgstr "Asnjë fjalëkalim"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Fjalëkalimi"
@@ -1804,14 +1870,6 @@ msgstr "Zbaton query nga libërshënuesi"
msgid "The row has been deleted"
msgstr "rreshti u fshi"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Fshi"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2161,7 +2219,7 @@ msgstr "Struktura e tabelës"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3027,6 +3085,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databaza u eleminuan korrektësisht."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Kërko në databazë"
@@ -3054,6 +3113,7 @@ msgstr ""
"e trafikut midis server-it web dhe MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Kërko në databazë"
@@ -3771,7 +3831,8 @@ msgstr ""
msgid "Korean"
msgstr "Koreane"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3988,7 +4049,7 @@ msgid "Show processes"
msgstr "Shfaq proceset në ekzekutim"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Asnjë databazë"
@@ -4094,16 +4155,6 @@ msgstr "Nuk u gjet asnjë përdorues."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s korrispondon(jnë) tek tabela <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Gjithsej:</b> <i>%s</i> korrispondues(ë)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4255,7 +4306,7 @@ msgid "Polish"
msgstr "Polonisht"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "rreshtimi"
@@ -4914,47 +4965,6 @@ msgstr "Ruaj"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Faktori i shkallës është shumë i vogël për të plotësuar skemën në faqe"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Kërko në databazë"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Tek tabela(at):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Fjala(ë) apo vlera(at) për t'u kërkuar (karakteri Jolly: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "të paktën njërën nga fjalët"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "të gjitha fjalët"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "fraza precize"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "si shprehje e rregullt"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Kërko rezultatet për \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Gjej:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5677,7 +5687,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5693,10 +5703,6 @@ msgstr "Hapësira e përdorur"
msgid "Spanish"
msgstr "Spanjisht"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Fjalët janë të ndara me një hapsirë (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Lloji i Eksportit"
@@ -5826,7 +5832,7 @@ msgstr "Suedisht"
msgid "Switch to copied table"
msgstr "Kalo tek tabela e kopjuar"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6393,7 +6399,7 @@ msgstr "Emri i përdoruesit është bosh!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Emri i përdoruesit"
@@ -6624,17 +6630,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Lidhje"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/sr.po b/po/sr.po
index c6bb9dc..513dfe0 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_cyrillic <sr(a)li.org>\n"
@@ -47,7 +47,7 @@ msgstr "Претраживање"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -65,7 +65,7 @@ msgstr "Претраживање"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -198,11 +198,13 @@ msgstr "Штампај"
msgid "View dump (schema) of database"
msgstr "Прикажи садржај (схему) базе"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Изабери све"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "ништа"
@@ -504,14 +506,85 @@ msgstr "SQL упит на бази <b>%s</b>:"
msgid "Submit Query"
msgstr "Изврши SQL упит"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Приступ одбијен"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "бар једну од речи"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "све речи"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "тачан израз"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "као регуларни израз"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Резултати претраге за \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s погодака унутар табеле <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Преглед"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Обриши"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Укупно:</b> <i>%s</i> погодака"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Претраживање базе"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Речи или вредности које се траже (џокер: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Тражи:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Речи се одвајају размаком (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Унутар табела:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -677,8 +750,8 @@ msgstr "Провери табелу"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "База података"
@@ -1066,13 +1139,6 @@ msgstr "у секунди"
msgid "Cannot connect: invalid settings."
msgstr "Не могу да се повежем: неисправна подешавања."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Приступ одбијен"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1524,7 +1590,7 @@ msgstr "Нема лозинке"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Лозинка"
@@ -1817,14 +1883,6 @@ msgstr "Изврши упамћен упит"
msgid "The row has been deleted"
msgstr "Ред је обрисан"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Обриши"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2192,7 +2250,7 @@ msgstr "Структура табеле"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Домаћин"
@@ -3054,6 +3112,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s база је успешно одбачено."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Претраживање базе"
@@ -3081,6 +3140,7 @@ msgstr ""
"веб и MySQL сервера."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Претраживање базе"
@@ -3802,7 +3862,8 @@ msgstr "Кеш кључева"
msgid "Korean"
msgstr "Корејски"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Непознат језик: %1$s."
@@ -4024,7 +4085,7 @@ msgid "Show processes"
msgstr "Прикажи листу процеса"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "База не постоји"
@@ -4135,16 +4196,6 @@ msgstr "Корисник није нађен."
msgid "Number of tables"
msgstr "Број табела"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s погодака унутар табеле <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Укупно:</b> <i>%s</i> погодака"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4295,7 +4346,7 @@ msgid "Polish"
msgstr "Пољски"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Сортирање"
@@ -4943,47 +4994,6 @@ msgstr "Сачувај"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Фактор умањења је премали да би схема стала на једну страну"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Претраживање базе"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Унутар табела:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Речи или вредности које се траже (џокер: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "бар једну од речи"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "све речи"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "тачан израз"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "као регуларни израз"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Резултати претраге за \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Тражи:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфигурациона датотека захтева тајну лозинку (blowfish_secret)."
@@ -5811,7 +5821,7 @@ msgstr "Све мало/велико"
msgid "Snap to grid"
msgstr "Држи се мреже"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5827,10 +5837,6 @@ msgstr "Заузеће"
msgid "Spanish"
msgstr "Шпански"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Речи се одвајају размаком (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Тип извоза"
@@ -5960,7 +5966,7 @@ msgstr "Шведски"
msgid "Switch to copied table"
msgstr "Пређи на копирану табелу"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6540,7 +6546,7 @@ msgstr "Име корисника није унето!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Име корисника"
@@ -6776,17 +6782,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "макс. истовремених веза"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index c405da2..b89abfb 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
@@ -47,7 +47,7 @@ msgstr "Pretraživanje"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -65,7 +65,7 @@ msgstr "Pretraživanje"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -198,11 +198,13 @@ msgstr "Štampaj"
msgid "View dump (schema) of database"
msgstr "Prikaži sadržaj (shemu) baze"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Izaberi sve"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "ništa"
@@ -504,14 +506,85 @@ msgstr "SQL upit na bazi <b>%s</b>:"
msgid "Submit Query"
msgstr "Izvrši SQL upit"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Pristup odbijen"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "bar jednu od reči"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "sve reči"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "tačan izraz"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "kao regularni izraz"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Rezultati pretrage za \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s pogodaka unutar tabele <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Pregled"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Obriši"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Ukupno:</b> <i>%s</i> pogodaka"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Pretraživanje baze"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Traži:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Reči se odvajaju razmakom (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Unutar tabela:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -677,8 +750,8 @@ msgstr "Proveri tabelu"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Baza podataka"
@@ -1066,13 +1139,6 @@ msgstr "u sekundi"
msgid "Cannot connect: invalid settings."
msgstr "Ne mogu da se povežem: neispravna podešavanja."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Pristup odbijen"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1524,7 +1590,7 @@ msgstr "Nema lozinke"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Lozinka"
@@ -1817,14 +1883,6 @@ msgstr "Izvrši upamćen upit"
msgid "The row has been deleted"
msgstr "Red je obrisan"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Obriši"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2192,7 +2250,7 @@ msgstr "Struktura tabele"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Domaćin"
@@ -3054,6 +3112,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s baza je uspešno odbačeno."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Pretraživanje baze"
@@ -3081,6 +3140,7 @@ msgstr ""
"veb i MySQL servera."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Pretraživanje baze"
@@ -3802,7 +3862,8 @@ msgstr "Keš ključeva"
msgid "Korean"
msgstr "Korejski"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Nepoznat jezik: %1$s."
@@ -4025,7 +4086,7 @@ msgid "Show processes"
msgstr "Prikaži listu procesa"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Baza ne postoji"
@@ -4136,16 +4197,6 @@ msgstr "Korisnik nije nađen."
msgid "Number of tables"
msgstr "Broj tabela"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s pogodaka unutar tabele <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Ukupno:</b> <i>%s</i> pogodaka"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4296,7 +4347,7 @@ msgid "Polish"
msgstr "Poljski"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sortiranje"
@@ -4945,47 +4996,6 @@ msgstr "Sačuvaj"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Faktor umanjenja je premali da bi shema stala na jednu stranu"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Pretraživanje baze"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Unutar tabela:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Reči ili vrednosti koje se traže (džoker: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "bar jednu od reči"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "sve reči"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "tačan izraz"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "kao regularni izraz"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Rezultati pretrage za \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Traži:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfiguraciona datoteka zahteva tajnu lozinku (blowfish_secret)."
@@ -5815,7 +5825,7 @@ msgstr "Sve malo/veliko"
msgid "Snap to grid"
msgstr "Drži se mreže"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5831,10 +5841,6 @@ msgstr "Zauzeće"
msgid "Spanish"
msgstr "Španski"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Reči se odvajaju razmakom (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Tip izvoza"
@@ -5964,7 +5970,7 @@ msgstr "Švedski"
msgid "Switch to copied table"
msgstr "Pređi na kopiranu tabelu"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6545,7 +6551,7 @@ msgstr "Ime korisnika nije uneto!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Ime korisnika"
@@ -6781,17 +6787,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "maks. istovremenih veza"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/sv.po b/po/sv.po
index 201bcef..b08c805 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish <sv(a)li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Sök"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Sök"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Skriv ut"
msgid "View dump (schema) of database"
msgstr "Visa SQL-satser för databasen"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Markera alla"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Avmarkera alla"
@@ -500,14 +502,85 @@ msgstr "SQL-fråga i databas <b>%s</b>:"
msgid "Submit Query"
msgstr "Kör fråga"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Åtkomst nekad"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "minst ett av orden"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "alla ord"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "den exakta frasen"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "som reguljärt uttryck"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Resultat av sökning efter \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s träff(ar) i tabell <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Visa"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Radera"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Totalt:</b> <i>%s</i> träff(ar)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Sök i databas"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Ord eller värde(n) att söka efter (jokertecken: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Hitta:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Ord separeras med mellanslag (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "I tabell(er):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "I fält:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -673,8 +746,8 @@ msgstr "Hoppa över låsta tabeller"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Databas"
@@ -1065,13 +1138,6 @@ msgstr "per sekund"
msgid "Cannot connect: invalid settings."
msgstr "Kan ej skapa förbindelse: ogiltiga inställningar."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Åtkomst nekad"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1524,7 +1590,7 @@ msgstr "Inget lösenord"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Lösenord"
@@ -1822,14 +1888,6 @@ msgstr "Utför bokmärkt fråga"
msgid "The row has been deleted"
msgstr "Raden har raderats"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Radera"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2219,7 +2277,7 @@ msgstr "Struktur för tabell"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Värd"
@@ -3084,6 +3142,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s databaser har tagits bort."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Sök i databas"
@@ -3111,6 +3170,7 @@ msgstr ""
"MySQL-servern."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Sök i databas"
@@ -3837,7 +3897,8 @@ msgstr "Nyckelcache"
msgid "Korean"
msgstr "Koreansk"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Okänt språk: %1$s."
@@ -4060,7 +4121,7 @@ msgid "Show processes"
msgstr "Visa processer"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Inga databaser"
@@ -4172,16 +4233,6 @@ msgstr "Hittade ingen användare."
msgid "Number of tables"
msgstr "Antal tabeller"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s träff(ar) i tabell <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Totalt:</b> <i>%s</i> träff(ar)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4330,7 +4381,7 @@ msgid "Polish"
msgstr "Polska"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Sortering"
@@ -4987,47 +5038,6 @@ msgstr "Spara"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Skalfaktorn är för liten för att schemat ska få plats på en sida"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Sök i databas"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "I fält:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "I tabell(er):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Ord eller värde(n) att söka efter (jokertecken: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "minst ett av orden"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "alla ord"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "den exakta frasen"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "som reguljärt uttryck"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Resultat av sökning efter \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Hitta:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Konfigurationsfilen behöver nu ett hemligt lösenord (blowfish_secret)."
@@ -5861,7 +5871,7 @@ msgstr "Små/stora alla"
msgid "Snap to grid"
msgstr "Fäst vid rutnät"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5877,10 +5887,6 @@ msgstr "Utrymmesanvändning"
msgid "Spanish"
msgstr "Spansk
a"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Ord separeras med mellanslag (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Export-typ"
@@ -6011,7 +6017,7 @@ msgstr "Svensk"
msgid "Switch to copied table"
msgstr "Byt till kopierad tabell"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6594,7 +6600,7 @@ msgstr "Användarnamnet är tomt!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Användarnamn"
@@ -6840,17 +6846,17 @@ msgstr ""
"information om replikeringsstatus på servern, gå till <a href=\"#replication"
"\">replikeringssektionen</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Osäker anslutning"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/ta.po b/po/ta.po
index 00935c6..a148b6e 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr ""
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr ""
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr ""
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr ""
@@ -496,14 +498,85 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr ""
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr ""
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr ""
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr ""
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr ""
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr ""
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr ""
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr ""
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr ""
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr ""
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr ""
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr ""
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr ""
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr ""
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -668,8 +741,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr ""
@@ -1041,13 +1114,6 @@ msgstr ""
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "அனுமதி நிராகரிக்கப்பட்டுள்ளது"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1477,7 +1543,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr ""
@@ -1756,14 +1822,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr ""
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2110,7 +2168,7 @@ msgstr ""
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr ""
@@ -2952,6 +3010,7 @@ msgid "%s databases have been dropped successfully."
msgstr ""
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -2976,6 +3035,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3671,7 +3731,8 @@ msgstr ""
msgid "Korean"
msgstr ""
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3878,7 +3939,7 @@ msgid "Show processes"
msgstr ""
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr ""
@@ -3983,16 +4044,6 @@ msgstr ""
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr ""
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr ""
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4140,7 +4191,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4768,47 +4819,6 @@ msgstr ""
msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr ""
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr ""
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr ""
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr ""
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr ""
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr ""
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr ""
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr ""
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr ""
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5520,7 +5530,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5536,10 +5546,6 @@ msgstr ""
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr ""
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5653,7 +5659,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr ""
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6187,7 +6193,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr ""
@@ -6400,15 +6406,15 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr ""
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/te.po b/po/te.po
index e1c9252..6854221 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-02 12:04+0200\n"
"Last-Translator: <veeven(a)gmail.com>\n"
"Language-Team: Telugu <te(a)li.org>\n"
@@ -47,7 +47,7 @@ msgstr "శోధించు"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -65,7 +65,7 @@ msgstr "శోధించు"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -198,11 +198,13 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr ""
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr ""
@@ -505,14 +507,86 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr ""
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr ""
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "అన్ని పదాలూ"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr ""
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr ""
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr ""
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr ""
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr ""
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "తొలగించు"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>మొత్తం:</b> <i>%s</i> పోలిక(లు)"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr ""
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr ""
+
+# మొదటి అనువాదము
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "వెతుకు"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr ""
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr ""
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -681,8 +755,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "డేటాబేస్"
@@ -1067,13 +1141,6 @@ msgstr "క్షణానికి"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1503,7 +1570,7 @@ msgstr "సంకేతపదం లేదు"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "సంకేతపదం"
@@ -1784,14 +1851,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "తొలగించు"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2141,7 +2200,7 @@ msgstr ""
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr ""
@@ -3000,6 +3059,7 @@ msgid "%s databases have been dropped successfully."
msgstr ""
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -3024,6 +3084,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3721,7 +3782,8 @@ msgstr ""
msgid "Korean"
msgstr "కొరియన్"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3929,7 +3991,7 @@ msgid "Show processes"
msgstr ""
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr ""
@@ -4034,16 +4096,6 @@ msgstr ""
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr ""
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>మొత్తం:</b> <i>%s</i> పోలిక(లు)"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4193,7 +4245,7 @@ msgid "Polish"
msgstr "పోలిష్"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4821,48 +4873,6 @@ msgstr "భద్రపరచు"
msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr ""
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr ""
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr ""
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr ""
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "అన్ని పదాలూ"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr ""
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr ""
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr ""
-
-# మొదటి అనువాదము
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "వెతుకు"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5583,7 +5593,7 @@ msgstr "చిన్నవి / పెద్దవి అన్నియు"
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5599,10 +5609,6 @@ msgstr ""
msgid "Spanish"
msgstr "స్పానిష్"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr ""
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "ఎగుమతి రకం"
@@ -5719,7 +5725,7 @@ msgstr "స్వీడీష్"
msgid "Switch to copied table"
msgstr ""
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6258,7 +6264,7 @@ msgstr "వాడుకరి పేరులో ఏమీ లేదు"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "వాడుకరి పేరు"
@@ -6481,17 +6487,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "అనుసంధానాలు"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Server configuration"
msgid "Configuration: %s"
diff --git a/po/th.po b/po/th.po
index ca9505e..ba8a1c2 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai <th(a)li.org>\n"
@@ -41,7 +41,7 @@ msgstr "ค้นหา"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -59,7 +59,7 @@ msgstr "ค้นหา"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -192,11 +192,13 @@ msgstr "พิมพ์"
msgid "View dump (schema) of database"
msgstr "ดูโครงสร้างของฐานข้อมูล"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "เลือกทั้งหมด"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "ไม่เลือกเลย"
@@ -500,14 +502,85 @@ msgstr "คำค้นบนฐานข้อมูล <b>%s</b>:"
msgid "Submit Query"
msgstr "ประมวลผลคำค้น"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "ไม่อนุญาตให้ใช้งาน"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "อย่างน้อยหนึ่งคำ"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "ทุกคำ"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "เหมือนทั้งวลี"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "รูปแบบคำพ้อง (regular expression)"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "ผลการค้นหา \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "พบ %s ผลลัพธ์ที่ตรงในตาราง <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "เปิดดู"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "ลบ"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>รวม:</b> <i>%s</i> ผลลัพธ์ที่ตรง"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "ค้นหาในฐานข้อมูล"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "ค้น:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "ในตาราง:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -673,8 +746,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "ฐานข้อมูล"
@@ -1061,13 +1134,6 @@ msgstr "ต่อวินาที"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "ไม่อนุญาตให้ใช้งาน"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1504,7 +1570,7 @@ msgstr "ไม่มีรหัสผ่าน"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "รหัสผ่าน"
@@ -1793,14 +1859,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr "ลบเรียบร้อยแล้ว"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "ลบ"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2150,7 +2208,7 @@ msgstr "โครงสร้างตาราง"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "โฮสต์"
@@ -3014,6 +3072,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s ฐานข้อมูลได้ถูกทิ้งไปเรียบร้อยแล้ว."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "ค้นหาในฐานข้อมูล"
@@ -3041,6 +3100,7 @@ msgstr ""
"ระหว่างเว็บเซิร์ฟเวอร์ และเซิร์ฟเวอร์ MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "ค้นหาในฐานข้อมูล"
@@ -3747,7 +3807,8 @@ msgstr ""
msgid "Korean"
msgstr "เกาหลี"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3958,7 +4019,7 @@ msgid "Show processes"
msgstr "แสดงงานที่ทำอยู่ของ MySQL"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "ไม่มีฐานข้อมูล"
@@ -4064,16 +4125,6 @@ msgstr "ไม่พบผู้ใช้ใดๆ."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "พบ %s ผลลัพธ์ที่ตรงในตาราง <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>รวม:</b> <i>%s</i> ผลลัพธ์ที่ตรง"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4226,7 +4277,7 @@ msgid "Polish"
msgstr "โปแลนด์"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "เรียง"
@@ -4867,47 +4918,6 @@ msgstr "บันทึก"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "อัตราย่อน้อยเกินไป ที่จะจัดให้สกีมาอยู่ในหน้าเดียว"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "ค้นหาในฐานข้อมูล"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "ในตาราง:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "คำ หรือ ค่าที่ต้องการค้นหา (wildcard: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "อย่างน้อยหนึ่งคำ"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "ทุกคำ"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "เหมือนทั้งวลี"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "รูปแบบคำพ้อง (regular expression)"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "ผลการค้นหา \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "ค้น:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5628,7 +5638,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5644,10 +5654,6 @@ msgstr "เนื้อที่ที่ใช้"
msgid "Spanish"
msgstr "สเปน"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "คำถูกแบ่งด้วยช่องว่าง (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5773,7 +5779,7 @@ msgstr "สวีเดน"
msgid "Switch to copied table"
msgstr "สลับไปที่ตารางที่ถูกทำสำเนาไว้"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6315,7 +6321,7 @@ msgstr "ชื่อผู้ใช้ยังว่างอยู่!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "ชื่อผู้ใช้"
@@ -6545,17 +6551,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "การเชื่อมต่อ"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/tr.po b/po/tr.po
index 52af19d..189d05b 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-03 11:44+0200\n"
"Last-Translator: <hitowerdigit(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Ara"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Ara"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Yazdır"
msgid "View dump (schema) of database"
msgstr "Veritabanının dökümünü (şemasını) göster"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Tümünü Seç"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Tüm Seçimi Kaldır"
@@ -502,14 +504,85 @@ msgstr "<b>%s</b> veritabanındaki SQL sorgusu:"
msgid "Submit Query"
msgstr "Sorguyu Gönder"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Erişim engellendi"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "kelimelerin en azından biri"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "tüm kelimeler"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "kesin ifade"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "kurallı ifade olarak"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "\"<i>%s</i>\" %s için arama sonuçları:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s eşleşme, <i>%s</i> tablosu içinde"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Gözat"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Sil"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Toplam:</b> <i>%s</i> eşleşme"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Veritabanında ara"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Aranacak kelime(ler) veya değer(ler) ( joker: \"%\" ):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Bul:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Kelimeler boşlukla ayrılır (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Tablo içindeki(ler):"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "İç alan:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -676,8 +749,8 @@ msgstr "İzlenen tablolar"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Veritabanı"
@@ -1062,13 +1135,6 @@ msgstr "saniye başına"
msgid "Cannot connect: invalid settings."
msgstr "Bağlanamıyor: geçersiz ayarlar."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Erişim engellendi"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1528,7 +1594,7 @@ msgstr "Parola yok"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Parola"
@@ -1827,14 +1893,6 @@ msgstr "İşaretlenmiş sorguyu çalıştır"
msgid "The row has been deleted"
msgstr "Satır silindi"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Sil"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2228,7 +2286,7 @@ msgstr "Tablo için tablo yapısı:"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Anamakine"
@@ -3086,6 +3144,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s veritabanları başarılı olarak kaldırıldı."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Kaynak veritabanı"
@@ -3112,6 +3171,7 @@ msgstr ""
"MySQL sunucusu arasında yüksek trafiğe yol açabilir."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Hedef veritabanı"
@@ -3839,7 +3899,8 @@ msgstr "Anahtar önbelleği"
msgid "Korean"
msgstr "Korece"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Bilinmeyen dil: %1$s."
@@ -4063,7 +4124,7 @@ msgid "Show processes"
msgstr "İşlemleri göster"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Veritabanı yok"
@@ -4173,16 +4234,6 @@ msgstr "Kullanıcı(lar) bulunamadı."
msgid "Number of tables"
msgstr "Tablo sayısı"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s eşleşme, <i>%s</i> tablosu içinde"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Toplam:</b> <i>%s</i> eşleşme"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4334,7 +4385,7 @@ msgid "Polish"
msgstr "Polonyaca"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "B.Noktası"
@@ -5003,47 +5054,6 @@ msgstr "Kaydet"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Ölçek, şemayı bir sayfaya sığdırmak için çok küçük"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Veritabanında ara"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "İç alan:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Tablo içindeki(ler):"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Aranacak kelime(ler) veya değer(ler) ( joker: \"%\" ):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "kelimelerin en azından biri"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "tüm kelimeler"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "kesin ifade"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "kurallı ifade olarak"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "\"<i>%s</i>\" %s için arama sonuçları:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Bul:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5882,7 +5892,7 @@ msgstr "Tümü Küçük/Büyük"
msgid "Snap to grid"
msgstr "Kılavuza ayarla"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Soket"
@@ -5898,10 +5908,6 @@ msgstr "Alan kullanımı"
msgid "Spanish"
msgstr "İspanyolca"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Kelimeler boşlukla ayrılır (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Dışarı aktarma türü"
@@ -6031,7 +6037,7 @@ msgstr "İsveççe"
msgid "Switch to copied table"
msgstr "Kopyalanmış tabloya geç"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6621,7 +6627,7 @@ msgstr "Kullanıcı adı boş!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Kullanıcı Adı"
@@ -6871,17 +6877,17 @@ msgstr ""
"Sunucudaki kopya etme durumuyla ilgili daha ayrıntılı bilgi için lütfen <a "
"href=\"#replication\">kopya etme bölümünü</a> ziyaret edin."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Güvensiz bağlantı"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/tt.po b/po/tt.po
index 67dc073..54bc191 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: tatarish <tt(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr "Ezläw"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr "Ezläw"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr "Bastır"
msgid "View dump (schema) of database"
msgstr "Biremlek eçtälegen (tözeleşen) çığaru"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Saylap Beter"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Saylanunı Töşer"
@@ -503,14 +505,85 @@ msgstr "<b>%s</b> biremlegenä SQL-soraw:"
msgid "Submit Query"
msgstr "Sorawnı Yulla"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "İreşep Bulmadı"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "berärse bulsa"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "barısı da bulsa"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "tulı tezmä, tögäl kileş"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "regexp kileş"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "\"<i>%s</i>\" ezläw näticäse %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s kileşü bar, <i>%s</i> atlı tüşämädä"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Küzätü"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Sal"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Tulayım:</b> <i>%s</i> kileşü"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Biremlektä ezläw: "
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Ezläw:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Kiläse tüşämä eçendä:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -677,8 +750,8 @@ msgstr "Tüşämä tikşerü"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Biremlek"
@@ -1066,13 +1139,6 @@ msgstr "sekund sayın"
msgid "Cannot connect: invalid settings."
msgstr "Totaşa almím: yaraqsız köyläwlär."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "İreşep Bulmadı"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1519,7 +1585,7 @@ msgstr "Sersüzsez"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Sersüz"
@@ -1808,14 +1874,6 @@ 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:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Sal"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2179,7 +2237,7 @@ msgstr "Tüşämä tözeleşe"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Host"
@@ -3045,6 +3103,7 @@ msgid "%s databases have been dropped successfully."
msgstr "\"%s\" biremlegen beterü uñışlı uzdı."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "Biremlektä ezläw: "
@@ -3072,6 +3131,7 @@ msgstr ""
"between the webserver and the MySQL one."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "Biremlektä ezläw: "
@@ -3789,7 +3849,8 @@ msgstr "Tezeş alxätere"
msgid "Korean"
msgstr "Koreyçä"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Belgesez tel: %1$s."
@@ -4010,7 +4071,7 @@ msgid "Show processes"
msgstr "Proseslär tezmäse"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Biremleklär yuq"
@@ -4119,16 +4180,6 @@ msgstr "Qullanuçı yuq."
msgid "Number of tables"
msgstr "Alannar sanı"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s kileşü bar, <i>%s</i> atlı tüşämädä"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Tulayım:</b> <i>%s</i> kileşü"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4279,7 +4330,7 @@ msgid "Polish"
msgstr "Polça"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "Tezü"
@@ -4924,47 +4975,6 @@ msgstr "Saqla"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Bu sxemnı ber bittä urnaştıru öçen, olılıq sanı bik keçe"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Biremlektä ezläw: "
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Kiläse tüşämä eçendä:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Tabası süz/bäyä tezmäse (almaşbilgese: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "berärse bulsa"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "barısı da bulsa"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "tulı tezmä, tögäl kileş"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "regexp kileş"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "\"<i>%s</i>\" ezläw näticäse %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Ezläw:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5696,7 +5706,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5712,10 +5722,6 @@ msgstr "Totılğan Alan"
msgid "Spanish"
msgstr "İspança"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Süzlärne buşlıq bilgese belän ayırası (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Çığaru ısulı"
@@ -5843,7 +5849,7 @@ msgstr "İswäcçä"
msgid "Switch to copied table"
msgstr "Kübäytelgän tüşämägä küçäse"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6408,7 +6414,7 @@ msgstr "Atama buş!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "İreşü iseme"
@@ -6644,17 +6650,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "Totaşular"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/uk.po b/po/uk.po
index 5759748..63e6a60 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
@@ -41,7 +41,7 @@ msgstr "Шукати"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -59,7 +59,7 @@ msgstr "Шукати"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -192,11 +192,13 @@ msgstr "Друк"
msgid "View dump (schema) of database"
msgstr "Переглянути дамп (схему) БД"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Відмітити все"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Зняти всі відмітки"
@@ -497,14 +499,85 @@ msgstr "SQL-запит до БД <b>%s</b>:"
msgid "Submit Query"
msgstr "Виконати запит"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Доступ заборонено"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "принаймі одне з слів"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "всі слова"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "точну фразу"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "регулярний вираз"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "Результати пошуку \"<i>%s</i>\" %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s співпадіння у таблиці <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Переглянути"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Видалити"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Разом:</b> <i>%s</i> співпадіння"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Шукати в базі даних"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Слова чи значення, які потрібно знайти (маска: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Знайти:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Слова розділені пробілом (\" \")."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Всередині таблиць:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -669,8 +742,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "БД"
@@ -1052,13 +1125,6 @@ msgstr "за секунду"
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Доступ заборонено"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1502,7 +1568,7 @@ msgstr "Без паролю"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Пароль"
@@ -1787,14 +1853,6 @@ msgstr "Виконати збережений запит"
msgid "The row has been deleted"
msgstr "Рядок видалено"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Видалити"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2141,7 +2199,7 @@ msgstr "Структура таблиці"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -2987,6 +3045,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s баз(а\\и) даних успішно знищено."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -3013,6 +3072,7 @@ msgstr ""
"трафік між веб сервером та базою даних MySQL."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3722,7 +3782,8 @@ msgstr ""
msgid "Korean"
msgstr "Корейське"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3936,7 +3997,7 @@ msgid "Show processes"
msgstr "Показати процеси"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "БД відсутні"
@@ -4041,16 +4102,6 @@ msgstr "Не знайдено користувача."
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s співпадіння у таблиці <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Разом:</b> <i>%s</i> співпадіння"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4198,7 +4249,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4840,47 +4891,6 @@ msgstr "Зберегти"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Занадто малий масштаб щоб схема займала цілу сторінку"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Шукати в базі даних"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Всередині таблиць:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wild
card: \"%\"):"
-msgstr "Слова чи значення, які потрібно знайти (маска: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "принаймі одне з слів"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "всі слова"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "точну фразу"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "регулярний вираз"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "Результати пошуку \"<i>%s</i>\" %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Знайти:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "Конфігураційний файл потребує секретну фразу (пароль)."
@@ -5598,7 +5608,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5614,10 +5624,6 @@ msgstr "Простір, що використовується"
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Слова розділені пробілом (\" \")."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5744,7 +5750,7 @@ msgstr "Шведське"
msgid "Switch to copied table"
msgstr "Перейти до скопійованої таблиці"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6301,7 +6307,7 @@ msgstr "Порожнє і'мя користувача!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Ім'я користувача"
@@ -6530,17 +6536,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Connections"
msgid "Current connection"
msgstr "З'єднань"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/ur.po b/po/ur.po
index d8291ab..56a4625 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Urdu <ur(a)li.org>\n"
@@ -46,7 +46,7 @@ msgstr ""
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -64,7 +64,7 @@ msgstr ""
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -197,11 +197,13 @@ msgstr ""
msgid "View dump (schema) of database"
msgstr ""
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr ""
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr ""
@@ -496,14 +498,85 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr ""
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr ""
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr ""
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr ""
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr ""
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr ""
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr ""
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr ""
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr ""
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr ""
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr ""
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr ""
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr ""
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr ""
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr ""
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -668,8 +741,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr ""
@@ -1003,13 +1076,6 @@ msgstr ""
msgid "Cannot connect: invalid settings."
msgstr ""
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr ""
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1434,7 +1500,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr ""
@@ -1713,14 +1779,6 @@ msgstr ""
msgid "The row has been deleted"
msgstr ""
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr ""
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2067,7 +2125,7 @@ msgstr ""
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr ""
@@ -2909,6 +2967,7 @@ msgid "%s databases have been dropped successfully."
msgstr ""
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr ""
@@ -2933,6 +2992,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr ""
@@ -3628,7 +3688,8 @@ msgstr ""
msgid "Korean"
msgstr ""
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -3835,7 +3896,7 @@ msgid "Show processes"
msgstr ""
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr ""
@@ -3940,16 +4001,6 @@ msgstr ""
msgid "Number of tables"
msgstr ""
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr ""
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr ""
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4097,7 +4148,7 @@ msgid "Polish"
msgstr ""
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr ""
@@ -4725,47 +4776,6 @@ msgstr ""
msgid "The scale factor is too small to fit the schema on one page"
msgstr ""
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr ""
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr ""
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr ""
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr ""
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr ""
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr ""
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr ""
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr ""
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr ""
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5477,7 +5487,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5493,10 +5503,6 @@ msgstr ""
msgid "Spanish"
msgstr ""
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr ""
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr ""
@@ -5610,7 +5616,7 @@ msgstr ""
msgid "Switch to copied table"
msgstr ""
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6144,7 +6150,7 @@ msgstr ""
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr ""
@@ -6357,15 +6363,15 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
msgid "Current connection"
msgstr ""
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index 6d4cb8f..6795f6b 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic <uz(a)li.org>\n"
@@ -43,7 +43,7 @@ msgstr "Қидириш"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -61,7 +61,7 @@ msgstr "Қидириш"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -194,11 +194,13 @@ msgstr "Чоп этиш"
msgid "View dump (schema) of database"
msgstr "Маълумотлар базаси дампини (схемасини) намойиш этиш"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Барчасини белгилаш"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Белгилашни бекор қилиш"
@@ -499,14 +501,85 @@ msgstr "<b>\"%s\"</b> маълумотлар базасига SQL-сўров: "
msgid "Submit Query"
msgstr "сўровни бажариш"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Рухсат берилмади"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "сўзлардан бири"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "барча сўзлар"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "аниқ мослик"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "мунтазам ибора"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "\"<i>\"%s\"</i>\" учун қидирув натижалари \"%s\":"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "<i>\"%s\"</i> жадвалида ўхшашликлар сони \"%s\" та"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Кўриб чиқиш"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "Ўчириш"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Жами:</b> <i>\"%s\"</i> ўхшашлик"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Маълумотлар базасида қидириш"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Излаш:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Қуйидаги жадвал(лар)да қидириш:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Қуйидаги майдон(лар)да қидириш: "
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -673,8 +746,8 @@ msgstr "Кузатилган жадваллар"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Маълумотлар базаси"
@@ -1059,13 +1132,6 @@ msgstr "секундига"
msgid "Cannot connect: invalid settings."
msgstr "Уланиб бўлмади: нотўғри созланган."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Рухсат берилмади"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1530,7 +1596,7 @@ msgstr "Парол йўқ"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Парол"
@@ -1828,14 +1894,6 @@ msgstr "Белгиланган сўровни бажариш"
msgid "The row has been deleted"
msgstr "Ёзув ўчирилди"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "Ўчириш"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2229,7 +2287,7 @@ msgstr "Жадвал тузилиши"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Хост"
@@ -3101,6 +3159,7 @@ msgid "%s databases have been dropped successfully."
msgstr "\"%s\" маълумотлар базаси муваффақиятли ўчирилди."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Манба база"
@@ -3127,6 +3186,7 @@ msgstr ""
"сабаб бўлиши мумкин."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Нишон база"
@@ -3855,7 +3915,8 @@ msgstr "Индекс кеши"
msgid "Korean"
msgstr "Корейсча"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Номаълум тил: %1$s."
@@ -4080,7 +4141,7 @@ msgid "Show processes"
msgstr "Жараёнлар рўйхати"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Маълумотлар базаси мавжуд эмас"
@@ -4191,16 +4252,6 @@ msgstr "Биронта ҳам фойдаланувчи топилмади."
msgid "Number of tables"
msgstr "Жадваллар сони "
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "<i>\"%s\"</i> жадвалида ўхшашликлар сони \"%s\" та"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Жами:</b> <i>\"%s\"</i> ўхшашлик"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4353,7 +4404,7 @@ msgid "Polish"
msgstr "Полякча"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Порт"
@@ -5028,47 +5079,6 @@ msgstr "Сақлаш"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Схема битта саҳифага сиғмайди. Масштабни кичрайтириш зарур."
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Маълумотлар базасида қидириш"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Қуйидаги майдон(лар)да қидириш: "
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Қуйидаги жадвал(лар)да қидириш:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "Қидириш учун сўз(лар) ёки қиймат(лар) (ўрнига қўйиш белгиси: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "сўзлардан бири"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "барча сўзлар"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "аниқ мослик"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "мунтазам ибора"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "\"<i>\"%s\"</i>\" учун қидирув натижалари \"%s\":"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Излаш:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5922,7 +5932,7 @@ msgstr "Барча жадваллар кўрсатилишини Тахлаш/Т
msgid "Snap to grid"
msgstr "Тўрга боғлаб қўйиш"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Сокет"
@@ -5938,10 +5948,6 @@ msgstr "Фойдаланилаётган жой"
msgid "Spanish"
msgstr "Испанча"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "Сўзлар бўш жой (\" \") ёрдамида бўлинган."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Эскпорт тури"
@@ -6070,7 +6076,7 @@ msgstr "Шведча"
msgid "Switch to copied table"
msgstr "Нусха олинган жадвалга ўтиш"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6662,7 +6668,7 @@ msgstr "Фойдаланувчи номи белгиланмаган!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Фойдаланувчи номи"
@@ -6912,17 +6918,17 @@ msgstr ""
"сифатида ишлайди. Сервернинг репликация статуси ҳақида батафсил маълумот "
"учун, <a href=\"#replication\">репликация бўлими</a>га киринг."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Нохавфсиз уланиш"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index 55c82a6..b938ba0 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
@@ -44,7 +44,7 @@ msgstr "Qidirish"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -62,7 +62,7 @@ msgstr "Qidirish"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -195,11 +195,13 @@ msgstr "Chop etish"
msgid "View dump (schema) of database"
msgstr "Ma`lumotlar bazasi dampini (sxemasini) namoyish etish"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "Barchasini belgilash"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "Belgilashni bekor qilish"
@@ -500,14 +502,86 @@ msgstr "<b>\"%s\"</b> ma`lumotlar bazasiga SQL-so‘rov: "
msgid "Submit Query"
msgstr "so‘rovni bajarish"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "Ruxsat berilmadi"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "so‘zlardan biri"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "barcha so‘zlar"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "aniq moslik"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "muntazam ibora"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "\"<i>\"%s\"</i>\" uchun qidiruv natijalari \"%s\":"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "<i>\"%s\"</i> jadvalida o‘xshashliklar soni \"%s\" ta"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "Ko‘rib chiqish"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "O‘chirish"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>Jami:</b> <i>\"%s\"</i> o‘xshashlik"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "Ma`lumotlar bazasida qidirish"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr ""
+"Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "Izlash:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "Quyidagi jadval(lar)da qidirish:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "Quyidagi maydon(lar)da qidirish: "
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -674,8 +748,8 @@ msgstr "Kuzatilgan jadvallar"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "Ma`lumotlar bazasi"
@@ -1061,13 +1135,6 @@ msgstr "sekundiga"
msgid "Cannot connect: invalid settings."
msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "Ruxsat berilmadi"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1534,7 +1601,7 @@ msgstr "Parol yo‘q"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "Parol"
@@ -1835,14 +1902,6 @@ msgstr "Belgilangan so‘rovni bajarish"
msgid "The row has been deleted"
msgstr "Yozuv o‘chirildi"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "O‘chirish"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2239,7 +2298,7 @@ msgstr "Jadval tuzilishi"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "Xost"
@@ -3114,6 +3173,7 @@ msgid "%s databases have been dropped successfully."
msgstr "\"%s\" ma`lumotlar bazasi muvaffaqiyatli o‘chirildi."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "Manba baza"
@@ -3140,6 +3200,7 @@ msgstr ""
"traffikka sabab bo‘lishi mumkin."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "Nishon baza"
@@ -3872,7 +3933,8 @@ msgstr "Indeks keshi"
msgid "Korean"
msgstr "Koreyscha"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "Noma`lum til: %1$s."
@@ -4098,7 +4160,7 @@ msgid "Show processes"
msgstr "Jarayonlar ro‘yxati"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "Ma`lumotlar bazasi mavjud emas"
@@ -4211,16 +4273,6 @@ msgstr "Bironta ham foydalanuvchi topilmadi."
msgid "Number of tables"
msgstr "Jadvallar soni "
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "<i>\"%s\"</i> jadvalida o‘xshashliklar soni \"%s\" ta"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>Jami:</b> <i>\"%s\"</i> o‘xshashlik"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4376,7 +4428,7 @@ msgid "Polish"
msgstr "Polyakcha"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "Port"
@@ -5059,48 +5111,6 @@ msgstr "Saqlash"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "Sxema bitta sahifaga sig‘maydi. Masshtabni kichraytirish zarur."
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "Ma`lumotlar bazasida qidirish"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "Quyidagi maydon(lar)da qidirish: "
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "Quyidagi jadval(lar)da qidirish:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr ""
-"Qidirish uchun so‘z(lar) yoki qiymat(lar) (o‘rniga qo‘yish belgisi: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "so‘zlardan biri"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "barcha so‘zlar"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "aniq moslik"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "muntazam ibora"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "\"<i>\"%s\"</i>\" uchun qidiruv natijalari \"%s\":"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "Izlash:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr ""
@@ -5961,7 +5971,7 @@ msgstr "Barcha jadvallar ko‘rsatilishini Taxlash/Tiklash"
msgid "Snap to grid"
msgstr "To‘rga bog‘lab qo‘yish"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "Sokеt"
@@ -5977,10 +5987,6 @@ msgstr "Foydalanilayotgan joy"
msgid "Spanish"
msgstr "Ispancha"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "So‘zlar bo‘sh joy (\" \") yordamida bo‘lingan."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "Eskport turi"
@@ -6111,7 +6117,7 @@ msgstr "Shvedcha"
msgid "Switch to copied table"
msgstr "Nusxa olingan jadvalga o‘tish"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6708,7 +6714,7 @@ msgstr "Foydalanuvchi nomi belgilanmagan!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "Foydalanuvchi nomi"
@@ -6964,17 +6970,17 @@ msgstr ""
"uchun, <a href=\"#replication\">replikatsiya bo‘limi</a>ga "
"kiring."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "Noxavfsiz ulanish"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 027ca36..71ba3e4 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-04-08 13:06+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN(a)li.org>\n"
@@ -45,7 +45,7 @@ msgstr "搜索"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -63,7 +63,7 @@ msgstr "搜索"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -196,11 +196,13 @@ msgstr "打印"
msgid "View dump (schema) of database"
msgstr "查看数据库的转存(大纲)。"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "全选"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "全不选"
@@ -501,14 +503,85 @@ msgstr "在数据库 <b>%s</b> 执行 SQL 语句:"
msgid "Submit Query"
msgstr "提交查询"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "拒绝访问"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "至少一个词"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "所有词"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "精确短语"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "使用正则表达式"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "“<i>%s</i>”的搜索结果 %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s 个匹配 - 于表 <i>%s</i> 中"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "浏览"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "删除"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>总计:</b> <i>%s</i> 个匹配"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "在数据库中搜索"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "要查找的文字或数值 (通配符:“%”):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "查找:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "每个单词用空格 (“ ”) 分隔。"
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "于以下表:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr "包含字段:"
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -673,8 +746,8 @@ msgstr "已追踪的表"
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "数据库"
@@ -1058,13 +1131,6 @@ msgstr "每秒"
msgid "Cannot connect: invalid settings."
msgstr "无法连接:无效的设置。"
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "拒绝访问"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1505,7 +1571,7 @@ msgstr "无密码"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "密码"
@@ -1796,14 +1862,6 @@ msgstr "执行书签中的查询"
msgid "The row has been deleted"
msgstr "已删除该行"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "删除"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2169,7 +2227,7 @@ msgstr "表的结构"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "主机"
@@ -3013,6 +3071,7 @@ msgid "%s databases have been dropped successfully."
msgstr "已成功删除 %s 个数据库。"
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
msgid "Source database"
msgstr "源数据库"
@@ -3038,6 +3097,7 @@ msgstr ""
"注意:在此启用数据库统计可能导致网站服务器和 MySQL 服务器之间的流量骤增。"
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
msgid "Target database"
msgstr "目标数据库"
@@ -3745,7 +3805,8 @@ msgstr "键缓存"
msgid "Korean"
msgstr "朝鲜语"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "未知的语言:%1$s."
@@ -3960,7 +4021,7 @@ msgid "Show processes"
msgstr "显示进程"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "无数据库"
@@ -4067,16 +4128,6 @@ msgstr "找不到用户。"
msgid "Number of tables"
msgstr "数据表数量"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s 个匹配 - 于表 <i>%s</i> 中"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>总计:</b> <i>%s</i> 个匹配"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4226,7 +4277,7 @@ msgid "Polish"
msgstr "波兰语"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
msgid "Port"
msgstr "端口"
@@ -4866,47 +4917,6 @@ msgstr "保存"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "比例因子太小,无法在一页中显示大纲"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "在数据库中搜索"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr "包含字段:"
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "于以下表:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "要查找的文字或数值 (通配符:“%”):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "至少一个词"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "所有词"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "精确短语"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "使用正则表达式"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "“<i>%s</i>”的搜索结果 %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "查找:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "配置文件现在需要一个短语密码。"
@@ -5685,7 +5695,7 @@ msgstr "全部收缩/展开"
msgid "Snap to grid"
msgstr "对齐网格"
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr "套接字"
@@ -5701,10 +5711,6 @@ msgstr "已用空间"
msgid "Spanish"
msgstr "西班牙语"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "每个单词用空格 (“ ”) 分隔。"
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "导出类型"
@@ -5828,7 +5834,7 @@ msgstr "瑞典语"
msgid "Switch to copied table"
msgstr "切换到复制的数据表"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6385,7 +6391,7 @@ msgstr "用户名不能为空!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "用户名"
@@ -6626,17 +6632,17 @@ msgstr ""
"此 MySQL 服务器运行于 %s <b>复制</b> 进程。要获得更多关于此服务器的复制状态,"
"请浏览 <a href=\"#replication\">复制状态信息</a>."
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
msgstr "非安全连接"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, fuzzy, php-format
#| msgid "Configuration"
msgid "Configuration: %s"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index f647132..44fa1e1 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 12:56-0400\n"
+"POT-Creation-Date: 2010-05-07 13:01-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional <zh_TW(a)li.org>\n"
@@ -43,7 +43,7 @@ msgstr "搜索"
#: browse_foreigners.php:153 db_operations.php:383 db_operations.php:425
#: db_operations.php:495 db_operations.php:603 db_operations.php:696
-#: db_structure.php:567 js/messages.php:50
+#: db_search.php:362 db_structure.php:567 js/messages.php:50
#: libraries/auth/cookie.auth.lib.php:292 libraries/common.lib.php:719
#: libraries/common.lib.php:1333 libraries/common.lib.php:2224
#: libraries/Config.class.php:1046
@@ -61,7 +61,7 @@ msgstr "搜索"
#: server_privileges.php:1585 server_privileges.php:1932
#: server_privileges.php:1979 server_privileges.php:2018
#: server_replication.php:235 server_replication.php:318
-#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
+#: server_replication.php:341 server_synchronize.php:1209 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
@@ -194,11 +194,13 @@ msgstr "列印"
msgid "View dump (schema) of database"
msgstr "檢視資料庫的備份概要 (dump schema)"
-#: db_export.php:43 libraries/messages.inc.php:853 server_export.php:27
+#: db_export.php:43 db_search.php:344 libraries/messages.inc.php:853
+#: server_export.php:27
msgid "Select All"
msgstr "全選"
-#: db_export.php:45 libraries/messages.inc.php:1196 server_export.php:29
+#: db_export.php:45 db_search.php:347 libraries/messages.inc.php:1196
+#: server_export.php:29
msgid "Unselect All"
msgstr "全部取消"
@@ -500,14 +502,85 @@ msgstr "在資料庫 <b>%s</b> 執行 SQL 語法:"
msgid "Submit Query"
msgstr "執行語法"
-#: db_structure.php:77 db_structure.php:78 db_structure.php:90
-#: db_structure.php:92 db_structure.php:103 db_structure.php:105
-#: libraries/messages.inc.php:116 libraries/mult_submits.inc.php:116
-#: libraries/tbl_links.inc.php:50 tbl_structure.php:37 tbl_structure.php:49
-#: tbl_structure.php:468
+#: db_search.php:68 libraries/auth/config.auth.lib.php:84
+#: libraries/auth/config.auth.lib.php:103
+#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
+#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
+msgid "Access denied"
+msgstr "拒絕存取"
+
+#: db_search.php:80 db_search.php:311 libraries/messages.inc.php:844
+msgid "at least one of the words"
+msgstr "任何一組文字"
+
+#: db_search.php:81 db_search.php:312 libraries/messages.inc.php:845
+msgid "all words"
+msgstr "所有文字"
+
+#: db_search.php:82 db_search.php:313 libraries/messages.inc.php:846
+msgid "the exact phrase"
+msgstr "完整詞語"
+
+#: db_search.php:83 db_search.php:314 libraries/messages.inc.php:847
+msgid "as regular expression"
+msgstr "以規則表示法 (regular expression) 搜索"
+
+#: db_search.php:242 libraries/messages.inc.php:848
+#, php-format
+msgid "Search results for \"<i>%s</i>\" %s:"
+msgstr "搜索 \"<i>%s</i>\" 的結果 %s:"
+
+#: db_search.php:260 libraries/messages.inc.php:587
+#, php-format
+msgid "%s match(es) inside table <i>%s</i>"
+msgstr "%s 項資料符合 - 於資料表 <i>%s</i>"
+
+#: db_search.php:267 db_structure.php:77 db_structure.php:78
+#: db_structure.php:90 db_structure.php:92 db_structure.php:103
+#: db_structure.php:105 libraries/messages.inc.php:116
+#: libraries/mult_submits.inc.php:116 libraries/tbl_links.inc.php:50
+#: tbl_structure.php:37 tbl_structure.php:49 tbl_structure.php:468
msgid "Browse"
msgstr "瀏覽"
+#: db_search.php:272 libraries/display_tbl.lib.php:1165
+#: libraries/display_tbl.lib.php:2051 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
+#: tbl_row_action.php:63
+msgid "Delete"
+msgstr "刪除"
+
+#: db_search.php:285 libraries/messages.inc.php:588
+#, php-format
+msgid "<b>Total:</b> <i>%s</i> match(es)"
+msgstr "<b>總計:</b> <i>%s</i> 項資料符合"
+
+#: db_search.php:299 libraries/messages.inc.php:840
+msgid "Search in database"
+msgstr "搜索資料庫"
+
+#: db_search.php:302 libraries/messages.inc.php:843
+msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
+msgstr "尋找之文字或數值 (萬用字元: \"%\"):"
+
+#: db_search.php:307 libraries/messages.inc.php:850
+msgid "Find:"
+msgstr "尋找:"
+
+#: db_search.php:311 db_search.php:312 libraries/messages.inc.php:1025
+msgid "Words are separated by a space character (\" \")."
+msgstr "每組文字以空格 (\" \") 分隔."
+
+#: db_search.php:325 libraries/messages.inc.php:842
+msgid "Inside table(s):"
+msgstr "於以下資料表:"
+
+#: db_search.php:355 libraries/messages.inc.php:841
+msgid "Inside field:"
+msgstr ""
+
#: db_structure.php:81 db_structure.php:82 db_structure.php:94
#: db_structure.php:95 db_structure.php:107 db_structure.php:108
#: libraries/messages.inc.php:439 libraries/sql_query_form.lib.php:334
@@ -672,8 +745,8 @@ msgstr ""
#: libraries/header_printview.inc.php:58 libraries/messages.inc.php:220
#: navigation.php:233 server_databases.php:169 server_privileges.php:1621
#: server_privileges.php:1682 server_privileges.php:1940
-#: server_processlist.php:56 server_synchronize.php:1174
-#: server_synchronize.php:1178 tbl_tracking.php:591 test/theme.php:65
+#: server_processlist.php:56 server_synchronize.php:1179
+#: server_synchronize.php:1183 tbl_tracking.php:591 test/theme.php:65
msgid "Database"
msgstr "資料庫"
@@ -1060,13 +1133,6 @@ msgstr "每秒"
msgid "Cannot connect: invalid settings."
msgstr "無法連線: 錯誤設定."
-#: libraries/auth/config.auth.lib.php:84
-#: libraries/auth/config.auth.lib.php:103
-#: libraries/auth/cookie.auth.lib.php:673 libraries/auth/http.auth.lib.php:52
-#: libraries/auth/signon.auth.lib.php:183 libraries/messages.inc.php:34
-msgid "Access denied"
-msgstr "拒絕存取"
-
#: libraries/auth/config.auth.lib.php:92
#: libraries/auth/cookie.auth.lib.php:219 libraries/auth/http.auth.lib.php:65
#: libraries/messages.inc.php:1246 test/theme.php:152
@@ -1508,7 +1574,7 @@ msgstr "不用密碼"
#: libraries/replication_gui.lib.php:331 libraries/replication_gui.lib.php:335
#: libraries/replication_gui.lib.php:345 server_privileges.php:757
#: server_privileges.php:761 server_privileges.php:772
-#: server_privileges.php:1499 server_synchronize.php:1170
+#: server_privileges.php:1499 server_synchronize.php:1175
msgid "Password"
msgstr "密碼"
@@ -1797,14 +1863,6 @@ msgstr "執行書籤查詢"
msgid "The row has been deleted"
msgstr "記錄已被刪除"
-#: libraries/display_tbl.lib.php:1165 libraries/display_tbl.lib.php:2051
-#: 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 tbl_row_action.php:63
-msgid "Delete"
-msgstr "刪除"
-
#: libraries/display_tbl.lib.php:1184 libraries/display_tbl.lib.php:2051
#: libraries/messages.inc.php:468 server_processlist.php:71
#: tbl_row_action.php:64
@@ -2161,7 +2219,7 @@ msgstr "資料表格式:"
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
#: server_privileges.php:2030 server_processlist.php:55
-#: server_synchronize.php:1154
+#: server_synchronize.php:1159
msgid "Host"
msgstr "主機"
@@ -3021,6 +3079,7 @@ msgid "%s databases have been dropped successfully."
msgstr "%s 個資料庫已成功刪除."
#: libraries/messages.inc.php:228 libraries/server_synchronize.lib.php:1341
+#: server_synchronize.php:1110
#, fuzzy
msgid "Source database"
msgstr "搜索資料庫"
@@ -3046,6 +3105,7 @@ msgid ""
msgstr "註: 啟動資料庫統計數據可能會產生大量由 Web 伺服器及 MySQL 之間的流量."
#: libraries/messages.inc.php:233 libraries/server_synchronize.lib.php:1367
+#: server_synchronize.php:1112
#, fuzzy
msgid "Target database"
msgstr "搜索資料庫"
@@ -3753,7 +3813,8 @@ msgstr "鍵快取"
msgid "Korean"
msgstr "韓語"
-#: libraries/messages.inc.php:474
+#: libraries/messages.inc.php:474 libraries/select_lang.lib.php:480
+#: libraries/select_lang.lib.php:486 libraries/select_lang.lib.php:492
#, php-format
msgid "Unknown language: %1$s."
msgstr "不知名語言: %1$s."
@@ -3966,7 +4027,7 @@ msgid "Show processes"
msgstr "顯示程序 (Process)"
#: libraries/messages.inc.php:553 navigation.php:210 server_databases.php:371
-#: server_synchronize.php:1186
+#: server_synchronize.php:1191
msgid "No databases"
msgstr "沒有資料庫"
@@ -4073,16 +4134,6 @@ msgstr "找不到使用者"
msgid "Number of tables"
msgstr "欄位數目"
-#: libraries/messages.inc.php:587
-#, php-format
-msgid "%s match(es) inside table <i>%s</i>"
-msgstr "%s 項資料符合 - 於資料表 <i>%s</i>"
-
-#: libraries/messages.inc.php:588
-#, php-format
-msgid "<b>Total:</b> <i>%s</i> match(es)"
-msgstr "<b>總計:</b> <i>%s</i> 項資料符合"
-
#: libraries/messages.inc.php:589 server_databases.php:117
#: server_status.php:260 setup/lib/messages.inc.php:117
msgid "Tables"
@@ -4233,7 +4284,7 @@ msgid "Polish"
msgstr "波蘭語"
#: libraries/messages.inc.php:670 libraries/replication_gui.lib.php:67
-#: server_synchronize.php:1158
+#: server_synchronize.php:1163
#, fuzzy
msgid "Port"
msgstr "排序"
@@ -4872,47 +4923,6 @@ msgstr "儲存"
msgid "The scale factor is too small to fit the schema on one page"
msgstr "比例倍數太細, 無法將圖表放在一頁內"
-#: libraries/messages.inc.php:840
-msgid "Search in database"
-msgstr "搜索資料庫"
-
-#: libraries/messages.inc.php:841
-msgid "Inside field:"
-msgstr ""
-
-#: libraries/messages.inc.php:842
-msgid "Inside table(s):"
-msgstr "於以下資料表:"
-
-#: libraries/messages.inc.php:843
-msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
-msgstr "尋找之文字或數值 (萬用字元: \"%\"):"
-
-#: libraries/messages.inc.php:844
-msgid "at least one of the words"
-msgstr "任何一組文字"
-
-#: libraries/messages.inc.php:845
-msgid "all words"
-msgstr "所有文字"
-
-#: libraries/messages.inc.php:846
-msgid "the exact phrase"
-msgstr "完整詞語"
-
-#: libraries/messages.inc.php:847
-msgid "as regular expression"
-msgstr "以規則表示法 (regular expression) 搜索"
-
-#: libraries/messages.inc.php:848
-#, php-format
-msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr "搜索 \"<i>%s</i>\" 的結果 %s:"
-
-#: libraries/messages.inc.php:850
-msgid "Find:"
-msgstr "尋找:"
-
#: libraries/messages.inc.php:851 main.php:298
msgid "The configuration file now needs a secret passphrase (blowfish_secret)."
msgstr "設定檔案現在需要密碼 (passphrase) (blowfish_secret)."
@@ -5629,7 +5639,7 @@ msgstr ""
msgid "Snap to grid"
msgstr ""
-#: libraries/messages.inc.php:1019 server_synchronize.php:1162
+#: libraries/messages.inc.php:1019 server_synchronize.php:1167
msgid "Socket"
msgstr ""
@@ -5645,10 +5655,6 @@ msgstr "已使用空間"
msgid "Spanish"
msgstr "西班牙語"
-#: libraries/messages.inc.php:1025
-msgid "Words are separated by a space character (\" \")."
-msgstr "每組文字以空格 (\" \") 分隔."
-
#: libraries/messages.inc.php:1027
msgid "Export type"
msgstr "輸出方式"
@@ -5772,7 +5778,7 @@ msgstr "瑞典語"
msgid "Switch to copied table"
msgstr "跳到已複製之資料表"
-#: libraries/messages.inc.php:1069 server_synchronize.php:1208
+#: libraries/messages.inc.php:1069 server_synchronize.php:1213
msgid ""
"Target database will be completely synchronized with source database. Source "
"database will remain unchanged."
@@ -6326,7 +6332,7 @@ msgstr "請輸入使用者名稱!"
#: libraries/replication_gui.lib.php:56 libraries/replication_gui.lib.php:245
#: libraries/replication_gui.lib.php:248 libraries/replication_gui.lib.php:255
#: server_privileges.php:672 server_privileges.php:675
-#: server_privileges.php:682 server_synchronize.php:1166
+#: server_privileges.php:682 server_synchronize.php:1171
msgid "User name"
msgstr "使用者名稱"
@@ -6554,17 +6560,17 @@ msgid ""
"the <a href=#replication>replication section</a>."
msgstr ""
-#: server_synchronize.php:1117
+#: server_synchronize.php:1122
msgid "Enter manually"
msgstr ""
-#: server_synchronize.php:1118
+#: server_synchronize.php:1123
#, fuzzy
#| msgid "max. concurrent connections"
msgid "Current connection"
msgstr "最大連線數目"
-#: server_synchronize.php:1147
+#: server_synchronize.php:1152
#, php-format
msgid "Configuration: %s"
msgstr ""
diff --git a/server_synchronize.php b/server_synchronize.php
index 326383d..b609d34 100644
--- a/server_synchronize.php
+++ b/server_synchronize.php
@@ -1106,10 +1106,15 @@ if (isset($_REQUEST['synchronize_db'])) {
'ASC', 0, true);
foreach ($cons as $type) {
+ if ('src' == $type) {
+ $database_header = __('Source database');
+ } else {
+ $database_header = __('Target database');
+ }
?>
<table id="serverconnection_<?php echo $type; ?>_remote" class="data">
<tr>
- <th colspan="2"><?php echo $GLOBALS['strDatabase_'.$type]; ?></th>
+ <th colspan="2"><?php echo $database_header; ?></th>
</tr>
<tr class="odd">
<td colspan="2" style="text-align: center">
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2867-gdf1ceb1
by Michal Čihař 07 May '10
by Michal Čihař 07 May '10
07 May '10
The branch, master has been updated
via df1ceb13102e0c605519229f2467ae6020bca180 (commit)
via 5fb1c155c29fc6b86a0ad60f943944ef421bf6f2 (commit)
via e49839deb14fa9e0f61af90f1511cadf12c358a5 (commit)
via 63be0afe21aaa87700f8b1bbd14ac99395d1a48f (commit)
via d9128ab185c558c2ebdc0af0e8e5c75e961cb719 (commit)
via 4483f20e395ffd1e25860bbc1fd65f9378aefc5f (commit)
via e9b94e9559a5b6e4b4fa1166c7ae121b9331c1d1 (commit)
via b484d2f417a8678a2aed7ea9addeda84f7306ef5 (commit)
via e1d88cbd89dae4d18c39d779c2cac369ea4e2491 (commit)
via a66043a17c4757ae51c17aeb457f1fcaccb3b513 (commit)
via 081cf829052e93a8782e07ce866c724fcc4adfb2 (commit)
via 62323f9a9f12cdc8f79350debc33ae8ae7104301 (commit)
via d727905454b2901dc0fe46d34c523c285befee60 (commit)
via 0584aecce56b00e00d82f09c045addfd69217529 (commit)
via 360174f41d90ef891597fc4ee2321f5f22bc2565 (commit)
via ca541a0f6b35f69bc36b560c0925a2c882c73298 (commit)
via 9c3808d1ca412b2540588e6b1a2035a36ce91250 (commit)
via b6911df11336d158df4f0c95c047ec70f31988fd (commit)
via 1fb6ee80bdf6213a5ab1bd9c3efc7cacc7501b15 (commit)
via 570b7382c2f734e9a73095b2b5491cdad610db24 (commit)
via b83e5b37ee2f3c92b06602de70ba7474fb147f07 (commit)
via 5639184afbcabffbef072cf2f779da0d9e428279 (commit)
via ace2d66789b4d097462c461a3a8f1b7609b9cae6 (commit)
via 1728899c3b67479ffa2ba4df6d515255ba3f16d1 (commit)
via 44f4282946d560db04882512303591f5662477a5 (commit)
via 8b9ac88e35fb10cf1132c455855afe98ad2350e6 (commit)
via 80c8cb368eb55efabb31ced37695056b403c3093 (commit)
via 8fc6b1313acc67b991ed79aeb3dedd2a77e47798 (commit)
via 2a6af53787f450a1fb3df9dfa649a4189f979a53 (commit)
via dca65db8ad31456924f852264539d37285941f9f (commit)
via 1b75e4a6647fdd46cd870b618f51a77195c54ef3 (commit)
via 42425e0e3115e15f03ca1b4bb48bb3d2d2994ac0 (commit)
via 82c31cd4912d8e9c462211cac063708c5ef3a8e4 (commit)
via b40157214e91b6a4cf2b3e819db688feb649753e (commit)
via f22cd5b09f1531c9ff22e5d059505da651b01a29 (commit)
via f5b70c1284f4df62874571abbe3eaaa6a543a754 (commit)
via 466b312ef655ae385d5ee180a07367b870b0f84d (commit)
via bc218e8be31b50b3d5e8834a42b2ca0881d7d05b (commit)
via 9e239b6f62261116d8dce07a5d16c4ed539bf0cb (commit)
via f1c6c23842864bd2706fc1511948f2ac1096a701 (commit)
via 62d4fa1a631870fd03cc17737ba93620e50f14b2 (commit)
via 809fbc0b3a3fa48959e970d57ed2e76aaecda407 (commit)
via 6003d025a83fb1455cb9dcf589f6cae258817e98 (commit)
via ace7ec50db63c43fc1273b16820e850147337544 (commit)
via cb6a247f077c10925195c061427b572139d341e0 (commit)
via e1fe29ecb6040703d2e7887439a045af0c308a79 (commit)
via 0a62002d89a4d9ceab3922d9835a4b3035f8ade2 (commit)
via d43c43a7181450ea66d20884b2120379678b4eb3 (commit)
from 4423168230b3d8949c3497a62b048606660cf2d2 (commit)
- Log -----------------------------------------------------------------
commit df1ceb13102e0c605519229f2467ae6020bca180
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:21:30 2010 +0200
Translation update done using Pootle.
commit 5fb1c155c29fc6b86a0ad60f943944ef421bf6f2
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:20:10 2010 +0200
Translation update done using Pootle.
commit e49839deb14fa9e0f61af90f1511cadf12c358a5
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:18:43 2010 +0200
Translation update done using Pootle.
commit 63be0afe21aaa87700f8b1bbd14ac99395d1a48f
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:18:04 2010 +0200
Translation update done using Pootle.
commit d9128ab185c558c2ebdc0af0e8e5c75e961cb719
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:17:09 2010 +0200
Translation update done using Pootle.
commit 4483f20e395ffd1e25860bbc1fd65f9378aefc5f
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:16:39 2010 +0200
Translation update done using Pootle.
commit e9b94e9559a5b6e4b4fa1166c7ae121b9331c1d1
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:13:17 2010 +0200
Translation update done using Pootle.
commit b484d2f417a8678a2aed7ea9addeda84f7306ef5
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:12:10 2010 +0200
Translation update done using Pootle.
commit e1d88cbd89dae4d18c39d779c2cac369ea4e2491
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:12:06 2010 +0200
Translation update done using Pootle.
commit a66043a17c4757ae51c17aeb457f1fcaccb3b513
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:12:01 2010 +0200
Translation update done using Pootle.
commit 081cf829052e93a8782e07ce866c724fcc4adfb2
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:11:55 2010 +0200
Translation update done using Pootle.
commit 62323f9a9f12cdc8f79350debc33ae8ae7104301
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:11:46 2010 +0200
Translation update done using Pootle.
commit d727905454b2901dc0fe46d34c523c285befee60
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:11:01 2010 +0200
Translation update done using Pootle.
commit 0584aecce56b00e00d82f09c045addfd69217529
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:09:59 2010 +0200
Translation update done using Pootle.
commit 360174f41d90ef891597fc4ee2321f5f22bc2565
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:09:49 2010 +0200
Translation update done using Pootle.
commit ca541a0f6b35f69bc36b560c0925a2c882c73298
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:09:41 2010 +0200
Translation update done using Pootle.
commit 9c3808d1ca412b2540588e6b1a2035a36ce91250
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:09:26 2010 +0200
Translation update done using Pootle.
commit b6911df11336d158df4f0c95c047ec70f31988fd
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:09:05 2010 +0200
Translation update done using Pootle.
commit 1fb6ee80bdf6213a5ab1bd9c3efc7cacc7501b15
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:08:39 2010 +0200
Translation update done using Pootle.
commit 570b7382c2f734e9a73095b2b5491cdad610db24
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:08:27 2010 +0200
Translation update done using Pootle.
commit b83e5b37ee2f3c92b06602de70ba7474fb147f07
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:08:04 2010 +0200
Translation update done using Pootle.
commit 5639184afbcabffbef072cf2f779da0d9e428279
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:58 2010 +0200
Translation update done using Pootle.
commit ace2d66789b4d097462c461a3a8f1b7609b9cae6
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:54 2010 +0200
Translation update done using Pootle.
commit 1728899c3b67479ffa2ba4df6d515255ba3f16d1
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:50 2010 +0200
Translation update done using Pootle.
commit 44f4282946d560db04882512303591f5662477a5
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:45 2010 +0200
Translation update done using Pootle.
commit 8b9ac88e35fb10cf1132c455855afe98ad2350e6
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:34 2010 +0200
Translation update done using Pootle.
commit 80c8cb368eb55efabb31ced37695056b403c3093
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:29 2010 +0200
Translation update done using Pootle.
commit 8fc6b1313acc67b991ed79aeb3dedd2a77e47798
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:24 2010 +0200
Translation update done using Pootle.
commit 2a6af53787f450a1fb3df9dfa649a4189f979a53
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:20 2010 +0200
Translation update done using Pootle.
commit dca65db8ad31456924f852264539d37285941f9f
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:16 2010 +0200
Translation update done using Pootle.
commit 1b75e4a6647fdd46cd870b618f51a77195c54ef3
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:11 2010 +0200
Translation update done using Pootle.
commit 42425e0e3115e15f03ca1b4bb48bb3d2d2994ac0
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:06 2010 +0200
Translation update done using Pootle.
commit 82c31cd4912d8e9c462211cac063708c5ef3a8e4
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:07:02 2010 +0200
Translation update done using Pootle.
commit b40157214e91b6a4cf2b3e819db688feb649753e
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:06:57 2010 +0200
Translation update done using Pootle.
commit f22cd5b09f1531c9ff22e5d059505da651b01a29
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:06:53 2010 +0200
Translation update done using Pootle.
commit f5b70c1284f4df62874571abbe3eaaa6a543a754
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:06:47 2010 +0200
Translation update done using Pootle.
commit 466b312ef655ae385d5ee180a07367b870b0f84d
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:06:42 2010 +0200
Translation update done using Pootle.
commit bc218e8be31b50b3d5e8834a42b2ca0881d7d05b
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:06:36 2010 +0200
Translation update done using Pootle.
commit 9e239b6f62261116d8dce07a5d16c4ed539bf0cb
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:06:30 2010 +0200
Translation update done using Pootle.
commit f1c6c23842864bd2706fc1511948f2ac1096a701
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:06:10 2010 +0200
Translation update done using Pootle.
commit 62d4fa1a631870fd03cc17737ba93620e50f14b2
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:05:58 2010 +0200
Translation update done using Pootle.
commit 809fbc0b3a3fa48959e970d57ed2e76aaecda407
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:05:19 2010 +0200
Translation update done using Pootle.
commit 6003d025a83fb1455cb9dcf589f6cae258817e98
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 23:01:49 2010 +0200
Translation update done using Pootle.
commit ace7ec50db63c43fc1273b16820e850147337544
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 22:59:29 2010 +0200
Translation update done using Pootle.
commit cb6a247f077c10925195c061427b572139d341e0
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 22:58:47 2010 +0200
Translation update done using Pootle.
commit e1fe29ecb6040703d2e7887439a045af0c308a79
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 22:58:40 2010 +0200
Translation update done using Pootle.
commit 0a62002d89a4d9ceab3922d9835a4b3035f8ade2
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 22:58:36 2010 +0200
Translation update done using Pootle.
commit d43c43a7181450ea66d20884b2120379678b4eb3
Author: dbc334 <dbc334(a)gmail.com>
Date: Thu May 6 22:58:30 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/sl.po | 239 ++++++++++++++------------------------------------------------
1 files changed, 53 insertions(+), 186 deletions(-)
diff --git a/po/sl.po b/po/sl.po
index 6b71323..2101e2d 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,15 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-06 12:56-0400\n"
-"PO-Revision-Date: 2010-05-03 00:45+0200\n"
+"PO-Revision-Date: 2010-05-06 23:21+0200\n"
"Last-Translator: <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
+"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
-"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
-"%100==4 ? 2 : 3);\n"
+"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || "
+"n%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:38 browse_foreigners.php:59
@@ -264,7 +264,7 @@ msgstr "Preklopi na kopirano podatkovno zbirko"
#: db_operations.php:533 libraries/messages.inc.php:97
msgid "BLOB Repository"
-msgstr ""
+msgstr "Shramba BLOB"
#: db_operations.php:536 db_tracking.php:76 libraries/common.lib.php:1350
#: libraries/messages.inc.php:1045 libraries/server_links.inc.php:49
@@ -273,7 +273,6 @@ msgid "Status"
msgstr "Stanje"
#: db_operations.php:544
-#, fuzzy
#| msgid "Enabled"
msgctxt "BLOB repository"
msgid "Enabled"
@@ -288,14 +287,12 @@ msgid "Damaged"
msgstr "Poškodovano"
#: db_operations.php:562
-#, fuzzy
#| msgid "Repair"
msgctxt "BLOB repository"
msgid "Repair"
msgstr "Popravi"
#: db_operations.php:570
-#, fuzzy
#| msgid "Disabled"
msgctxt "BLOB repository"
msgid "Disabled"
@@ -582,7 +579,7 @@ msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: libraries/messages.inc.php:1241 libraries/tbl_info.inc.php:66
#: tbl_structure.php:185 test/theme.php:74
msgid "View"
-msgstr ""
+msgstr "Pogled"
#: db_structure.php:485 libraries/db_structure.lib.php:49
#: libraries/messages.inc.php:781 libraries/server_links.inc.php:70
@@ -598,7 +595,7 @@ msgstr "Vsota"
#: libraries/StorageEngine.class.php:356
#, php-format
msgid "%s is the default storage engine on this MySQL server."
-msgstr ""
+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
@@ -700,7 +697,7 @@ msgstr "Dejanje"
#: db_tracking.php:88 db_tracking.php:120 libraries/messages.inc.php:255
msgid "Delete tracking data for this table"
-msgstr ""
+msgstr "Izbriši podatke sledenja te tabele"
#: db_tracking.php:106 libraries/messages.inc.php:1150 tbl_tracking.php:548
#: tbl_tracking.php:606 tbl_tracking.php:613
@@ -760,14 +757,12 @@ msgstr "Prekliči"
#. l10n: Display text for calendar close link
#: js/messages.php:74
-#, fuzzy
#| msgid "Donate"
msgid "Done"
-msgstr "Daruj"
+msgstr "Končano"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:76
-#, fuzzy
#| msgid "Previous"
msgid "Prev"
msgstr "Prejšnji"
@@ -782,72 +777,64 @@ msgstr "Naslednji"
#. l10n: Display text for current month link in calendar
#: js/messages.php:80
-#, fuzzy
#| msgid "Total"
msgid "Today"
-msgstr "Skupaj"
+msgstr "Danes"
#: js/messages.php:83
-#, fuzzy
#| msgid "Binary"
msgid "January"
-msgstr "Dvojiško"
+msgstr "januar"
#: js/messages.php:84
msgid "February"
-msgstr ""
+msgstr "februar"
#: js/messages.php:85
-#, fuzzy
#| msgid "Mar"
msgid "March"
-msgstr "mar"
+msgstr "marec"
#: js/messages.php:86
-#, fuzzy
#| msgid "Apr"
msgid "April"
-msgstr "apr"
+msgstr "april"
#: js/messages.php:87 libraries/messages.inc.php:28
msgid "May"
msgstr "maj"
#: js/messages.php:88
-#, fuzzy
#| msgid "Jun"
msgid "June"
-msgstr "jun"
+msgstr "junij"
#: js/messages.php:89
-#, fuzzy
#| msgid "Jul"
msgid "July"
-msgstr "jul"
+msgstr "julij"
#: js/messages.php:90
-#, fuzzy
#| msgid "Aug"
msgid "August"
-msgstr "avg"
+msgstr "avgust"
#: js/messages.php:91
msgid "September"
-msgstr ""
+msgstr "september"
#: js/messages.php:92
-#, fuzzy
#| msgid "Oct"
msgid "October"
-msgstr "okt"
+msgstr "oktober"
#: js/messages.php:93
msgid "November"
-msgstr ""
+msgstr "november"
#: js/messages.php:94
msgid "December"
-msgstr ""
+msgstr "december"
#. l10n: Short month name
#: js/messages.php:98 libraries/messages.inc.php:28
@@ -871,7 +858,6 @@ msgstr "apr"
#. l10n: Short month name
#: js/messages.php:106
-#, fuzzy
#| msgid "May"
msgctxt "Short month name"
msgid "May"
@@ -913,40 +899,36 @@ msgid "Dec"
msgstr "dec"
#: js/messages.php:123
-#, fuzzy
#| msgid "Sun"
msgid "Sunday"
-msgstr "Ned"
+msgstr "nedelja"
#: js/messages.php:124
-#, fuzzy
#| msgid "Mon"
msgid "Monday"
-msgstr "Pon"
+msgstr "ponedeljek"
#: js/messages.php:125
-#, fuzzy
#| msgid "Tue"
msgid "Tuesday"
-msgstr "Tor"
+msgstr "torek"
#: js/messages.php:126
msgid "Wednesday"
-msgstr ""
+msgstr "sreda"
#: js/messages.php:127
msgid "Thursday"
-msgstr ""
+msgstr "četrtek"
#: js/messages.php:128
-#, fuzzy
#| msgid "Fri"
msgid "Friday"
-msgstr "Pet"
+msgstr "petek"
#: js/messages.php:129
msgid "Saturday"
-msgstr ""
+msgstr "sobota"
#. l10n: Short week day name
#: js/messages.php:133 libraries/messages.inc.php:27
@@ -1132,13 +1114,13 @@ msgstr "Ne morem se prijaviti v strežnik MySQL"
#: libraries/messages.inc.php:1065
#, php-format
msgid "File %s does not contain any key id"
-msgstr ""
+msgstr "Datoteka %s ne vsebuje nobenega ključa id"
#: libraries/auth/swekey/swekey.auth.lib.php:157
#: libraries/auth/swekey/swekey.auth.lib.php:180
#: libraries/messages.inc.php:1064
msgid "Hardware authentication failed"
-msgstr ""
+msgstr "Potrjevanje strojne opreme je spodletelo"
#: libraries/auth/swekey/swekey.auth.lib.php:166
#: libraries/messages.inc.php:1066
@@ -1152,7 +1134,7 @@ msgstr "Potrjevanje ..."
#: libraries/blobstreaming.lib.php:689 libraries/messages.inc.php:1238
msgid "View image"
-msgstr ""
+msgstr "Ogled slike"
#: libraries/blobstreaming.lib.php:693 libraries/messages.inc.php:660
msgid "Play audio"
@@ -1160,7 +1142,7 @@ msgstr "Predvajaj avdio"
#: libraries/blobstreaming.lib.php:698 libraries/messages.inc.php:1240
msgid "View video"
-msgstr ""
+msgstr "Ogled videa"
#: libraries/blobstreaming.lib.php:702 libraries/messages.inc.php:277
msgid "Download file"
@@ -1203,10 +1185,10 @@ msgstr ""
"prazno stran, je vse v redu."
#: libraries/common.inc.php:594
-#, fuzzy, php-format
+#, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
-msgstr "Ne morem naložiti privzete konfiguracije iz: \"%1$s\""
+msgstr "Ne morem naložiti privzete konfiguracije iz: %1$s"
#: libraries/common.inc.php:599 libraries/messages.inc.php:668
msgid ""
@@ -1395,6 +1377,8 @@ msgstr "Ime"
#: libraries/messages.inc.php:184
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
+"Povezava za controluserja, kot je določena v vaši konfiguraciji, je "
+"spodletela."
#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355
#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863
@@ -1465,7 +1449,7 @@ msgstr "Rutina"
#: libraries/db_routines.inc.php:43 libraries/messages.inc.php:819
msgid "Return type"
-msgstr ""
+msgstr "Vrnjena vrsta"
#: libraries/db_structure.lib.php:57 libraries/display_tbl.lib.php:1848
#: libraries/messages.inc.php:73
@@ -1511,10 +1495,9 @@ msgid "Password Hashing"
msgstr ""
#: libraries/display_change_password.lib.php:66
-#, fuzzy
#| msgid "MySQL 4.0 compatible"
msgid "MySQL 4.0 compatible"
-msgstr "Združljivo z MySQL 4.0"
+msgstr "Združljivo z MySQL 4.0"
#: libraries/display_change_password.lib.php:72 libraries/messages.inc.php:361
#: libraries/replication_gui.lib.php:356 server_privileges.php:783
@@ -1604,22 +1587,19 @@ msgid "None"
msgstr "Brez"
#: libraries/display_export.lib.php:247
-#, fuzzy
#| msgid "\"zipped\""
msgid "zipped"
-msgstr "\"zipano\""
+msgstr "zipano"
#: libraries/display_export.lib.php:253
-#, fuzzy
#| msgid "\"gzipped\""
msgid "gzipped"
-msgstr "\"gzipano\""
+msgstr "gzipano"
#: libraries/display_export.lib.php:259
-#, fuzzy
#| msgid "\"bzipped\""
msgid "bzipped"
-msgstr "\"bzipano\""
+msgstr "bzipano"
#: libraries/display_export.lib.php:276 libraries/messages.inc.php:1026
msgid "SQL compatibility mode"
@@ -1631,6 +1611,9 @@ msgid ""
"this is a known bug in webkit based (Safari, Google Chrome, Arora etc.) "
"browsers."
msgstr ""
+"Naložena datoteka je najverjetneje večja od največje dovoljene velikosti ali "
+"pa gre za znan hrošč v brskalnikih, ki temeljijo na webkitu (Safari, Google "
+"Chrome, Arora itn.)."
#: libraries/display_import.lib.php:77 libraries/messages.inc.php:414
msgid "The file is being processed, please be patient."
@@ -1672,6 +1655,8 @@ msgstr "Delni uvoz"
msgid ""
"Previous import timed out, after resubmitting will continue from position %d."
msgstr ""
+"Čas prejšnjega uvoza se je iztekel, po ponovni potrditvi se bo nadaljeval od "
+"položaja %d."
#: libraries/display_import.lib.php:232 libraries/messages.inc.php:59
msgid ""
@@ -1832,11 +1817,11 @@ msgstr "Podatki o različici"
#: libraries/engines/innodb.lib.php:30 libraries/messages.inc.php:431
msgid "Data home directory"
-msgstr ""
+msgstr "Domača mapa podatkov"
#: libraries/engines/innodb.lib.php:31 libraries/messages.inc.php:432
msgid "The common part of the directory path for all InnoDB data files."
-msgstr ""
+msgstr "Pogosti del poti mape za vse podatkovne datoteke InnoDB."
#: libraries/engines/innodb.lib.php:34 libraries/messages.inc.php:430
msgid "Data files"
@@ -1844,13 +1829,15 @@ msgstr "Podatkovne datoteke"
#: libraries/engines/innodb.lib.php:37 libraries/messages.inc.php:426
msgid "Autoextend increment"
-msgstr ""
+msgstr "Povečevanje pri samorazširitvi"
#: libraries/engines/innodb.lib.php:38 libraries/messages.inc.php:427
msgid ""
" The increment size for extending the size of an autoextending tablespace "
"when it becomes full."
msgstr ""
+" Velikost povečevanja pri razširjanju velikosti samorazširitvenega prostora "
+"v tabeli, ko ta postane poln."
#: libraries/engines/innodb.lib.php:42 libraries/messages.inc.php:428
msgid "Buffer pool size"
@@ -1861,6 +1848,8 @@ msgid ""
"The size of the memory buffer InnoDB uses to cache data and indexes of its "
"tables."
msgstr ""
+"Velikost spominskega medpomnilnika, ki ga InnoDB uporablja za predpomnjenje "
+"podatkov in indeksov svojih tabel."
#: libraries/engines/innodb.lib.php:144 libraries/messages.inc.php:120
msgid "Buffer Pool"
@@ -8263,125 +8252,3 @@ msgstr "Ustvari indeks na %s stolpcih"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "Opis"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt "None action"
-#~ msgid "None"
-#~ msgstr "Brez"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt ""
-#~ msgid "None"
-#~ msgstr "Brez"
-
-#, fuzzy
-#~| msgid "Grant all privileges on database "%s""
-#~ msgid "Grant all privileges on wildcard name (username_%)"
-#~ msgstr "Dodeli vse privilegije za podatkovno zbirko "%s""
-
-#, fuzzy
-#~| msgid "The \"%s\" table doesn't exist!"
-#~ msgid "The %s table doesn"
-#~ msgstr "Tabela \"%s\" ne obstaja!"
-
-#~ msgid "Could not load default configuration from: %1"
-#~ msgstr "Ne morem naložiti privzete konfiguracije iz: %1"
-
-#~ msgid "Invalid hostname for server %1. Please review your configuration."
-#~ msgstr ""
-#~ "Neveljavno ime gostitelja za strežnik %1. Prosimo, preglejte svojo "
-#~ "konfiguracijo."
-
-#, fuzzy
-#~| msgid "Error renaming table %1$s to %2$s"
-#~ msgid "Error renaming table %1 to %2"
-#~ msgstr "Napaka pri preimenovanju tabele %1$s v %2$s"
-
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
-#~ "Please check your PHP configuration."
-#~ msgstr ""
-#~ "Ne morem naložiti razširitve [a@http://php.net/%1@Documentation][em]%1[/"
-#~ "em][/a]. Prosimo, preverite konfiguracijo PHP."
-
-#, fuzzy
-#~| msgid "Could not connect to MySQL server"
-#~ msgid "(or the local MySQL server"
-#~ msgstr "Ne morem se povezati s strežnikom MySQL"
-
-#, fuzzy
-#~| msgid ""
-#~| "There is a chance that you may have found a bug in the SQL parser. "
-#~| "Please examine your query closely, and check that the quotes are correct "
-#~| "and not mis-matched. Other possible failure causes may be that you are "
-#~| "uploading a file with binary outside of a quoted text area. You can also "
-#~| "try your query on the MySQL command line interface. The MySQL server "
-#~| "error output below, if there is any, may also help you in diagnosing the "
-#~| "problem. If you still have problems or if the parser fails where the "
-#~| "command line interface succeeds, please reduce your SQL query input to "
-#~| "the single query that causes problems, and submit a bug report with the "
-#~| "data chunk in the CUT section below:"
-#~ msgid ""
-#~ "There is a chance that you may have found a bug in the SQL parser. Please "
-#~ "examine your query closely, and check that the quotes are correct and not "
-#~ "mis-matched. Other possible failure causes may be that you are uploading "
-#~ "a file with binary outside of a quoted text area. You can also try your "
-#~ "query on the MySQL command line interface. The MySQL server error output "
-#~ "be . "
-#~ msgstr ""
-#~ "Obstaja možnost, da ste v razčlenjevalniku SQL naleteli na hrošča. "
-#~ "Temeljito preglejte poizvedbo in preverite, če so narekovaji pravilni in "
-#~ "če se ujemajo. Možno je tudi, da prenašate binarno datoteko, ki je izven "
-#~ "področja besedila citata. Poizvedbo lahko preizkusite tudi na vmesniku "
-#~ "ukazne vrstice MySQL. Če je strežnik MySQL izpisal napako, vam le-ta "
-#~ "lahko pomaga pri ugotavljanju težav. Če se bodo težave nadaljevale, ali "
-#~ "če razčlenjevalniku ne uspe tam, kjer vmesniku ukazne vrstice uspe, potem "
-#~ "zmanjšajte vnešeno poizvedbo SQL na tisto poizvedbo, ki povzroča težave "
-#~ "in pošljite poročilo o napaki skupaj s podatki iz spodnjega odseka IZREZA:"
-
-#~ msgctxt "$strStrucCSV"
-#~ msgid "CSV"
-#~ msgstr "CSV-podatki"
-
-#~ msgid "Delete the users and reload the privileges afterwards."
-#~ msgstr "Izbriši uporabnike in potem osveži privilegije."
-
-#~ msgid ""
-#~ "This is the cleanest way, but reloading the privileges may take a while."
-#~ msgstr ""
-#~ "To je najboljši način, vendar lahko osveževanje privilegijev traja nekaj "
-#~ "časa."
-
-#~ msgid "has been altered."
-#~ msgstr "je bil spremenjen(a)."
-
-#~ msgid ""
-#~ "The "deleted" users will still be able to access the server as "
-#~ "usual until the privileges are reloaded."
-#~ msgstr ""
-#~ ""Izbrisani" uporabniki lahko še vedno normalno dostopajo do "
-#~ "strežnika, dokler ne osvežite privilegijev"
-
-#~ msgid "Just delete the users from the privilege tables."
-#~ msgstr "Samo izbriši uporabnike iz tabel privilegijev."
-
-#~ msgid ""
-#~ "Allows running stored procedures; has no effect in this MySQL version."
-#~ msgstr ""
-#~ "Omogoča poganjanje shranjenih postopkov; V tej verziji MySQL nima pomena."
-
-#~ msgid "Process list"
-#~ msgstr "Seznam procesov"
-
-#, fuzzy
-#~ msgid "Reload privileges"
-#~ msgstr "Globalni privilegiji"
-
-#~ msgid ""
-#~ "The users will still have the USAGE privilege until the privileges are "
-#~ "reloaded."
-#~ msgstr ""
-#~ "Uporabniki bodo še vedno imeli USAGE privilegije, dokler ne osvežite "
-#~ "privilegijev."
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2819-g4423168
by Marc Delisle 06 May '10
by Marc Delisle 06 May '10
06 May '10
The branch, master has been updated
via 4423168230b3d8949c3497a62b048606660cf2d2 (commit)
from f8f475419d6609d5d0730c1e79d6a919a7df1e36 (commit)
- Log -----------------------------------------------------------------
commit 4423168230b3d8949c3497a62b048606660cf2d2
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu May 6 12:56:58 2010 -0400
after update-po
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 52 +++++++++++++++++++++++++-----------------------
po/ar.po | 52 +++++++++++++++++++++++++-----------------------
po/az.po | 52 +++++++++++++++++++++++++-----------------------
po/be.po | 52 +++++++++++++++++++++++++-----------------------
po/be(a)latin.po | 52 +++++++++++++++++++++++++-----------------------
po/bg.po | 52 +++++++++++++++++++++++++-----------------------
po/bn.po | 52 +++++++++++++++++++++++++-----------------------
po/bs.po | 52 +++++++++++++++++++++++++-----------------------
po/ca.po | 52 +++++++++++++++++++++++++-----------------------
po/cs.po | 52 +++++++++++++++++++++++++-----------------------
po/da.po | 52 +++++++++++++++++++++++++-----------------------
po/de.po | 56 +++++++++++++++++++++++++++-------------------------
po/el.po | 52 +++++++++++++++++++++++++-----------------------
po/en_GB.po | 52 +++++++++++++++++++++++++-----------------------
po/es.po | 52 +++++++++++++++++++++++++-----------------------
po/et.po | 52 +++++++++++++++++++++++++-----------------------
po/eu.po | 52 +++++++++++++++++++++++++-----------------------
po/fa.po | 52 +++++++++++++++++++++++++-----------------------
po/fi.po | 52 +++++++++++++++++++++++++-----------------------
po/fr.po | 52 +++++++++++++++++++++++++-----------------------
po/gl.po | 52 +++++++++++++++++++++++++-----------------------
po/he.po | 52 +++++++++++++++++++++++++-----------------------
po/hi.po | 52 +++++++++++++++++++++++++-----------------------
po/hr.po | 52 +++++++++++++++++++++++++-----------------------
po/hu.po | 52 +++++++++++++++++++++++++-----------------------
po/id.po | 52 +++++++++++++++++++++++++-----------------------
po/it.po | 52 +++++++++++++++++++++++++-----------------------
po/ja.po | 52 +++++++++++++++++++++++++-----------------------
po/ka.po | 52 +++++++++++++++++++++++++-----------------------
po/ko.po | 52 +++++++++++++++++++++++++-----------------------
po/lt.po | 52 +++++++++++++++++++++++++-----------------------
po/lv.po | 52 +++++++++++++++++++++++++-----------------------
po/mk.po | 52 +++++++++++++++++++++++++-----------------------
po/mn.po | 52 +++++++++++++++++++++++++-----------------------
po/ms.po | 52 +++++++++++++++++++++++++-----------------------
po/nb.po | 52 +++++++++++++++++++++++++-----------------------
po/nl.po | 52 +++++++++++++++++++++++++-----------------------
po/phpmyadmin.pot | 52 +++++++++++++++++++++++++-----------------------
po/pl.po | 52 +++++++++++++++++++++++++-----------------------
po/pt.po | 52 +++++++++++++++++++++++++-----------------------
po/pt_BR.po | 52 +++++++++++++++++++++++++-----------------------
po/ro.po | 52 +++++++++++++++++++++++++-----------------------
po/ru.po | 52 +++++++++++++++++++++++++-----------------------
po/si.po | 52 +++++++++++++++++++++++++-----------------------
po/sk.po | 52 +++++++++++++++++++++++++-----------------------
po/sl.po | 52 +++++++++++++++++++++++++-----------------------
po/sq.po | 52 +++++++++++++++++++++++++-----------------------
po/sr.po | 52 +++++++++++++++++++++++++-----------------------
po/sr(a)latin.po | 52 +++++++++++++++++++++++++-----------------------
po/sv.po | 52 +++++++++++++++++++++++++-----------------------
po/ta.po | 52 +++++++++++++++++++++++++-----------------------
po/te.po | 54 ++++++++++++++++++++++++++------------------------
po/th.po | 52 +++++++++++++++++++++++++-----------------------
po/tr.po | 52 +++++++++++++++++++++++++-----------------------
po/tt.po | 52 +++++++++++++++++++++++++-----------------------
po/uk.po | 52 +++++++++++++++++++++++++-----------------------
po/ur.po | 52 +++++++++++++++++++++++++-----------------------
po/uz.po | 52 +++++++++++++++++++++++++-----------------------
po/uz(a)latin.po | 52 +++++++++++++++++++++++++-----------------------
po/zh_CN.po | 52 +++++++++++++++++++++++++-----------------------
po/zh_TW.po | 52 +++++++++++++++++++++++++-----------------------
61 files changed, 1650 insertions(+), 1528 deletions(-)
diff --git a/po/af.po b/po/af.po
index bc3fe5b..f1ace94 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -117,10 +117,10 @@ msgstr "Veld"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tipe"
@@ -699,7 +699,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Aksie"
@@ -1438,7 +1438,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1470,7 +1470,7 @@ msgstr "Operasies"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Regte"
@@ -1778,6 +1778,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1812,8 +1817,9 @@ msgid "in query"
msgstr "in navraag"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2149,7 +2155,8 @@ msgstr "Tabel struktuur vir tabel"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Gasheer (host)"
@@ -2494,7 +2501,7 @@ msgstr ""
msgid "Go back to this page"
msgstr "Terug na vorige bladsy"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Alle"
@@ -2935,7 +2942,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Geen"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3093,7 +3100,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3433,7 +3440,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr ""
@@ -3469,11 +3476,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3551,7 +3553,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr ""
@@ -4463,7 +4465,7 @@ msgstr ""
msgid "Query window"
msgstr ""
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr ""
@@ -5981,7 +5983,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6335,14 +6337,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr ""
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Gebruiker"
diff --git a/po/ar.po b/po/ar.po
index 52de1b5..07de4be 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -115,10 +115,10 @@ msgstr "الحقل"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "النوع"
@@ -691,7 +691,7 @@ msgstr "محدث"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "العملية"
@@ -1433,7 +1433,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1464,7 +1464,7 @@ msgstr "عمليات"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "الإمتيازات"
@@ -1769,6 +1769,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "أخف"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1803,8 +1808,9 @@ msgid "in query"
msgstr "في الاستعلام"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "تغيير"
@@ -2136,7 +2142,8 @@ msgstr "بنية الجدول"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "المزود"
@@ -2475,7 +2482,7 @@ msgstr "عدل الصف التالي"
msgid "Go back to this page"
msgstr "ارجع إلى هذه الصفحة"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "الكل"
@@ -2907,7 +2914,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3065,7 +3072,7 @@ msgid ""
msgstr ""
"تحتوي الصفحة الحالية مراجع لجداول لم تعد موجودة. هل تود حذف هذه المراجع؟"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3406,7 +3413,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "منح"
@@ -3442,11 +3449,6 @@ msgstr "مساعدة"
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "أخف"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr ""
@@ -3523,7 +3525,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "استورد الملفات"
@@ -4427,7 +4429,7 @@ msgstr ""
msgid "Query window"
msgstr "نافذة الاستعلام"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "نصوص SQL سابقة"
@@ -5926,7 +5928,7 @@ msgstr "toggle scratchboard"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6295,14 +6297,14 @@ msgstr "معلومات المستخدم"
msgid "The selected users have been deleted successfully."
msgstr "تم حذف المستخدمين المحددين بنجاح."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "المستخدمين ذوي صلاحية الوصول إلى "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "المستخدم"
diff --git a/po/az.po b/po/az.po
index 36edc08..031c504 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -113,10 +113,10 @@ msgstr "Sahe"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tip"
@@ -696,7 +696,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Fealiyyetler"
@@ -1445,7 +1445,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1477,7 +1477,7 @@ msgstr "Emeliyyatlar"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Selahiyyetler"
@@ -1785,6 +1785,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1819,8 +1824,9 @@ msgid "in query"
msgstr "in query"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2156,7 +2162,8 @@ msgstr "Table structure for table"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2501,7 +2508,7 @@ msgstr "Bir sonrakı setre keç"
msgid "Go back to this page"
msgstr "Bu sehifeye geri dön"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "All"
@@ -2949,7 +2956,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Heç biri"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" bazası üçün selahiyyetleri gözden keçir."
@@ -3111,7 +3118,7 @@ msgstr ""
"Hal-hazırki sehifen artıq mövcud olmayan Cedvellere bağlıdır. Bu elaqelerin "
"silinmesini istermisiniz?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3459,7 +3466,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "İcaze ver"
@@ -3495,11 +3502,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3577,7 +3579,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Faylları import et"
@@ -4500,7 +4502,7 @@ msgstr "Sorğu tipi"
msgid "Query window"
msgstr "Sorğu penceresi"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-tarixçesi"
@@ -6017,7 +6019,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6394,14 +6396,14 @@ msgstr "User overview"
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "İstifadeçi"
diff --git a/po/be.po b/po/be.po
index 6f90bf6..19e07c0 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Поле"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Тып"
@@ -701,7 +701,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Дзеяньне"
@@ -1463,7 +1463,7 @@ msgstr "База дадзеных — пустая!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1494,7 +1494,7 @@ msgstr "Апэрацыі"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Прывілеі"
@@ -1806,6 +1806,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Схаваць"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1840,8 +1845,9 @@ msgid "in query"
msgstr "па запыту"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Зьмяніць"
@@ -2221,7 +2227,8 @@ msgstr "Структура табліцы"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Хост"
@@ -2571,7 +2578,7 @@ msgstr "Рэдагаваць наступны радок"
msgid "Go back to this page"
msgstr "Вярнуцца да гэтай старонкі"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Усе"
@@ -3014,7 +3021,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Няма"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Праверыць прывілеі для базы "%s"."
@@ -3177,7 +3184,7 @@ msgstr ""
"Бягучая старонка ўтрымлівае спасылкі на табліцы, якія больш не існуюць. Ці "
"жадаеце вы выдаліць гэтыя спасылкі?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3528,7 +3535,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3564,11 +3571,6 @@ msgstr "Дапамога"
msgid "Use hexadecimal for BLOB"
msgstr "Шаснаццатковыя значэньні для поляў тыпу BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Схаваць"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Схаваць/паказаць усе табліцы"
@@ -3645,7 +3647,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Імпартаваць/Экспартаваць каардынаты табліц ў PDF-схему"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Імпартаваць файлы"
@@ -4583,7 +4585,7 @@ msgstr "Кэш запытаў"
msgid "Query window"
msgstr "Акно запыту"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Гісторыя SQL"
@@ -6242,7 +6244,7 @@ msgstr "Паказаць папярэдні прагляд"
msgid "Toggle small/big"
msgstr "Пераключыць маленькі/вялікі"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
"Каб выбраць сувязь, націсьніце на кропцы злучэньня, як паказана на выяве:"
@@ -6642,14 +6644,14 @@ msgstr "Карыстальнікі"
msgid "The selected users have been deleted successfully."
msgstr "Выбраныя карыстальнікі былі пасьпяхова выдаленыя."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Карыстальнікі з правамі доступу да "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Карыстальнік"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 0a34ec2..04001a4 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -119,10 +119,10 @@ msgstr "Pole"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -699,7 +699,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Dziejańnie"
@@ -1457,7 +1457,7 @@ msgstr "Baza dadzienych — pustaja!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1488,7 +1488,7 @@ msgstr "Aperacyi"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Pryvilei"
@@ -1800,6 +1800,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Schavać"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1834,8 +1839,9 @@ msgid "in query"
msgstr "pa zapytu"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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ć"
@@ -2219,7 +2225,8 @@ msgstr "Struktura tablicy"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Chost"
@@ -2569,7 +2576,7 @@ msgstr "Redagavać nastupny radok"
msgid "Go back to this page"
msgstr "Viarnucca da hetaj staronki"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Usie"
@@ -3007,7 +3014,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Nijakaja"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3167,7 +3174,7 @@ msgstr ""
"Biahučaja staronka ŭtrymlivaje spasyłki na tablicy, jakija bolš nie isnujuć. "
"Ci žadajecie vy vydalić hetyja spasyłki?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3515,7 +3522,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3551,11 +3558,6 @@ msgstr "Dapamoha"
msgid "Use hexadecimal for BLOB"
msgstr "Šasnaccatkovyja značeńni dla polaŭ typu BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Schavać"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Schavać/pakazać usie tablicy"
@@ -3632,7 +3634,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Impartavać/Ekspartavać kaardynaty tablic ŭ PDF-schiemu"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Impartavać fajły"
@@ -4567,7 +4569,7 @@ msgstr "Keš zapytaŭ"
msgid "Query window"
msgstr "Akno zapytu"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Historyja SQL"
@@ -6218,7 +6220,7 @@ msgstr "Pakazać papiaredni prahlad"
msgid "Toggle small/big"
msgstr "Pieraklučyć maleńki/vialiki"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
"Kab vybrać suviaź, naciśnicie na kropcy złučeńnia, jak pakazana na vyjavie:"
@@ -6617,14 +6619,14 @@ msgstr "Karystalniki"
msgid "The selected users have been deleted successfully."
msgstr "Vybranyja karystalniki byli paśpiachova vydalenyja."
-#: libraries/messages.inc.php:1
221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Karystalniki z pravami dostupu da \"%s\""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Karystalnik"
diff --git a/po/bg.po b/po/bg.po
index 4aa2eb8..8f360eb 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Поле"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -694,7 +694,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Действие"
@@ -1448,7 +1448,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1479,7 +1479,7 @@ msgstr "Операции"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Привилегии"
@@ -1788,6 +1788,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1822,8 +1827,9 @@ msgid "in query"
msgstr "в запитването"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Променяне"
@@ -2159,7 +2165,8 @@ msgstr "Структура на таблица"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Хост"
@@ -2505,7 +2512,7 @@ msgstr "редактиране на следващия ред"
msgid "Go back to this page"
msgstr "връщане към тази страница"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "всички"
@@ -2955,7 +2962,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Няма"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Провери привилегиите за база от данни "%s"."
@@ -3116,7 +3123,7 @@ msgstr ""
"Текущата Страница има Референции към Таблици които вече не съществуват. "
"Желаете ли да изтриете тези Референции?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3464,7 +3471,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Дадени"
@@ -3500,11 +3507,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3582,7 +3584,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Импортиране на файлове"
@@ -4514,7 +4516,7 @@ msgstr "Кеш на заявките"
msgid "Query window"
msgstr "Прозорец за заявки"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-хронология"
@@ -6040,7 +6042,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6424,14 +6426,14 @@ msgstr "Преглед на потребителите"
msgid "The selected users have been deleted successfully."
msgstr "Избраните потребители бяха изтрити успешно."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Потребители които имат достъп до "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Потребител"
diff --git a/po/bn.po b/po/bn.po
index 31ffa45..e852256 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "ক্ষেত্র"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -696,7 +696,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Action"
@@ -1452,7 +1452,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1483,7 +1483,7 @@ msgstr "Operations"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privileges"
@@ -1796,6 +1796,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1830,8 +1835,9 @@ msgid "in query"
msgstr "in query"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2183,7 +2189,8 @@ msgstr "Table structure for table"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "হোষ্ট"
@@ -2532,7 +2539,7 @@ msgstr "পরবর্তী সাড়ি সম্পাদনা করুন
msgid "Go back to this page"
msgstr "এই পাতায় ফিরে যাও"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "All"
@@ -2980,7 +2987,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "কোনটিই নয়"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Check privileges for database "%s"."
@@ -3142,7 +3149,7 @@ msgstr ""
"ফেলতে চান? The current page has references to tables that no longer exist. "
"Would you like to delete those references?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3493,7 +3500,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3529,11 +3536,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3611,7 +3613,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "ফাইল ইম্পোর্ট কর"
@@ -4541,7 +4543,7 @@ msgstr "Query cache"
msgid "Query window"
msgstr "Query window"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL history"
@@ -6172,7 +6174,7 @@ msgstr "Toggle scratchboard"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6564,14 +6566,14 @@ msgstr "User overview"
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "User"
diff --git a/po/bs.po b/po/bs.po
index 93a8dc4..6839ce2 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Polje"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tip"
@@ -698,7 +698,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Akcija"
@@ -1445,7 +1445,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1477,7 +1477,7 @@ msgstr "Operacije"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegije"
@@ -1785,6 +1785,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1819,8 +1824,9 @@ msgid "in query"
msgstr "u upitu"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2155,7 +2161,8 @@ msgstr "Struktura tabele"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2501,7 +2508,7 @@ msgstr ""
msgid "Go back to this page"
msgstr "Nazad na prethodnu stranu"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Sve"
@@ -2948,7 +2955,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "nema"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Provjeri privilegije za bazu "%s"."
@@ -3110,7 +3117,7 @@ msgstr ""
"Trenutna strana ima reference na tabele koje više ne postoje. Želite li da "
"obrišete te reference?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3457,7 +3464,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Omogući"
@@ -3493,11 +3500,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3575,7 +3577,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Uvoz fajlova"
@@ -4499,7 +4501,7 @@ msgstr "Vrsta upita"
msgid "Query window"
msgstr "Prozor za upite"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL istorijat"
@@ -6014,7 +6016,7 @@ msgstr "Uključuje/isključuje scratchboard"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6391,14 +6393,14 @@ msgstr "Pregled korisnika"
msgid "The selected users have been deleted successfully."
msgstr "Izabrani korisnici su uspješno obrisani."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Korisnici koji imaju pristup "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Korisnik"
diff --git a/po/ca.po b/po/ca.po
index dadcbb2..6a862e0 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Camp"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tipus"
@@ -693,7 +693,7 @@ msgstr "Actualitzat"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Acció"
@@ -1450,7 +1450,7 @@ msgstr "La base de dades sembla buida!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1481,7 +1481,7 @@ msgstr "Operacions"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Permisos"
@@ -1799,6 +1799,11 @@ msgstr "Mostra contingut BLOB"
msgid "Show binary contents as HEX"
msgstr "Mostra el contingut binari com HEX"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Amaga"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1833,8 +1838,9 @@ msgid "in query"
msgstr "en consulta"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2215,7 +2221,8 @@ msgstr "Estructura de la taula"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Servidor"
@@ -2563,7 +2570,7 @@ msgstr "Edita el següent registre"
msgid "Go back to this page"
msgstr "Torna a aquesta pàgina"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Tot"
@@ -3009,7 +3016,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Res"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Atorga tots els permisos a la base de dades "%s""
@@ -3168,7 +3175,7 @@ msgstr ""
"La pàgina actual té referències a taules que no existeixen. Vols esborrar "
"aquestes referències?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3517,7 +3524,7 @@ msgid "Go to view"
msgstr "Vés a la vista"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Atorga"
@@ -3555,11 +3562,6 @@ msgstr "Ajuda"
msgid "Use hexadecimal for BLOB"
msgstr "Usa hexadecimal per a BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Amaga"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Amaga/Mostra tot"
@@ -3638,7 +3640,7 @@ msgstr "No importis files buides"
msgid "Import/Export coordinates for PDF schema"
msgstr "Importa/Exporta coordenades per a esquema PDF"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importa arxius"
@@ -4576,7 +4578,7 @@ msgstr "Memòria cau de consultes"
msgid "Query window"
msgstr "Finestra de consultes"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Historial SQL"
@@ -6249,7 +6251,7 @@ msgstr "Canvia l' scratchboard"
msgid "Toggle small/big"
msgstr "Canviar petit/gran"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Per triar una relació, clica :"
@@ -6641,14 +6643,14 @@ msgstr "Informació general de l'usuari"
msgid "The selected users have been deleted successfully."
msgstr "S'han esborrat correctament els usuaris triats."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Usuaris amb accés a "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Usuari"
diff --git a/po/cs.po b/po/cs.po
index 977d583..d23a460 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-05-06 07:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
@@ -119,10 +119,10 @@ msgstr "Sloupec"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -690,7 +690,7 @@ msgstr "Aktualizováno"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Akce"
@@ -1389,7 +1389,7 @@ msgstr "Databáze se zdá být prázdná!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1420,7 +1420,7 @@ msgstr "Úpravy"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Oprávnění"
@@ -1733,6 +1733,11 @@ msgstr "Zobrazit obsah BLOBu"
msgid "Show binary contents as HEX"
msgstr "Zobrazit binární obsah šestnáctkově (HEX)"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Skrýt"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1767,8 +1772,9 @@ msgid "in query"
msgstr "v dotazu"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2141,7 +2147,8 @@ msgstr "Struktura tabulky"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Počítač"
@@ -2490,7 +2497,7 @@ msgstr "Upravit následující řádek"
msgid "Go back to this page"
msgstr "Návrat na tuto stránku"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Všechno"
@@ -2929,7 +2936,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Žádná"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Přidělit všechna oprávnění na databázi "%s""
@@ -3088,7 +3095,7 @@ msgstr ""
"Aktuální stránka se odkazuje na tabulky, které již neexistují. Chcete "
"odstranit tyto odkazy?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3434,7 +3441,7 @@ msgid "Go to view"
msgstr "Přejít na podhled"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Přidělování"
@@ -3470,11 +3477,6 @@ msgstr "Nápověda"
msgid "Use hexadecimal for BLOB"
msgstr "Použít šestnáctkové zobrazení pro BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Skrýt"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Skrýt/Zobrazit vše"
@@ -3553,7 +3555,7 @@ msgstr "Neimportovat prázdné řádky"
msgid "Import/Export coordinates for PDF schema"
msgstr "Import/Export souřadnic pro PDF schéma"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importovat soubory"
@@ -4485,7 +4487,7 @@ msgstr "Vyrovnávací paměť dotazů"
msgid "Query window"
msgstr "Okno dotazů"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL historie"
@@ -6122,7 +6124,7 @@ msgstr "Zobrazit grafický návrh"
msgid "Toggle small/big"
msgstr "Přepnout malé/velké"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Pro výběr relace klikněte :"
@@ -6514,14 +6516,14 @@ msgstr "Přehled uživatelů"
msgid "The selected users have been deleted successfully."
msgstr "Vybraní uživatelé byli úspěšně odstraněni."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Uživatelé mající přístup k „%s“"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Uživatel"
diff --git a/po/da.po b/po/da.po
index 45c4de3..24ad08c 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Feltnavn"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Datatype"
@@ -692,7 +692,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Handling"
@@ -1443,7 +1443,7 @@ msgstr "Database ser ud til at være tom!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1474,7 +1474,7 @@ msgstr "Operationer"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegier"
@@ -1786,6 +1786,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Skjul"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1820,8 +1825,9 @@ msgid "in query"
msgstr "i forespørgsel"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2171,7 +2177,8 @@ msgstr "Struktur-dump for tabellen"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Vært"
@@ -2517,7 +2524,7 @@ msgstr "Redigér næste række"
msgid "Go back to this page"
msgstr "Gå tilbage til denne side"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Alle"
@@ -2954,7 +2961,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3113,7 +3120,7 @@ msgstr ""
"Nuværende side har referencer til tabeller der ikke længere eksisterer. Vil "
"du slette disse referencer?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3461,7 +3468,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Tildel"
@@ -3497,11 +3504,6 @@ msgstr "Hjælp"
msgid "Use hexadecimal for BLOB"
msgstr "Brug heksadecimal for BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Skjul"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Skjul/Vis alle"
@@ -3578,7 +3580,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Importer/Eksporter koordinater for PDF-opstilling"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importér filer"
@@ -4505,7 +4507,7 @@ msgstr "Forespørgsel-mellemlager"
msgid "Query window"
msgstr "Foresp. vindue"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-historik"
@@ -6137,7 +6139,7 @@ msgstr "tegnebræt til/fra"
msgid "Toggle small/big"
msgstr "Skift mellem små/store"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "For at vælge relation, klik :"
@@ -6529,14 +6531,14 @@ msgstr "Brugeroversigt"
msgid "The selected users have been deleted successfully."
msgstr "De valgte brugere er blevet korrekt slettet."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Brugere med adgang til "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Bruger"
diff --git a/po/de.po b/po/de.po
index 88c2179..de16801 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-23 21:07+0200\n"
"Last-Translator: <me(a)michaelkeck.de>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Feld"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -697,7 +697,7 @@ msgstr "Aktualisiert"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Aktion"
@@ -1470,7 +1470,7 @@ msgstr "Die Datenbank scheint leer zu sein!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1501,7 +1501,7 @@ msgstr "Operationen"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Rechte"
@@ -1815,6 +1815,13 @@ msgstr "BLOB Inhalte anzeigen"
msgid "Show binary contents as HEX"
msgstr "Binäre Inhalte anzeigen"
+# Hide heist im deutschen in der EDV ausblenden
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+#, fuzzy
+msgid "Hide"
+msgstr "Verstecken"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1849,8 +1856,9 @@ msgid "in query"
msgstr "in der Abfrage"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2226,7 +2234,8 @@ msgstr "Tabellenstruktur für Tabelle"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2577,7 +2586,7 @@ msgstr "nächste Zeile bearbeiten"
msgid "Go back to this page"
msgstr "Zurück zu dieser Seite"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Alle"
@@ -3022,7 +3031,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "keine"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Gewähre alle Rechte auf die Datenbank "%s""
@@ -3186,7 +3195,7 @@ msgstr ""
"Auf der aktuellen Seite bestehen Referenzen zu Tabellen, die nicht mehr "
"existieren. Sollen diese Referenzen gelöscht werden?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3538,7 +3547,7 @@ msgid "Go to view"
msgstr "Gehe zum View"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "GRANT"
@@ -3574,13 +3583,6 @@ msgstr "Hilfe"
msgid "Use hexadecimal for BLOB"
msgstr "Benutze hexadecimal für BLOB"
-# Hide heist im deutschen in der EDV ausblenden
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-#, fuzzy
-msgid "Hide"
-msgstr "Verstecken"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Alles ein-/ausblenden"
@@ -3659,7 +3661,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Import/Export Koordinaten für das PDF Schema"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Dateiimport"
@@ -4602,7 +4604,7 @@ msgstr "Abfragencache"
msgid "Query window"
msgstr "Abfragefenster"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-Verlaufsprotokoll"
@@ -6283,7 +6285,7 @@ msgstr "Klemmbrett anzeigen"
msgid "Toggle small/big"
msgstr "Wechseln klein/groß"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Um eine Relation auszuwählen, klicken Sie :"
@@ -6684,14 +6686,14 @@ msgstr "Benutzerübersicht"
msgid "The selected users have been deleted successfully."
msgstr "Die gewählten Benutzer wurden gelöscht."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Benutzer mit Zugriff auf "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Benutzer"
diff --git a/po/el.po b/po/el.po
index 259b33e..d6d134f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Πεδίο"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Τύπος"
@@ -697,7 +697,7 @@ msgstr "Ενημερώθηκε"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Ενέργεια"
@@ -1460,7 +1460,7 @@ msgstr "Η βάση δεδομένων φαίνεται να είναι άδει
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1491,7 +1491,7 @@ msgstr "Λειτουργίες"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Δικαιώματα"
@@ -1808,6 +1808,11 @@ msgstr "Εμφάνιση περιεχομένων BLOB"
msgid "Show binary contents as HEX"
msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Απόκρυψη"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1842,8 +1847,9 @@ msgid "in query"
msgstr "στην εντολή"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Αλλαγή"
@@ -2227,7 +2233,8 @@ msgstr "Δομή Πίνακα για τον Πίνακα"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Σύστημα"
@@ -2576,7 +2583,7 @@ msgstr "Επεξεργασία επόμενης γραμμής"
msgid "Go back to this page"
msgstr "Επιστροφή σε αυτή τη σελίδα"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Όλα"
@@ -3017,7 +3024,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Καμία"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Πλήρη δικαιώματα στη βάση δεδομένων «%s»"
@@ -3176,7 +3183,7 @@ msgstr ""
"Η τρέχουσα σελίδα έχει αναφορές σε πίνακες που δεν υπάρχουν πια. Θέλετε να "
"διαγραφές αυτές οι αναφορές;"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3528,7 +3535,7 @@ msgid "Go to view"
msgstr "Μετάβαση στην προβολή"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Χορήγηση"
@@ -3566,11 +3573,6 @@ msgstr "Βοήθεια"
msgid "Use hexadecimal for BLOB"
msgstr "Χρήση δεκαεξαδικού για τον BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Απόκρυψη"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Απόκρυψη/Προβολή όλων"
@@ -3649,7 +3651,7 @@ msgstr "Να μην γίνει εισαγωγή άδειων γραμμών"
msgid "Import/Export coordinates for PDF schema"
msgstr "Εισαγωγή/Εξαγωγή συντεταγμένων για σχέδιο PDF"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Εισαγωγή αρχείων"
@@ -4594,7 +4596,7 @@ msgstr "Λανθάνουσα μνήμη ερωτήματος"
msgid "Query window"
msgstr "Παράθυρο ερωτήματος"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Ιστορικό SQL"
@@ -6306,7 +6308,7 @@ msgstr "(Απ)ενεργοποίηση πίνακα σχεδιασμού"
msgid "Toggle small/big"
msgstr "Εναλλαγή μικρά/μεγάλα"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Για να επιλέξετε συσχέτιση, πατήστε :"
@@ -6707,14 +6709,14 @@ msgstr "Περίληψη χρηστών"
msgid "The selected users have been deleted successfully."
msgstr "Οι επιλεγμένοι χρήστες διεγράφησαν επιτυχώς."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Χρήστες με πρόσβαση στη βάση «%s»"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Χρήστης"
diff --git a/po/en_GB.po b/po/en_GB.po
index 3a786f0..487b010 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-05-04 11:46+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Field"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -690,7 +690,7 @@ msgstr "Updated"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Action"
@@ -1387,7 +1387,7 @@ msgstr "Database seems to be empty!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1418,7 +1418,7 @@ msgstr "Operations"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privileges"
@@ -1728,6 +1728,11 @@ msgstr "Show BLOB contents"
msgid "Show binary contents as HEX"
msgstr "Show binary contents as HEX"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Hide"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1762,8 +1767,9 @@ msgid "in query"
msgstr "in query"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2139,7 +2145,8 @@ msgstr "Table structure for table"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2485,7 +2492,7 @@ msgstr "Edit next row"
msgid "Go back to this page"
msgstr "Go back to this page"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "All"
@@ -2924,7 +2931,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "None"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Grant all privileges on database "%s""
@@ -3083,7 +3090,7 @@ msgstr ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3429,7 +3436,7 @@ msgid "Go to view"
msgstr "Go to view"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3465,11 +3472,6 @@ msgstr "Help"
msgid "Use hexadecimal for BLOB"
msgstr "Use hexadecimal for BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Hide"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Hide/Show all"
@@ -3548,7 +3550,7 @@ msgstr "Do not import empty rows"
msgid "Import/Export coordinates for PDF schema"
msgstr "Import/Export coordinates for PDF schema"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Import files"
@@ -4484,7 +4486,7 @@ msgstr "Query cache"
msgid "Query window"
msgstr "Query window"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL history"
@@ -6131,7 +6133,7 @@ msgstr "Toggle scratchboard"
msgid "Toggle small/big"
msgstr "Toggle small/big"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "To select relation, click :"
@@ -6525,14 +6527,14 @@ msgstr "User overview"
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "User"
diff --git a/po/es.po b/po/es.po
index a878c3a..e656cc4 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Campo"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -700,7 +700,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Acción"
@@ -1465,7 +1465,7 @@ msgstr "La base de datos, ¡parece estar vacía!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1496,7 +1496,7 @@ msgstr "Operaciones"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegios"
@@ -1811,6 +1811,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Ocultar"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1845,8 +1850,9 @@ msgid "in query"
msgstr "en la consulta"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2235,7 +2241,8 @@ msgstr "Estructura de tabla para la tabla"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Servidor"
@@ -2587,7 +2594,7 @@ msgstr "Editar la siguiente fila"
msgid "Go back to this page"
msgstr "Volver a esta página"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Todos/as"
@@ -3039,7 +3046,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Ninguna"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Revisar los privilegios para la base de datos "%s"."
@@ -3202,7 +3209,7 @@ msgstr ""
"La página actual tiene referencias a tablas que ya no existen. ¿Desea "
"eliminar esas referencias?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3559,7 +3566,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Conceder"
@@ -3595,11 +3602,6 @@ msgstr "Ayuda"
msgid "Use hexadecimal for BLOB"
msgstr "Use hexadecimal para BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Ocultar"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Ocultar/mostrar todo"
@@ -3676,7 +3678,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Importar/Exportar coordenadas para el esquema PDF"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importar archivos"
@@ -4624,7 +4626,7 @@ msgstr "Cache de consultas"
msgid "Query window"
msgstr "Ventana de consulta"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Historial-SQL"
@@ -6304,7 +6306,7 @@ msgstr "cambiar el estado del scratchboard"
msgid "Toggle small/big"
msgstr "Alterne entre pequeño y grande"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Para seleccionar la relación, dé clic en:"
@@ -6703,14 +6705,14 @@ msgstr "Vista global de usuarios"
msgid "The selected users have been deleted successfully."
msgstr "Los usuarios seleccionados fueron borrados exitosamente."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Usuarios con acceso a "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Usuario"
diff --git a/po/et.po b/po/et.po
index 2cc3047..d273b86 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Väli"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tüüp"
@@ -696,7 +696,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Tegevus"
@@ -1450,7 +1450,7 @@ msgstr "Andmebaas tundub olevat tühi!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1481,7 +1481,7 @@ msgstr "Tegevused"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privileegid"
@@ -1793,6 +1793,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Peida"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_
overview.php:47
msgid "Browser transformation"
@@ -1827,8 +1832,9 @@ msgid "in query"
msgstr "päringus"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2180,7 +2186,8 @@ msgstr "Struktuur tabelile"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Masin"
@@ -2527,7 +2534,7 @@ msgstr "Muuda järgmist rida"
msgid "Go back to this page"
msgstr "Mine tagasi sellele lehele"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Kõik"
@@ -2970,7 +2977,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Pole"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Kontrolli privileege andmebaasile "%s"."
@@ -3133,7 +3140,7 @@ msgstr ""
"Antud lehel on viiteid tabelitele mida enam ei ole. Kas te soovite kustutada "
"need viited?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3483,7 +3490,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Õigused"
@@ -3519,11 +3526,6 @@ msgstr "Abi"
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Peida"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Peida/Näita kõik"
@@ -3600,7 +3602,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Impordi/Ekspordi kordinaadid PDF skeemile"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importige failid"
@@ -4526,7 +4528,7 @@ msgstr "Päringute vahemälu"
msgid "Query window"
msgstr "Päringuaken"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-ajalugu"
@@ -6150,7 +6152,7 @@ msgstr "vaheta märkmetahvlit"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Et valida suhe, kliki :"
@@ -6542,14 +6544,14 @@ msgstr "Kasutaja ülevaade"
msgid "The selected users have been deleted successfully."
msgstr "Valitud kasutajad on õnnestunult kustutatud."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Kasutajad kellel on ligipääs "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Kasutaja"
diff --git a/po/eu.po b/po/eu.po
index 821ea9c..37408c2 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: <hey_neken(a)mundurat.net>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Eremua"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Mota"
@@ -700,7 +700,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Ekintza"
@@ -1449,7 +1449,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1481,7 +1481,7 @@ msgstr "Eragiketak"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Pribilegioak"
@@ -1789,6 +1789,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1823,8 +1828,9 @@ msgid "in query"
msgstr "kontsultan"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2159,7 +2165,8 @@ msgstr "Taularen egitura taula honentzat: "
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Zerbitzaria"
@@ -2503,7 +2510,7 @@ msgstr "Editatu hurrengo lerroa"
msgid "Go back to this page"
msgstr "Egin atzera orri honetara"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Guztiak"
@@ -2951,7 +2958,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Batez"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" datu-basearen pribilegioak egiaztatu."
@@ -3113,7 +3120,7 @@ msgstr ""
"Orri honek existitzen ez diren taulekiko erreferentziak dauzka. "
"Erreferentziok ezabatu nahi al dituzu?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3461,7 +3468,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Baimendu"
@@ -3497,11 +3504,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3580,7 +3582,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Fitxategiak inportatu"
@@ -4513,7 +4515,7 @@ msgstr "Kontsulta mota"
msgid "Query window"
msgstr "Kontsulta-leihoa"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-historia"
@@ -6034,7 +6036,7 @@ msgstr "Aldatu \"scratchboard\"-a"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6416,14 +6418,14 @@ msgstr "Erabiltzailearen info orokorra"
msgid "The selected users have been deleted successfully."
msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""%s"-(e)ra sarbidea duten erabiltzaileak"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Erabiltzailea"
diff --git a/po/fa.po b/po/fa.po
index 68f8901..28cb133 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: persian <fa(a)li.org>\n"
@@ -114,10 +114,10 @@ msgstr "ستون"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "نوع"
@@ -696,7 +696,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "عمل"
@@ -1437,7 +1437,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1469,7 +1469,7 @@ msgstr "عمليات"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "امتيازات"
@@ -1777,6 +1777,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1811,8 +1816,9 @@ msgid "in query"
msgstr "in query"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "تغيير"
@@ -2146,7 +2152,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "ميزبان"
@@ -2490,7 +2497,7 @@ msgstr "ویرایش کردن ردیف بعدی"
msgid "Go back to this page"
msgstr "برگرد به این صفحه"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "همه"
@@ -2934,7 +2941,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "خير"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3092,7 +3099,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3431,7 +3438,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
#, fuzzy
msgid "Grant"
msgstr "چاپ"
@@ -3468,11 +3475,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3551,7 +3553,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr ""
@@ -4459,7 +4461,7 @@ msgstr ""
msgid "Query window"
msgstr ""
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr ""
@@ -5962,7 +5964,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6316,14 +6318,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr ""
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "كاربر"
diff --git a/po/fi.po b/po/fi.po
index b4d37d1..fa9d9c0 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: <kajouni(a)gmail.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Sarake"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tyyppi"
@@ -696,7 +696,7 @@ msgstr "Päivitetty"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Toiminnot"
@@ -1451,7 +1451,7 @@ msgstr "Tietokanta on tyhjä!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1482,7 +1482,7 @@ msgstr "Toiminnot"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Käyttöoikeudet"
@@ -1799,6 +1799,11 @@ msgstr "Näytä BLOB-sisältö"
msgid "Show binary contents as HEX"
msgstr "Näytä binaarisisältö heksamuodossa"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Kätke"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1833,8 +1838,9 @@ msgid "in query"
msgstr "lauseessa"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2209,7 +2215,8 @@ msgstr "Rakenne taululle"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Palvelin"
@@ -2559,7 +2566,7 @@ msgstr "Muokkaa seuraavaa riviä"
msgid "Go back to this page"
msgstr "Palaa tälle sivulle"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Kaikki"
@@ -3004,7 +3011,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Ei mitään"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Anna tietokannalle "%s" kaikki oikeudet"
@@ -3164,7 +3171,7 @@ msgstr ""
"Nykyisellä sivulla on viittauksia tauluihin, joita ei enää ole olemassa. "
"Haluatko poistaa nuo viittaukset?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3511,7 +3518,7 @@ msgid "Go to view"
msgstr "Siirry näkymään"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Valtuudet (GRANT)"
@@ -3547,11 +3554,6 @@ msgstr "Ohje"
msgid "Use hexadecimal for BLOB"
msgstr "Käytä BLOB-arvoissa heksalukuja"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Kätke"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Kätke/näytä kaikki"
@@ -3630,7 +3632,7 @@ msgstr "Älä tuo tyhjiä riviä"
msgid "Import/Export coordinates for PDF schema"
msgstr "Tuo/vie PDF-skeeman koordinaatit"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Tuo tiedostoja"
@@ -4558,7 +4560,7 @@ msgstr "Kyselyvälimuisti"
msgid "Query window"
msgstr "Kyselyikkuna"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-historia"
@@ -6235,7 +6237,7 @@ msgstr "Näytä/kätke luonnospöytä"
msgid "Toggle small/big"
msgstr "Vaihda pieneksi/suureksi"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Valitaksesi relaation, paina :"
@@ -6630,14 +6632,14 @@ msgstr "Käyttäjien yleiskatsaus"
msgid "The selected users have been deleted successfully."
msgstr "Valitsemiesi käyttäjien poisto onnistui."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Käyttäjät, joilla on oikeus käyttää kohdetta "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Käyttäjä"
diff --git a/po/fr.po b/po/fr.po
index 1a9bbe3..97e697a 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-05-04 16:34+0200\n"
"Last-Translator: Marc <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Champ"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -690,7 +690,7 @@ msgstr "Mis à jour"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Action"
@@ -1399,7 +1399,7 @@ msgstr "La base de données semble vide!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1430,7 +1430,7 @@ msgstr "Opérations"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilèges"
@@ -1741,6 +1741,11 @@ msgstr "Montrer le contenu BLOB"
msgid "Show binary contents as HEX"
msgstr "Montrer le contenu binaire en hexadécimal"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Cacher"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1775,8 +1780,9 @@ msgid "in query"
msgstr "dans la requête"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2160,7 +2166,8 @@ msgstr "Structure de la table"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Serveur"
@@ -2507,7 +2514,7 @@ msgstr "Modifier l'enregistrement suivant"
msgid "Go back to this page"
msgstr "Demeurer sur cette page"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Tout"
@@ -2952,7 +2959,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "aucune"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Donner tous les privilèges sur la base de données "%s""
@@ -3111,7 +3118,7 @@ msgstr ""
"Cette page fait référence à des tables qui n'existent plus. Voulez-vous "
"effacer ces références?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3461,7 +3468,7 @@ msgid "Go to view"
msgstr "Aller à la vue"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr " «Grant »"
@@ -3497,11 +3504,6 @@ msgstr "Aide"
msgid "Use hexadecimal for BLOB"
msgstr "Utiliser l'hexadecimal pour les BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Cacher"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Cacher/montrer tout"
@@ -3580,7 +3582,7 @@ msgstr "Ne pas importer les lignes vides"
msgid "Import/Export coordinates for PDF schema"
msgstr "Importer/Exporter les coordonnées pour le schéma PDF"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importe les fichiers"
@@ -4541,7 +4543,7 @@ msgstr "Cache des requêtes"
msgid "Query window"
msgstr "Fenêtre SQL"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Historique SQL"
@@ -6216,7 +6218,7 @@ msgstr "Éditeur visuel"
msgid "Toggle small/big"
msgstr "Bascule agrandir/réduire"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Pour sélectionner un lien, cliquez :"
@@ -6614,14 +6616,14 @@ msgstr "Vue d'ensemble des utilisateurs"
msgid "The selected users have been deleted successfully."
msgstr "Les utilisateurs sélectionnés ont été effacés."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Utilisateurs ayant accès à "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Utilisateur"
diff --git a/po/gl.po b/po/gl.po
index ab8d6a5..fb9f426 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -117,10 +117,10 @@ msgstr "Campo"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -695,7 +695,7 @@ msgstr "Actualizada"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Acción"
@@ -1454,7 +1454,7 @@ msgstr "Parece ser que a táboa está baleira!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1485,7 +1485,7 @@ msgstr "Operacións"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilexios"
@@ -1802,6 +1802,11 @@ msgstr "Mostrar os contidos BLOB"
msgid "Show binary contents as HEX"
msgstr "Mostrar o contido binario como HEX"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Agochar"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1836,8 +1841,9 @@ msgid "in query"
msgstr "a procurar"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2220,7 +2226,8 @@ msgstr "Estrutura da táboa"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Servidor"
@@ -2569,7 +2576,7 @@ msgstr "Modificar a fileira seguinte"
msgid "Go back to this page"
msgstr "Voltar para esta páxina"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Todos"
@@ -3016,7 +3023,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Ningunha"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Conceder todos os privilexios sobre a base de datos "%s""
@@ -3175,7 +3182,7 @@ msgstr ""
"Esta páxina ten referencias a táboas que xa non existen. Quere eliminar esas "
"referencias?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3523,7 +3530,7 @@ msgid "Go to view"
msgstr "Ir á vista"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Conceder"
@@ -3560,11 +3567,6 @@ msgstr "Axuda"
msgid "Use hexadecimal for BLOB"
msgstr "Use hexadecimal para BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Agochar"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Agochalo/Mostralo todo"
@@ -3643,7 +3645,7 @@ msgstr "Non importar as fileiras baleiras"
msgid "Import/Export coordinates for PDF schema"
msgstr "Importar/Exportar coordenadas para esquema PDF"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importar ficheiros"
@@ -4574,7 +4576,7 @@ msgstr "caché de procuras"
msgid "Query window"
msgstr "Xanela de procuras"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Historial de SQL"
@@ -6257,7 +6259,7 @@ msgstr "conmutar o borrador"
msgid "Toggle small/big"
msgstr "Alternar pequeno/grande"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Para seleccionar unha relación, prema:"
@@ -6648,14 +6650,14 @@ msgstr "Vista xeral dos usuarios"
msgid "The selected users have been deleted successfully."
msgstr "Elimináronse sen problemas os usuarios seleccionados."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Usuarios que teñen acceso a "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Usuario"
diff --git a/po/he.po b/po/he.po
index 8e64fcd..a6f6106 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -113,10 +113,10 @@ msgstr "שדה"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "סוג"
@@ -692,7 +692,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "פעולה"
@@ -1435,7 +1435,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1467,7 +1467,7 @@ msgstr "פעולות"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "הרשאות"
@@ -1777,6 +1777,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
#, fuzzy
@@ -1812,8 +1817,9 @@ msgid "in query"
msgstr "בשאילתה"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "שינוי"
@@ -2146,7 +2152,8 @@ msgstr "מבנה טבלה עבור טבלה"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "מארח"
@@ -2494,7 +2501,7 @@ msgstr "עריכת השורה הבאה"
msgid "Go back to this page"
msgstr "חזרה אחורה לעמוד זה"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "הכל"
@@ -2934,7 +2941,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "ללא"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "בדיקת הראשות עבור מאגר נתונים "%s"."
@@ -3095,7 +3102,7 @@ msgstr ""
"לעמוד הנוכחי יש הפניות לטבלאות שכבר לא קיימות. האם אתה רוצה למחוק את הפניות "
"אלו?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3438,7 +3445,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "הענקה"
@@ -3474,11 +3481,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3556,7 +3558,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "קבצי ייבוא"
@@ -4474,7 +4476,7 @@ msgstr "סוג שאילתה"
msgid "Query window"
msgstr "חלון שאילתה"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "היסטוריית SQL"
@@ -5971,7 +5973,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6326,14 +6328,14 @@ msgstr "סקירת משתמשים"
msgid "The selected users have been deleted successfully."
msgstr "%s מסדי נתונים נמחקו בהצלחה."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "משתמש"
diff --git a/po/hi.po b/po/hi.po
index 2ac50a0..8aef881 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-05-05 04:47+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -117,10 +117,10 @@ msgstr "फील्ड"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "टाइप"
@@ -696,7 +696,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "कार्य"
@@ -1414,7 +1414,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
@@ -1445,7 +1445,7 @@ msgstr "कार्रवाई"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr " प्रिविलेज"
@@ -1747,6 +1747,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1781,8 +1786,9 @@ msgid "in query"
msgstr ""
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "बदलिये"
@@ -2114,7 +2120,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "होस्ट"
@@ -2455,7 +2462,7 @@ msgstr "अगली रो को संपादित करें"
msgid "Go back to this page"
msgstr "इस पृष्ठ पर वापस जाएँ"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "सभी"
@@ -2887,7 +2894,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3042,7 +3049,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3377,7 +3384,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr ""
@@ -3413,11 +3420,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr ""
@@ -3494,7 +3496,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr ""
@@ -4386,7 +4388,7 @@ msgstr ""
msgid "Query window"
msgstr "क्वरी पेज"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL- इतिहास"
@@ -5872,7 +5874,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6222,14 +6224,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr ""
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "यूसर"
diff --git a/po/hr.po b/po/hr.po
index b9344eb..7633aca 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Polje"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Vrsta"
@@ -698,7 +698,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Aktivnost"
@@ -1462,7 +1462,7 @@ msgstr "Baza podataka izgleda praznom!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1493,7 +1493,7 @@ msgstr "Operacije"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegije"
@@ -1805,6 +1805,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Sakrij"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1839,8 +1844,9 @@ msgid "in query"
msgstr "unutar upita"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2220,7 +2226,8 @@ msgstr "Tablična struktura za tablicu"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Računalo"
@@ -2570,7 +2577,7 @@ msgstr "Uredi sljedeći redak"
msgid "Go back to this page"
msgstr "Kreni nazad na ovu stranicu"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Sve"
@@ -3009,7 +3016,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "bez kompresije"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Provjeri privilegije za bazu podataka \"%s\"."
@@ -3171,7 +3178,7 @@ msgstr ""
"Trenutna stranica sadrži reference prema tablicama koje više ne postoje. "
"Želite li izbrisati te reference?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3523,7 +3530,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Podarivanje"
@@ -3559,11 +3566,6 @@ msgstr "Pomoć"
msgid "Use hexadecimal for BLOB"
msgstr "Za BLOB upotrijebi heksadecimalno"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Sakrij"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Prikaži / Sakrij sve"
@@ -3640,7 +3642,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Uvoz / Izvoz koordinate iz PDF sheme"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Uvezi datoteke"
@@ -4572,7 +4574,7 @@ msgstr "Pohrana upita"
msgid "Query window"
msgstr "Prozor za upite"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL povijest"
@@ -6220,7 +6222,7 @@ msgstr "Uključi bilješke"
msgid "Toggle small/big"
msgstr "Malo / Veliko"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Za odabir relacije pritisnite:"
@@ -6617,14 +6619,14 @@ msgstr "Pregled korisnika"
msgid "The selected users have been deleted successfully."
msgstr "Odabrani korisnici uspješno su izbrisani."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Korisnici koji imaju pristup u \"%s\""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Korisnik"
diff --git a/po/hu.po b/po/hu.po
index 19c2105..7aa413b 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian <hu(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Mező"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Típus"
@@ -696,7 +696,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Művelet"
@@ -1462,7 +1462,7 @@ msgstr "Üresnek tűnik az adatbázis!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1493,7 +1493,7 @@ msgstr "Műveletek"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Jogok"
@@ -1808,6 +1808,11 @@ msgstr "BLOB-tartalom megjelenítése"
msgid "Show binary contents as HEX"
msgstr "Bináris tartalom megjelenítése"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Elrejtés"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1842,8 +1847,9 @@ msgid "in query"
msgstr "lekérdezésben"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2222,7 +2228,8 @@ msgstr "Tábla szerkezet:"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Hoszt"
@@ -2571,7 +2578,7 @@ msgstr "Következő sor szerkesztése"
msgid "Go back to this page"
msgstr "Visszatérés erre az oldalra"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Mind"
@@ -3022,7 +3029,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Nincs"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Az összes jog engedélyezése a(z) "%s" adatbázison"
@@ -3183,7 +3190,7 @@ msgstr ""
"A jelenlegi oldalon lévő táblahivatkozások már léteznek. Szeretné törölni "
"ezeket a hivatkozásokat?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3535,7 +3542,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Engedélyezés"
@@ -3571,11 +3578,6 @@ msgstr "Súgó"
msgid "Use hexadecimal for BLOB"
msgstr "Hexadecimális értékek használata a BLOB művelethez"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Elrejtés"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Minden elrejtése/megjelenítése"
@@ -3654,7 +3656,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "A PDF-séma importálási/exportálási koordinátái"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Fájlok importálása"
@@ -4594,7 +4596,7 @@ msgstr "Lekérdezési gyorsítótár"
msgid "Query window"
msgstr "Lekérdezés ablak"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-előzmények"
@@ -6247,7 +6249,7 @@ msgstr "Scratchboard kapcsolása"
msgid "Toggle small/big"
msgstr "Kicsi/nagy kapcsoló"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "A kapcsolat kiválasztásához, kattintson :"
@@ -6650,14 +6652,14 @@ msgstr "Felhasználók áttekintése"
msgid "The selected users have been deleted successfully."
msgstr "A kiválasztott felhasználók törlése sikerült."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "A(z) "%s" adatbázishoz hozzáférhető felhasználók"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Felhasználó"
diff --git a/po/id.po b/po/id.po
index e73911f..14d965e 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-17 21:14+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Field"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Jenis"
@@ -696,7 +696,7 @@ msgstr "Diperbarui"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Aksi"
@@ -1444,7 +1444,7 @@ msgstr "Database kelihatannya kosong"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1476,7 +1476,7 @@ msgstr "Operasi"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Hak Akses"
@@ -1787,6 +1787,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1821,8 +1826,9 @@ msgid "in query"
msgstr "dalam susunan pemeriksaan"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2174,7 +2180,8 @@ msgstr "Struktur dari tabel"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2521,7 +2528,7 @@ msgstr "Edit baris berikut"
msgid "Go back to this page"
msgstr "Kembali ke halaman ini"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Semua"
@@ -2959,7 +2966,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Tak satupun"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Berikan semua hak untuk database "%s"."
@@ -3118,7 +3125,7 @@ msgstr ""
"Halaman ini berisi referensi tentang tabel yang sudah tidak ada. Apakah Anda "
"ingin hapus referensi yang bersangkutan?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3464,7 +3471,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Izin"
@@ -3500,11 +3507,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3582,7 +3584,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Impor file"
@@ -4522,7 +4524,7 @@ msgstr "Tipe Pencarian"
msgid "Query window"
msgstr "Jendela Pencarian"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Sejarah SQL"
@@ -6045,7 +6047,7 @@ msgstr "pindah buku catatan (Scratchboard)"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6434,14 +6436,14 @@ msgstr "Pandangan Umum Pengguna"
msgid "The selected users have been deleted successfully."
msgstr "Sukses menghapus Pengguna yang dipilih."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Pengguna memiliki akses ke "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Pengguna"
diff --git a/po/it.po b/po/it.po
index 07b5edf..ab73b8f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-11 11:19+0200\n"
"Last-Translator: Fabio <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
@@ -119,10 +119,10 @@ msgstr "Campo"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -700,7 +700,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Azione"
@@ -1461,7 +1461,7 @@ msgstr "Il databse sembra essere vuoto!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1492,7 +1492,7 @@ msgstr "Operazioni"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegi"
@@ -1811,6 +1811,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Nascondi"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1845,8 +1850,9 @@ msgid "in query"
msgstr "nella query"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2228,7 +2234,8 @@ msgstr "Struttura della tabella"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2572,7 +2579,7 @@ msgstr "Modifica il record successivo"
msgid "Go back to this page"
msgstr "Torna a questa pagina"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Tutti"
@@ -3017,7 +3024,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Nessuno"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Garantisci tutti i privilegi per il database "%s""
@@ -3176,7 +3183,7 @@ msgstr ""
"La Pagina corrente contiene Riferimenti a Tabelle che non esistono più. "
"Volete cancellare questi Riferimenti?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3525,7 +3532,7 @@ msgid "Go to view"
msgstr "Vai alla visualizzazione"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3563,11 +3570,6 @@ msgstr "Aiuto"
msgid "Use hexadecimal for BLOB"
msgstr "Usa dati esadecimali per BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Nascondi"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Mostra/nascondi tutto"
@@ -3646,7 +3648,7 @@ msgstr "Non importare righe vuote"
msgid "Import/Export coordinates f
or PDF schema"
msgstr "Importa/esporta le coordinate per PDF schema"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importa file"
@@ -4592,7 +4594,7 @@ msgstr "Cache delle query"
msgid "Query window"
msgstr "Finestra della Query"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Storico dell'SQL"
@@ -6259,7 +6261,7 @@ msgstr "(dis)attiva scratchboard"
msgid "Toggle small/big"
msgstr "Contrai/Espandi"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Per selezionare una relazione, click :"
@@ -6660,14 +6662,14 @@ msgstr "Vista d'insieme dell'utente"
msgid "The selected users have been deleted successfully."
msgstr "Gli utenti selezionati sono stati cancellati con successo."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Utenti che hanno accesso a \"%s\""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Utente"
diff --git a/po/ja.po b/po/ja.po
index 3ba1613..7d4d254 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: japanese <jp(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "フィールド"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "種別"
@@ -694,7 +694,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "操作"
@@ -1438,7 +1438,7 @@ msgstr "データベースが空のようです!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1469,7 +1469,7 @@ msgstr "操作"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "特権"
@@ -1780,6 +1780,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "隠す"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1814,8 +1819,9 @@ msgid "in query"
msgstr "行/クエリ"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "変更"
@@ -2189,7 +2195,8 @@ msgstr "テーブルの構造"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "ホスト"
@@ -2535,7 +2542,7 @@ msgstr "次の行を編集する"
msgid "Go back to this page"
msgstr "このページに戻る"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "全部"
@@ -2971,7 +2978,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3130,7 +3137,7 @@ msgstr ""
"このページには存在しないテーブルへの参照があります。これらの参照を削除します"
"か?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3479,7 +3486,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "権限委譲"
@@ -3515,11 +3522,6 @@ msgstr "ヘルプ"
msgid "Use hexadecimal for BLOB"
msgstr "BLOBに16進数表記を利用する"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "隠す"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "すべて隠す/表示"
@@ -3596,7 +3598,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "PDF スキーマの座標をインポート/エクスポートする"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "インポートファイル"
@@ -4517,7 +4519,7 @@ msgstr "クエリキャッシュ"
msgid "Query window"
msgstr "クエリウィンドウ"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL 履歴"
@@ -6120,7 +6122,7 @@ msgstr "スクラッチボードを切り替える"
msgid "Toggle small/big"
msgstr "大小を切り替える"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "リレーションを選択します:"
@@ -6508,14 +6510,14 @@ msgstr "ユーザ概略"
msgid "The selected users have been deleted successfully."
msgstr "選択したユーザを正しく削除しました"
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" にアクセスできるユーザ"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "ユーザ"
diff --git a/po/ka.po b/po/ka.po
index 0f564d9..79ad83a 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "ველი"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "ტიპი"
@@ -697,7 +697,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "მოქმედება"
@@ -1453,7 +1453,7 @@ msgstr "Database seems to be empty!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1484,7 +1484,7 @@ msgstr "მოქმედებები"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "პრივილეგიები"
@@ -1798,6 +1798,11 @@ msgstr "Show BLOB contents"
msgid "Show binary contents as HEX"
msgstr "ორობითი შიგთავსის ჩვენება"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "დამალვა"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1832,8 +1837,9 @@ msgid "in query"
msgstr "მოთხოვნაში"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "შეცვლა"
@@ -2209,7 +2215,8 @@ msgstr "Table structure for table"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "ჰოსტი"
@@ -2559,7 +2566,7 @@ msgstr "შემდეგი სტრიქონის რედაქტი
msgid "Go back to this page"
msgstr "ამ გვერდზე დაბრუნება"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "ყველა"
@@ -3004,7 +3011,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "არაა"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "ყველა პრივილეგიის მინიჭება მონაცემთა ბაზისთვის "%s""
@@ -3166,7 +3173,7 @@ msgstr ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3516,7 +3523,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3552,11 +3559,6 @@ msgstr "დახმარება"
msgid "Use hexadecimal for BLOB"
msgstr "Use hexadecimal for BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "დამალვა"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "ყველას დამალვა/ჩვენება"
@@ -3633,7 +3635,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Import/Export coordinates for PDF schema"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "ფაილების შემოტანა"
@@ -4565,7 +4567,7 @@ msgstr "Query cache"
msgid "Query window"
msgstr "Query window"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL history"
@@ -6204,7 +6206,7 @@ msgstr "Toggle scratchboard"
msgid "Toggle small/big"
msgstr "Toggle small/big"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "To select relation, click :"
@@ -6600,14 +6602,14 @@ msgstr "მომხმარებლის მიმოხილვა"
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "მომხმარებელი"
diff --git a/po/ko.po b/po/ko.po
index 33563fc..ccbab64 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: korean <ko(a)li.org>\n"
@@ -115,10 +115,10 @@ msgstr "필드"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "종류"
@@ -699,7 +699,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "실행"
@@ -1435,7 +1435,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1467,7 +1467,7 @@ msgstr "테이블 작업"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "사용권한"
@@ -1773,6 +1773,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1807,8 +1812,9 @@ msgid "in query"
msgstr "질의(in query)"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "변경"
@@ -2143,7 +2149,8 @@ msgstr "테이블 구조"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "호스트"
@@ -2489,7 +2496,7 @@ msgstr ""
msgid "Go back to this page"
msgstr "되돌아가기"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "All"
@@ -2935,7 +2942,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "없음"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "데이터베이스 "%s" 에 대한 사용권한 검사."
@@ -3093,7 +3100,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3434,7 +3441,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
#, fuzzy
msgid "Grant"
msgstr "인쇄"
@@ -3471,11 +3478,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3553,7 +3555,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "파일 가져오기"
@@ -4466,7 +4468,7 @@ msgstr "질의 종류"
msgid "Query window"
msgstr "질의 창"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL 내력(히스토리)"
@@ -5970,7 +5972,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6324,14 +6326,14 @@ msgstr "사용자 개요"
msgid "The selected users have been deleted successfully."
msgstr "선택한 사용자들을 삭제했습니다."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" 에 접근할 수 있는 사용자들"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "사용자"
diff --git a/po/lt.po b/po/lt.po
index ef71ef0..50eeb84 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis <rytis.s(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Laukas"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tipas"
@@ -695,7 +695,7 @@ msgstr "Atnaujinta"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Veiksmas"
@@ -1450,7 +1450,7 @@ msgstr "Lentelė atrodo tuščia!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1481,7 +1481,7 @@ msgstr "Veiksmai"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegijos"
@@ -1792,6 +1792,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Paslėpti"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1826,8 +1831,9 @@ msgid "in query"
msgstr "užklausą vykdoma"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2171,7 +2177,8 @@ msgstr "Sukurta duomenų struktūra lentelei"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Darbinė stotis"
@@ -2517,7 +2524,7 @@ msgstr "Redaguoti kitą įrašą"
msgid "Go back to this page"
msgstr "Grįžti atgal į šį puslapį"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Viską"
@@ -2959,7 +2966,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Nėra"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Patikrinti duombazės "%s" privilegijas."
@@ -3121,7 +3128,7 @@ msgstr ""
"Šis puslapis turi nuorodų į lenteles, kurios jau neegzistuoja. Ar norite "
"pašalinti šias nuorodas?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3467,7 +3474,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Suteikti"
@@ -3503,11 +3510,6 @@ msgstr "Pagalba"
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Paslėpti"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Paslėpti/rodyti visus"
@@ -3584,7 +3586,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importuoti failus"
@@ -4515,7 +4517,7 @@ msgstr "Užklausų saugykla"
msgid "Query window"
msgstr "Užklausų langas"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL užklausų istorija"
@@ -6054,7 +6056,7 @@ msgstr "įjungti scratchboard"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6436,14 +6438,14 @@ msgstr "Vartotojų peržiūra"
msgid "The selected users have been deleted successfully."
msgstr "Pažymėti vartotojai sėkmingai pašalinti."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Vartotojai turintys priėjimą prie "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Vartotojas"
diff --git a/po/lv.po b/po/lv.po
index 76d2fbb..00891d4 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Lauks"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tips"
@@ -695,7 +695,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Darbība"
@@ -1444,7 +1444,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1476,7 +1476,7 @@ msgstr "Darbības"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilēģijas"
@@ -1786,6 +1786,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1820,8 +1825,9 @@ msgid "in query"
msgstr "vaicājumā"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2156,7 +2162,8 @@ msgstr "Tabulas struktūra tabulai"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Hosts"
@@ -2504,7 +2511,7 @@ msgstr ""
msgid "Go back to this page"
msgstr "Atgriezties šajā lapā"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Visi"
@@ -2951,7 +2958,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Nav"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Pārbaudīt privilēģijas uz datubāzi "%s"."
@@ -3112,7 +3119,7 @@ msgstr ""
"Tekošajā lapā ir atsauces uz tabulām, kas vairs neeksistē. Vai Jūs gribat "
"dzēst šīs atsauces?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3458,7 +3465,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Piešķirt"
@@ -3494,11 +3501,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3576,7 +3578,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importēt failus"
@@ -4505,7 +4507,7 @@ msgstr "Vaicājuma tips"
msgid "Query window"
msgstr "Vaicājuma logs"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL vēsture"
@@ -6019,7 +6021,7 @@ msgstr "parādīt/noslēpt piezīmju tafeli"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6399,14 +6401,14 @@ msgstr "Lietotāju pārskats"
msgid "The selected users have been deleted successfully."
msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Lietotāji, kam ir pieja datubāzei "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Lietotājs"
diff --git a/po/mk.po b/po/mk.po
index d5c2a50..5d86da2 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic <mk(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Поле"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -695,7 +695,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Акција"
@@ -1447,7 +1447,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1479,7 +1479,7 @@ msgstr "Операции"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Привилегии"
@@ -1790,6 +1790,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1824,8 +1829,9 @@ msgid "in query"
msgstr "во упитот"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Промени"
@@ -2180,7 +2186,8 @@ msgstr "Структура на табелата"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2529,7 +2536,7 @@ msgstr "Ажурирање на следниот запис"
msgid "Go back to this page"
msgstr "Врати се на оваа страница"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Се"
@@ -2973,7 +2980,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "нема"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Провери привилегии за базата на податоци "%s"."
@@ -3134,7 +3141,7 @@ msgstr ""
"Актуелната страница има референци кон табели кои не постојат. Сакате ли да "
"ги избиршете тие референци?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3483,7 +3490,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Овозможи"
@@ -3519,11 +3526,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3601,7 +3603,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Увоз на податотека"
@@ -4537,7 +4539,7 @@ msgstr "Вид на упит"
msgid "Query window"
msgstr "Прозорец за упити"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL историја"
@@ -6053,7 +6055,7 @@ msgstr "Вклучи/исклучи работна табела"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6441,14 +6443,14 @@ msgstr "Преглед на корисници"
msgid "The selected users have been deleted successfully."
msgstr "Изабраните корисници успешно се избришани."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Корисници кои имаат пристап "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Корисник"
diff --git a/po/mn.po b/po/mn.po
index e66a68d..ca1e593 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn(a)li.org>\n"
@@ -115,10 +115,10 @@ msgstr "Талбар"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Төрөл"
@@ -691,7 +691,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Үйлдэл"
@@ -1433,7 +1433,7 @@ msgstr "Өгөгдлийн сан хоосон санагдаж байна!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1464,7 +1464,7 @@ msgstr "Үйлдлүүд"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Онцгой эрхүүд"
@@ -1774,6 +1774,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Нуух"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1808,8 +1813,9 @@ msgid "in query"
msgstr "асуултад"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Солих"
@@ -2158,7 +2164,8 @@ msgstr "Хүснэгтийн бүтэц"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Хост"
@@ -2499,7 +2506,7 @@ msgstr "Дараагийн мөрийг засах"
msgid "Go back to this page"
msgstr "Энэ хуудас руу буцах"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Бүх"
@@ -2934,7 +2941,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3092,7 +3099,7 @@ msgstr ""
"Хүснэгтийн лавлахтай хуудас нь удаан оршихгүй, Та эдгээр лавлахуудыг устгах "
"уу?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3435,7 +3442,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Хандив"
@@ -3471,11 +3478,6 @@ msgstr "Тусламж"
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Нуух"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Нуух/Харуулах бүгдийг"
@@ -3552,7 +3554,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Оруулах/Гаргах PDF схемийн координат"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Файл оруулах"
@@ -4466,7 +4468,7 @@ msgstr "Асуудлын нөөцлөл"
msgid "Query window"
msgstr "Асуултын цонх"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL түүх"
@@ -6017,7 +6019,7 @@ msgstr "toggle scratchboard"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Холбоо сонгохдоо, дарах нь :"
@@ -6395,14 +6397,14 @@ msgstr "User overview"
msgid "The selected users have been deleted successfully."
msgstr "Сонгогдсон хэрэглэгч устгагдлаа."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Хэрэглэгчдийн хандсан нь "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Хэрэглэгч"
diff --git a/po/ms.po b/po/ms.po
index 75c4776..4a41a55 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms(a)li.org>\n"
@@ -115,10 +115,10 @@ msgstr "Medan"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Jenis"
@@ -696,7 +696,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Aksi"
@@ -1439,7 +1439,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1471,7 +1471,7 @@ msgstr "Operasi"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilej"
@@ -1779,6 +1779,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1813,8 +1818,9 @@ msgid "in query"
msgstr "pada kueri"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2149,7 +2155,8 @@ msgstr "Struktur jadual bagi jadual"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Hos"
@@ -2495,7 +2502,7 @@ msgstr ""
msgid "Go back to this page"
msgstr "Kembali ke muka sebelumnya"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Semua"
@@ -2939,7 +2946,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Tiada"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3097,7 +3104,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3439,7 +3446,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
#, fuzzy
msgid "Grant"
msgstr "Cetak"
@@ -3476,11 +3483,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3558,7 +3560,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr ""
@@ -4471,7 +4473,7 @@ msgstr "Jenis Kueri"
msgid "Query window"
msgstr ""
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr ""
@@ -5987,7 +5989,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6341,14 +6343,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr ""
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Pengguna"
diff --git a/po/nb.po b/po/nb.po
index b0bb147..5bfaa6b 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-05-06 08:35+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
@@ -117,10 +117,10 @@ msgstr "Felt"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -687,7 +687,7 @@ msgstr "Oppdatert"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Handling"
@@ -1383,7 +1383,7 @@ msgstr "Databasen ser ut til å være tom!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1414,7 +1414,7 @@ msgstr "Operasjoner"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegier"
@@ -1722,6 +1722,11 @@ msgstr "Vis BLOB innhold"
msgid "Show binary contents as HEX"
msgstr "Vis binært innhold som HEX"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Skjul"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1756,8 +1761,9 @@ msgid "in query"
msgstr "i spørring"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2133,7 +2139,8 @@ msgstr "Tabellstruktur for tabell"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Vert"
@@ -2479,7 +2486,7 @@ msgstr "Rediger neste rad"
msgid "Go back to this page"
msgstr "Tilbake til denne siden"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Alle"
@@ -2919,7 +2926,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Ingen"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Gi alle privilegier for databasen "%s""
@@ -3078,7 +3085,7 @@ msgstr ""
"Den nåværende siden har referanser til tabeller som ikke lenger eksisterer. "
"Vil du slette disse referansene?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3427,7 +3434,7 @@ msgid "Go to view"
msgstr "Gå til visning"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Rettighet"
@@ -3463,11 +3470,6 @@ msgstr "Hjelp"
msgid "Use hexadecimal for BLOB"
msgstr "Bruk heksadesimal for BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Skjul"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Skjul/Vis alle"
@@ -3546,7 +3548,7 @@ msgstr "Ikke importer tomme rader"
msgid "Import/Export coordinates for PDF schema"
msgstr "Importer/Eksporter koordinater for PDF skjema"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importer filer"
@@ -4486,7 +4488,7 @@ msgstr "Spørringsmellomlager"
msgid "Query window"
msgstr "Spørringsvindu"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-historie"
@@ -6145,7 +6147,7 @@ msgstr "slå av/på kladdevindu"
msgid "Toggle small/big"
msgstr "Veksle mellom liten/stor"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "For å velge relasjon, klikk :"
@@ -6535,14 +6537,14 @@ msgstr "Brukeroversikt"
msgid "The selected users have been deleted successfully."
msgstr "De valgte brukerne har blitt slettet."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Brukere som har adgang til "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Bruker"
diff --git a/po/nl.po b/po/nl.po
index 68e8c61..fcf0c1c 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-26 15:46+0200\n"
"Last-Translator: <rink(a)initfour.nl>\n"
"Language-Team: dutch <nl(a)li.org>\n"
@@ -117,10 +117,10 @@ msgstr "Veld"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -694,7 +694,7 @@ msgstr "Bijgewerkt"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Actie"
@@ -1452,7 +1452,7 @@ msgstr "Database lijkt leeg!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1483,7 +1483,7 @@ msgstr "Handelingen"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Rechten"
@@ -1802,6 +1802,11 @@ msgstr "Toon BLOB inhoud"
msgid "Show binary contents as HEX"
msgstr "Toon binaire-inhoud als HEX"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Verberg"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1836,8 +1841,9 @@ msgid "in query"
msgstr "in query"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2220,7 +2226,8 @@ msgstr "Tabelstructuur voor tabel"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Machine"
@@ -2572,7 +2579,7 @@ msgstr "Bewerk volgende rij"
msgid "Go back to this page"
msgstr "Ga terug naar deze pagina"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Alle"
@@ -3020,7 +3027,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Geen"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Geef alle rechten op de database "%s""
@@ -3179,7 +3186,7 @@ msgstr ""
"De huidige pagina heeft referenties met tabellen die niet langer bestaan. "
"Wilt u deze referenties verwijderen?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3530,7 +3537,7 @@ msgid "Go to view"
msgstr "Ga naar view"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Toekennen"
@@ -3566,11 +3573,6 @@ msgstr "Help"
msgid "Use hexadecimal for BLOB"
msgstr "Gebruik hexadecimaal voor BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Verberg"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Toon/Verberg alles"
@@ -3649,7 +3651,7 @@ msgstr "Lege rijen niet importeren"
msgid "Import/Export coordinates for PDF schema"
msgstr "Importeer/Exporteer coördinaten voor PDF-schema"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Bestanden importeren"
@@ -4594,7 +4596,7 @@ msgstr "Query cache"
msgid "Query window"
msgstr "Query-venster"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-geschiedenis"
@@ -6270,7 +6272,7 @@ msgstr "Aan/uit voorbeeldkader"
msgid "Toggle small/big"
msgstr "Wissel klein/groot"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Klik om een relatie te selecteren:"
@@ -6668,14 +6670,14 @@ msgstr "Gebruikers Overzicht"
msgid "The selected users have been deleted successfully."
msgstr "De geselecteerde gebruikers zijn met succes verwijderd."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Gebruikers die toegang hebben tot "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Gebruiker"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 15b70d9..765a90d 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr ""
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr ""
@@ -688,7 +688,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr ""
@@ -1363,7 +1363,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
@@ -1394,7 +1394,7 @@ msgstr ""
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1693,6 +1693,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1727,8 +1732,9 @@ msgid "in query"
msgstr ""
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:15
0 tbl_structure.php:471
+#: 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 ""
@@ -2060,7 +2066,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr ""
@@ -2399,7 +2406,7 @@ msgstr ""
msgid "Go back to this page"
msgstr ""
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr ""
@@ -2831,7 +2838,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, possible-php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -2984,7 +2991,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3319,7 +3326,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr ""
@@ -3355,11 +3362,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr ""
@@ -3436,7 +3438,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr ""
@@ -4326,7 +4328,7 @@ msgstr ""
msgid "Query window"
msgstr ""
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr ""
@@ -5808,7 +5810,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6158,14 +6160,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr ""
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, possible-php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index d719997..1983b2e 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish <pl(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Pole"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -697,7 +697,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Działanie"
@@ -1460,7 +1460,7 @@ msgstr "Baza danych wydaje się pusta!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1491,7 +1491,7 @@ msgstr "Operacje"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Uprawnienia"
@@ -1806,6 +1806,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Ukryj"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1840,8 +1845,9 @@ msgid "in query"
msgstr "w zapytaniu"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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ń"
@@ -2209,7 +2215,8 @@ msgstr "Struktura tabeli dla "
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2560,7 +2567,7 @@ msgstr "Edytuj następny rekord"
msgid "Go back to this page"
msgstr "Powrót do tej strony"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Wszystko"
@@ -3003,7 +3010,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Brak"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Sprawdź uprawnienia bazy danych "%s"."
@@ -3167,7 +3174,7 @@ msgstr ""
"Aktualna strona ma powiązania z tabelą, która już nie istnieje. Czy chcesz "
"usunąć te powiązania?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3517,7 +3524,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Nadawanie"
@@ -3553,11 +3560,6 @@ msgstr "Pomoc"
msgid "Use hexadecimal for BLOB"
msgstr "Użyj liczb szesnastkowych dla typu BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Ukryj"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Ukryj/pokaż wszystko"
@@ -3634,7 +3636,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Importuj/eksportuj współrzędne schematu PDF"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Import plików"
@@ -4566,7 +4568,7 @@ msgstr "Pamięć podręczna zapytań"
msgid "Query window"
msgstr "Okienko zapytania"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Historia SQL"
@@ -6218,7 +6220,7 @@ msgstr "włącz / wyłącz scratchboard"
msgid "Toggle small/big"
msgstr "Przełącz małe/duże"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Aby wybrać powiązanie, kliknij :"
@@ -6613,14 +6615,14 @@ msgstr "Opis użytkownika"
msgid "The selected users have been deleted successfully."
msgstr "Wybrani użytkownicy zostali pomyślnie usunięci."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Użytkownicy mający dostęp do "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Użytkownik"
diff --git a/po/pt.po b/po/pt.po
index b1f4920..60c6d65 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese <pt(a)li.org>\n"
@@ -113,10 +113,10 @@ msgstr "Campo"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -698,7 +698,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Acções"
@@ -1451,7 +1451,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1483,7 +1483,7 @@ msgstr "Operações"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilégios"
@@ -1791,6 +1791,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1825,8 +1830,9 @@ msgid "in query"
msgstr "na pesquisa"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2161,7 +2167,8 @@ msgstr "Estrutura da tabela"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Máquina"
@@ -2509,7 +2516,7 @@ msgstr ""
msgid "Go back to this page"
msgstr "Voltar atrás"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Todas"
@@ -2957,7 +2964,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Nenhum"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Verificar Privilégios para a Base de Dados "%s"."
@@ -3116,7 +3123,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3466,7 +3473,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Conceder/Grant"
@@ -3502,11 +3509,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3584,7 +3586,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importar"
@@ -4511,7 +4513,7 @@ msgstr "Tipo de Query"
msgid "Query window"
msgstr "Janela de Query"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Histórico SQL"
@@ -6033,7 +6035,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6391,14 +6393,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr "Os utilizadores selecionado foram apagados com sucesso."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Utilizadores que tem acesso a "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Utilizador"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 27d4a46..2617740 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-21 05:17+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Campo"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -697,7 +697,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Ação"
@@ -1451,7 +1451,7 @@ msgstr "Banco de Dados parece estar vazio!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1482,7 +1482,7 @@ msgstr "Operações"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilégios"
@@ -1794,6 +1794,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Ocultar"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1828,8 +1833,9 @@ msgid "in query"
msgstr "na consulta"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2184,7 +2190,8 @@ msgstr "Estrutura da tabela"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Servidor"
@@ -2533,7 +2540,7 @@ msgstr "Editar próximo registro"
msgid "Go back to this page"
msgstr "Voltar para esta página"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Todos"
@@ -2969,7 +2976,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Nenhum"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Conceder todos os privilégios no banco de dados "%s""
@@ -3131,7 +3138,7 @@ msgstr ""
"A Página atual contêm referências para uma tabela que não existe. Gostaria "
"de eliminar estas referências?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3482,7 +3489,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Conceder/Grant"
@@ -3518,11 +3525,6 @@ msgstr "Ajuda"
msgid "Use hexadecimal for BLOB"
msgstr "Usar hexadecimal para BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Ocultar"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Ocultar/Exibir tudo"
@@ -3599,7 +3601,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Importar/Exportar coordenadas para esquema PDF"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importar arquivos"
@@ -4530,7 +4532,7 @@ msgstr "Consulta do cache"
msgid "Query window"
msgstr "Janela de consulta"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Histórico de consultas"
@@ -6178,7 +6180,7 @@ msgstr "mudar o estado do Scratchboard"
msgid "Toggle small/big"
msgstr "Mudar para pequeno/grande"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Para selecionar relacionamento, clique :"
@@ -6572,14 +6574,14 @@ msgstr "Avaliação dos usuários"
msgid "The selected users have been deleted successfully."
msgstr "Os usuários selecionados foram apagados com sucesso."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Usuários que têm acesso à "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Usuário"
diff --git a/po/ro.po b/po/ro.po
index c02893c..15ad24a 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-13 00:41+0200\n"
"Last-Translator: <ronaldinia(a)yahoo.com>\n"
"Language-Team: romanian <ro(a)li.org>\n"
@@ -119,10 +119,10 @@ msgstr "Cîmp"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tip"
@@ -699,7 +699,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Acțiune"
@@ -1461,7 +1461,7 @@ msgstr "Baza de date pare a fi goală!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1492,7 +1492,7 @@ msgstr "Operații"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Drepturi de acces"
@@ -1803,6 +1803,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Ascunde"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1837,8 +1842,9 @@ msgid "in query"
msgstr "în interogarea"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2216,7 +2222,8 @@ msgstr "Structura de tabel pentru tabelul"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Gazda"
@@ -2567,7 +2574,7 @@ msgstr "Editează rîndul următor"
msgid "Go back to this page"
msgstr "Înapoi la această pagină"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Toate"
@@ -3016,7 +3023,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Nici unul(a)"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Verifică privilegiile pentru baza de date "%s"."
@@ -3178,7 +3185,7 @@ msgstr ""
"Pagina curentă se leagă de tabele care nu mai există. Doriți ștergerea "
"acestor legături?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3529,7 +3536,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Permite"
@@ -3565,11 +3572,6 @@ msgstr "Ajutor"
msgid "Use hexadecimal for BLOB"
msgstr "Folosește hexazecimale pentru BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Ascunde"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Arată/ascunde toate"
@@ -3646,7 +3648,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Import/Export coordinates for PDF schema"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Import fișiere"
@@ -4584,7 +4586,7 @@ msgstr "Cache interogări"
msgid "Query window"
msgstr "Fereastra de comandă"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Istoric SQL"
@@ -6220,7 +6222,7 @@ msgstr "dezactivare scratchboard"
msgid "Toggle small/big"
msgstr "Comutare mare/mică"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Pentru a alege relația, faceți clic:"
@@ -6615,14 +6617,14 @@ msgstr "Descriere utilizator"
msgid "The selected users have been deleted successfully."
msgstr "Utilizatorii selectați au fost eliminați."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Utilizatorul are acces la "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Utilizator"
diff --git a/po/ru.po b/po/ru.po
index bf2324b..94a18c5 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: russian <ru(a)li.org>\n"
@@ -119,10 +119,10 @@ msgstr "Поле"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -697,7 +697,7 @@ msgstr "Обновлён"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Действие"
@@ -1455,7 +1455,7 @@ msgstr "База данных - пуста!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1486,7 +1486,7 @@ msgstr "Операции"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Привилегии"
@@ -1800,6 +1800,11 @@ msgstr "Показать BLOB содержимое"
msgid "Show binary contents as HEX"
msgstr "Показывать бинарные данные в виде HEX значений"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Скрыть"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1834,8 +1839,9 @@ msgid "in query"
msgstr "по запросу"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Изменить"
@@ -2218,7 +2224,8 @@ msgstr "Структура таблицы"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Хост"
@@ -2568,7 +2575,7 @@ msgstr "Редактировать следующую строку"
msgid "Go back to this page"
msgstr "Вернуться к данной странице"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Все"
@@ -3016,7 +3023,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Нет"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Выставить полные привилегии на базу данных "%s""
@@ -3177,7 +3184,7 @@ msgstr ""
"На текущей странице присутствуют ссылки на таблицы, которые больше не "
"существуют. Удалить эти ссылки?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3524,7 +3531,7 @@ msgid "Go to view"
msgstr "Перейти к отображению (VIEW)"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "GRANT"
@@ -3561,11 +3568,6 @@ msgstr "Помощь"
msgid "Use hexadecimal for BLOB"
msgstr "Использовать шестнадцатеричное отображение для полей типа BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Скрыть"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Скрыть/отобразить все таблицы"
@@ -3644,7 +3646,7 @@ msgstr "Пропускать пустые строки"
msgid "Import/Export coordinates for PDF schema"
msgstr "Импорт/экспорт координат таблиц в/из PDF-схемы"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Импорт файлов"
@@ -4581,7 +4583,7 @@ msgstr "Кеш запросов"
msgid "Query window"
msgstr "Окно запроса"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "История SQL-запросов"
@@ -6269,7 +6271,7 @@ msgstr "Отображение"
msgid "Toggle small/big"
msgstr "Обратное отображение"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
"Для выбора связи нажмите на точке соединения, как показано на картинке:"
@@ -6669,14 +6671,14 @@ msgstr "Обзор учетных записей"
msgid "The selected users have been deleted successfully."
msgstr "Выбранные пользователи были успешно удалены."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Пользователи с правами доступа к "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Пользователь"
diff --git a/po/si.po b/po/si.po
index 7a49a45..27a8a02 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
@@ -117,10 +117,10 @@ msgstr "ක්ෂේත්රය"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "වර්ගය"
@@ -697,7 +697,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "ක්රියාව"
@@ -1450,7 +1450,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1481,7 +1481,7 @@ msgstr "මෙහෙයුම්"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "වරප්රසාද"
@@ -1794,6 +1794,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1828,8 +1833,9 @@ msgid "in query"
msgstr "in query"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "වෙනස් කරන්න"
@@ -2181,7 +2187,8 @@ msgstr "වගුවක් සඳහා වගු සැකිල්ල"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "දායකයා"
@@ -2530,7 +2537,7 @@ msgstr "මීලඟ පේළිය එක් කරන්න"
msgid "Go back to this page"
msgstr "මෙම පිටුව වෙත ආපසු යන්න"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "සියලු"
@@ -2973,7 +2980,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "කිසිවක් නැත"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" දත්තගබඩාව සඳහා වරප්රසාද පරීක්ෂා කරන්න."
@@ -3134,7 +3141,7 @@ msgstr ""
"The current page has references to tables that no longer exist. Would you "
"like to delete those references?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3483,7 +3490,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "ප්රදානය කරන්න"
@@ -3519,11 +3526,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3601,7 +3603,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "ගොනු ආනයනය"
@@ -4531,7 +4533,7 @@ msgstr "Query cache"
msgid "Query window"
msgstr "Query window"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL ඉතිහාසය"
@@ -6162,7 +6164,7 @@ msgstr "Toggle scratchboard"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6550,14 +6552,14 @@ msgstr "User overview"
msgid "The selected users have been deleted successfully."
msgstr "The selected users have been deleted successfully."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Users having access to "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "භාවිතා කරන්නා"
diff --git a/po/sk.po b/po/sk.po
index b3f1bbd..16ffa9c 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: slovak <sk(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Pole"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -697,7 +697,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Akcia"
@@ -1449,7 +1449,7 @@ msgstr "Databáza vyzerá prázdna!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1480,7 +1480,7 @@ msgstr "Operácie"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Oprávnenia"
@@ -1798,6 +1798,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Skryť"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1832,8 +1837,9 @@ msgid "in query"
msgstr "v dopyte"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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ť"
@@ -2184,7 +2190,8 @@ msgstr "Štruktúra tabuľky pre tabuľku"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Hostiteľ"
@@ -2530,7 +2537,7 @@ msgstr "Upraviť nasledujúci riadok"
msgid "Go back to this page"
msgstr "Späť na túto stránku"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Všetko"
@@ -2976,7 +2983,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Žiadny"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Prideliť všetky oprávnenia na databázu "%s""
@@ -3136,7 +3143,7 @@ msgstr ""
"Aktuálna stránka sa odkazuje na tabuľky, ktoré už neexistujú, želáte si "
"odstrániť tieto odkazy?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3481,7 +3488,7 @@ msgid "Go to view"
msgstr "Prejsť na Prejsť na pohľad"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Prideliť"
@@ -3517,11 +3524,6 @@ msgstr "Pomoc"
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Skryť"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3601,7 +3603,7 @@ msgstr "Neimportovať prázdne riadky"
msgid "Import/Export coordinates for PDF schema"
msgstr "Import/Export koordináty pre PDF schému"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importovať súbory"
@@ -4528,7 +4530,7 @@ msgstr "Vyrovnávacia pamäť príkazov"
msgid "Query window"
msgstr "SQL okno"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL história"
@@ -6177,7 +6179,7 @@ msgstr "zobraziť grafický návrh"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6561,14 +6563,14 @@ msgstr "Prehľad používatelov"
msgid "The selected users have been deleted successfully."
msgstr "Vybraní používatelia bol úspešne odstránený."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Používatelia majúci prístup k "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Používateľ"
diff --git a/po/sl.po b/po/sl.po
index 31032bb..6b71323 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-05-03 00:45+0200\n"
"Last-Translator: <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Polje"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Vrsta"
@@ -694,7 +694,7 @@ msgstr "Posodobljeno"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Dejanje"
@@ -1423,7 +1423,7 @@ msgstr "Zbirka podatkov se zdi prazna!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1454,7 +1454,7 @@ msgstr "Operacije"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegiji"
@@ -1768,6 +1768,11 @@ msgstr "Prikaži vsebine BLOB"
msgid "Show binary contents as HEX"
msgstr "Prikaži dvojiške vsebine kot HEX"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Skrij"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1802,8 +1807,9 @@ msgid "in query"
msgstr "v poizvedbi"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2135,7 +2141,8 @@ msgstr "Struktura tabele"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Gostitelj"
@@ -2484,7 +2491,7 @@ msgstr "Uredi naslednjo vrstico"
msgid "Go back to this page"
msgstr "Pojdi nazaj na stran"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Vse/Vsi"
@@ -2919,7 +2926,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Brez"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Dodeli vse privilegije za podatkovno zbirko "%s""
@@ -3078,7 +3085,7 @@ msgstr ""
"Trenutna stran vsebuje sklice na tabele, ki ne obstajajo več. Ali želite "
"izbrisati te sklice?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3422,7 +3429,7 @@ msgid "Go to view"
msgstr "Pojdi na pogled"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Dovoli"
@@ -3458,11 +3465,6 @@ msgstr "Pomoč"
msgid "Use hexadecimal for BLOB"
msgstr "Uporabi šestnajstiško za BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Skrij"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Skrij/Pokaži vse"
@@ -3539,7 +3541,7 @@ msgstr "Ne uvozi praznih vrstic"
msgid "Import/Export coordinates for PDF schema"
msgstr "Uvozi/Izvozi koordinate za PDF-shemo"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Uvozi datoteke"
@@ -4463,7 +4465,7 @@ msgstr "Vrsta poizvedbe"
msgid "Query window"
msgstr "Okno za poizvedbe"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Zgodovina SQL"
@@ -5971,7 +5973,7 @@ msgstr "Preklopi odložišče (scratchboard)"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6349,14 +6351,14 @@ msgstr "Pregled uporabnikov"
msgid "The selected users have been deleted successfully."
msgstr "Uspešno sem izbrisal izbrane uporabnike."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Uporabniški dostop do "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Uporabnik"
diff --git a/po/sq.po b/po/sq.po
index 37b814d..2916aa2 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:08+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: albanian <sq(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Fusha"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Lloji"
@@ -699,7 +699,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Veprimi"
@@ -1444,7 +1444,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1476,7 +1476,7 @@ msgstr "Operacione"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Të drejtat"
@@ -1784,6 +1784,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1818,8 +1823,9 @@ msgid "in query"
msgstr "tek query"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2154,7 +2160,8 @@ msgstr "Struktura e tabelës"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2501,7 +2508,7 @@ msgstr ""
msgid "Go back to this page"
msgstr "Kthehu mbrapa tek kjo faqe"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Të gjithë"
@@ -2949,7 +2956,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Asnjë lloj"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Kontrollo të drejtat për databazën "%s"."
@@ -3110,7 +3117,7 @@ msgstr ""
"Faqja aktuale përmban riferime ndaj tabelash që nuk ekzistojnë më. Dëshironi "
"t'i eleminoni këto riferimente?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3456,7 +3463,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3492,11 +3499,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3574,7 +3576,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importo files"
@@ -4507,7 +4509,7 @@ msgstr "Lloji i query"
msgid "Query window"
msgstr "Dritarja e Query"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "Kronollogjia e SQL"
@@ -6024,7 +6026,7 @@ msgstr "(ç')aktivo scratchboard"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6407,14 +6409,14 @@ msgstr "Paraqitja e përgjithshme e përdoruesve"
msgid "The selected users have been deleted successfully."
msgstr "Përdoruesit e zgjedhur u hoqën me sukses."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Përdoruesit që kanë hyrje tek "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Përdorues"
diff --git a/po/sr.po b/po/sr.po
index 0ac243a..c6bb9dc 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_cyrillic <sr(a)li.org>\n"
@@ -119,10 +119,10 @@ msgstr "Поље"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -699,7 +699,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Акција"
@@ -1453,7 +1453,7 @@ msgstr "База је изгледа празна!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1484,7 +1484,7 @@ msgstr "Операције"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Привилегије"
@@ -1797,6 +1797,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Сакриј"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1831,8 +1836,9 @@ msgid "in query"
msgstr "у упиту"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Промени"
@@ -2185,7 +2191,8 @@ msgstr "Структура табеле"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Домаћин"
@@ -2535,7 +2542,7 @@ msgstr "Уреди следећи ред"
msgid "Go back to this page"
msgstr "Врати се на ову страну"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Све"
@@ -2976,7 +2983,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "нема"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Провери привилегије за базу "%s"."
@@ -3138,7 +3145,7 @@ msgstr ""
"Тренутна страна има референце на табеле које више не постоје. Желите ли да "
"обришете те референце?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3489,7 +3496,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Омогући"
@@ -3525,11 +3532,6 @@ msgstr "Помоћ"
msgid "Use hexadecimal for BLOB"
msgstr "Користи хексадецимално за BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Сакриј"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Сакриј/прикажи све"
@@ -3606,7 +3608,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Извоз/увоз координата за PDF схему"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Увоз датотека"
@@ -4534,7 +4536,7 @@ msgstr "Кеш упита"
msgid "Query window"
msgstr "Прозор за упите"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL историјат"
@@ -6163,7 +6165,7 @@ msgstr "Укључи/искључи радну таблу"
msgid "Toggle small/big"
msgstr "Промени мало/велико"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Да одаберете релацију, кликните :"
@@ -6554,14 +6556,14 @@ msgstr "Преглед корисника"
msgid "The selected users have been deleted successfully."
msgstr "Изабрани корисници су успешно обрисани."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Корисници који имају приступ "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_proc
esslist.php:54
msgid "User"
msgstr "Корисник"
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index 39bb3d5..c405da2 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
@@ -119,10 +119,10 @@ msgstr "Polje"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tip"
@@ -699,7 +699,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Akcija"
@@ -1453,7 +1453,7 @@ msgstr "Baza je izgleda prazna!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1484,7 +1484,7 @@ msgstr "Operacije"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegije"
@@ -1797,6 +1797,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Sakrij"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1831,8 +1836,9 @@ msgid "in query"
msgstr "u upitu"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2185,7 +2191,8 @@ msgstr "Struktura tabele"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Domaćin"
@@ -2535,7 +2542,7 @@ msgstr "Uredi sledeći red"
msgid "Go back to this page"
msgstr "Vrati se na ovu stranu"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Sve"
@@ -2976,7 +2983,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "nema"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "Proveri privilegije za bazu "%s"."
@@ -3138,7 +3145,7 @@ msgstr ""
"Trenutna strana ima reference na tabele koje više ne postoje. Želite li da "
"obrišete te reference?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3489,7 +3496,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Omogući"
@@ -3525,11 +3532,6 @@ msgstr "Pomoć"
msgid "Use hexadecimal for BLOB"
msgstr "Koristi heksadecimalno za BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Sakrij"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Sakrij/prikaži sve"
@@ -3606,7 +3608,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Izvoz/uvoz koordinata za PDF shemu"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Uvoz datoteka"
@@ -4535,7 +4537,7 @@ msgstr "Keš upita"
msgid "Query window"
msgstr "Prozor za upite"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL istorijat"
@@ -6167,7 +6169,7 @@ msgstr "Uključi/isključi radnu tablu"
msgid "Toggle small/big"
msgstr "Promeni malo/veliko"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Da odaberete relaciju, kliknite :"
@@ -6559,14 +6561,14 @@ msgstr "Pregled korisnika"
msgid "The selected users have been deleted successfully."
msgstr "Izabrani korisnici su uspešno obrisani."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Korisnici koji imaju pristup "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Korisnik"
diff --git a/po/sv.po b/po/sv.po
index 3296aa8..201bcef 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish <sv(a)li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Fält"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -695,7 +695,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Åtgärd"
@@ -1453,7 +1453,7 @@ msgstr "Databasen verkar vara tom!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1484,7 +1484,7 @@ msgstr "Operationer"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegier"
@@ -1802,6 +1802,11 @@ msgstr "Visa BLOB-innehåll"
msgid "Show binary contents as HEX"
msgstr "Visa binärt innehåll"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Dölj"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1836,8 +1841,9 @@ msgid "in query"
msgstr "i fråga"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2212,7 +2218,8 @@ msgstr "Struktur för tabell"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Värd"
@@ -2560,7 +2567,7 @@ msgstr "Ändra nästa rad"
msgid "Go back to this page"
msgstr "Gå tillbaka till denna sida"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Alla"
@@ -3006,7 +3013,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Inget"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "Bevilja alla privilegier för databas "%s""
@@ -3168,7 +3175,7 @@ msgstr ""
"Nuvarande sida har referenser till tabeller som inte längre existerar. Vill "
"du ta bort dessa referenser?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3518,7 +3525,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3554,11 +3561,6 @@ msgstr "Hjälp"
msgid "Use hexadecimal for BLOB"
msgstr "Använd hexadecimal för BLOB"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Dölj"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Dölj/visa alla"
@@ -3637,7 +3639,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr "Importera/exportera koordinater för PDF-schema"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Importera filer"
@@ -4570,7 +4572,7 @@ msgstr "Frågecache"
msgid "Query window"
msgstr "Frågefönster"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-historik"
@@ -6214,7 +6216,7 @@ msgstr "Visa/dölj skisstavla"
msgid "Toggle small/big"
msgstr "Växla liten/stor"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "För att välja relation, klicka :"
@@ -6608,14 +6610,14 @@ msgstr "Användaröversikt"
msgid "The selected users have been deleted successfully."
msgstr "De markerade användarna har tagits bort."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Användare som har tillgång till "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Användare"
diff --git a/po/ta.po b/po/ta.po
index 4c5c9cc..00935c6 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr ""
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr ""
@@ -688,7 +688,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "செயல்"
@@ -1406,7 +1406,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
@@ -1437,7 +1437,7 @@ msgstr ""
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1736,6 +1736,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1770,8 +1775,9 @@ msgid "in query"
msgstr ""
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 ""
@@ -2103,7 +2109,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr ""
@@ -2442,7 +2449,7 @@ msgstr ""
msgid "Go back to this page"
msgstr ""
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr ""
@@ -2874,7 +2881,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3027,7 +3034,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3362,7 +3369,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr ""
@@ -3398,11 +3405,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr ""
@@ -3479,7 +3481,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr ""
@@ -4369,7 +4371,7 @@ msgstr ""
msgid "Query window"
msgstr ""
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr ""
@@ -5851,7 +5853,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6201,14 +6203,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr ""
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr ""
diff --git a/po/te.po b/po/te.po
index 03f4ef4..e1c9252 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-02 12:04+0200\n"
"Last-Translator: <veeven(a)gmail.com>\n"
"Language-Team: Telugu <te(a)li.org>\n"
@@ -119,10 +119,10 @@ msgstr ""
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "రకం"
@@ -701,7 +701,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "చర్య"
@@ -1432,7 +1432,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
@@ -1463,7 +1463,7 @@ msgstr ""
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1763,6 +1763,12 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+# మొదటి అనువాదము
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "దాచు"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1798,8 +1804,9 @@ msgstr ""
# మొదటి అనువాదము
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "మార్చుము"
@@ -2133,7 +2140,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr ""
@@ -2480,7 +2488,7 @@ msgid "Go back to this page"
msgstr "ఈ పుటకు తిరిగి వెళ్ళుము"
# మొదటి అనువాదము
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "అన్నీ"
@@ -2918,7 +2926,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3074,7 +3082,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3409,7 +3417,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr ""
@@ -3446,12 +3454,6 @@ msgid "Use hexadecimal for BLOB"
msgstr ""
# మొదటి అనువాదము
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "దాచు"
-
-# మొదటి అనువాదము
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "అన్నింటిని చూపుము/దాచుము"
@@ -3528,7 +3530,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr ""
@@ -4422,7 +4424,7 @@ msgstr ""
msgid "Query window"
msgstr ""
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL చరిత్ర"
@@ -5919,7 +5921,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6272,14 +6274,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr ""
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "వాడుకరి"
diff --git a/po/th.po b/po/th.po
index 71f4d76..ca9505e 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai <th(a)li.org>\n"
@@ -113,10 +113,10 @@ msgstr "ฟิลด์"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "ชนิด"
@@ -694,7 +694,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "กระทำการ"
@@ -1432,7 +1432,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1464,7 +1464,7 @@ msgstr "กระบวนการ"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "สิทธิ"
@@ -1772,6 +1772,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
#, fuzzy
@@ -1807,8 +1812,9 @@ msgid "in query"
msgstr "ในคำค้น"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "เปลี่ยน"
@@ -2143,7 +2149,8 @@ msgstr "โครงสร้างตาราง"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "โฮสต์"
@@ -2491,7 +2498,7 @@ msgstr ""
msgid "Go back to this page"
msgstr "ส่งกลับ"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "ทั้งหมด"
@@ -2935,7 +2942,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "ไม่มี"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "ตรวจสอบสิทธิสำหรับฐานข้อมูล "%s"."
@@ -3093,7 +3100,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3433,7 +3440,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "มอบสิทธิ"
@@ -3469,11 +3476,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3551,7 +3553,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "นำเข้าไฟล์"
@@ -4463,7 +4465,7 @@ msgstr "ชนิดคำค้น"
msgid "Query window"
msgstr "หน้าต่างคำค้น"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-history"
@@ -5971,7 +5973,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6329,14 +6331,14 @@ msgstr "ข้อมูลทั่วไปของผู้ใช้"
msgid "The selected users have been deleted successfully."
msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "ผู้ใช้มีสิทธิเข้าถึงฐานข้อมูล "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "ผู้ใช้"
diff --git a/po/tr.po b/po/tr.po
index 0fc4dc0..52af19d 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-03 11:44+0200\n"
"Last-Translator: <hitowerdigit(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Alan"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Türü"
@@ -696,7 +696,7 @@ msgstr "Güncellendi"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Eylem"
@@ -1455,7 +1455,7 @@ msgstr "Veritabanı boş olarak görünüyor!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1486,7 +1486,7 @@ msgstr "İşlemler"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Yetkiler"
@@ -1807,6 +1807,11 @@ msgstr "BLOB içerikleri göster"
msgid "Show binary contents as HEX"
msgstr "Binari içerikleri HEX olarak göster"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Gizle"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1841,8 +1846,9 @@ msgid "in query"
msgstr "sorgu içerisinde"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2221,7 +2227,8 @@ msgstr "Tablo için tablo yapısı:"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Anamakine"
@@ -2562,7 +2569,7 @@ msgstr "Sonraki satırı düzenle"
msgid "Go back to this page"
msgstr "Bu sayfaya geri dön"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Tümü"
@@ -3008,7 +3015,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Hiçbiri"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""%s" veritabanı üzerindeki tüm yetkileri ver"
@@ -3167,7 +3174,7 @@ msgstr ""
"Şu anki sayfa, daha fazla bulunması gereksiz tablolara verilmiş referanslara "
"sahip. Bu referansları silmek ister misiniz?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3515,7 +3522,7 @@ msgid "Go to view"
msgstr "Görünüme git"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Onayla"
@@ -3551,11 +3558,6 @@ msgstr "Yardım"
msgid "Use hexadecimal for BLOB"
msgstr "BLOB için onaltılık sistem kullan"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Gizle"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Tümünü Gizle/Göster"
@@ -3634,7 +3636,7 @@ msgstr "Boş sıraları içeri aktarma"
msgid "Import/Export coordinates for PDF schema"
msgstr "PDF şeması için düzenlemeleri İçeri/Dışarı Aktar"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Dosyaları içeri aktar"
@@ -4578,7 +4580,7 @@ msgstr "Sorgu önbelleği"
msgid "Query window"
msgstr "Sorgu penceresi"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL geçmişi"
@@ -6236,7 +6238,7 @@ msgstr "Karalama panosunu değiştir"
msgid "Toggle small/big"
msgstr "Küçüğü/büyüğü değiştir"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "İlişkiyi seçmek için buraya tıklayın :"
@@ -6635,14 +6637,14 @@ msgstr "Kullanıcı gözden geçirme"
msgid "The selected users have been deleted successfully."
msgstr "Seçili kullanıcılar başarılı olarak silindi."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""%s" veritabanına erişimi olan kullanıcılar"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Kullanıcı"
diff --git a/po/tt.po b/po/tt.po
index f8871e3..67dc073 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: tatarish <tt(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr "Alan"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Töre"
@@ -699,7 +699,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Eş"
@@ -1448,7 +1448,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1479,7 +1479,7 @@ msgstr "Eşkärtü"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Xoquqlar"
@@ -1788,6 +1788,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1822,8 +1827,9 @@ msgid "in query"
msgstr "sorawda"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2172,7 +2178,8 @@ msgstr "Tüşämä tözeleşe"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Host"
@@ -2521,7 +2528,7 @@ msgstr "Kiläse yazma üzgärtü"
msgid "Go back to this page"
msgstr "Bu bitkä kire qaytası"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Barısı"
@@ -2967,7 +2974,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Buş"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\" biremlege öçen xoquqlar tikşerü."
@@ -3128,7 +3135,7 @@ msgstr ""
"The current Page has References to Tables that no longer exist. Would you "
"like to delete those References?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3475,7 +3482,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Xoquq"
@@ -3511,11 +3518,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3593,7 +3595,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Biremdän alu"
@@ -4517,7 +4519,7 @@ msgstr "Soraw alxätere"
msgid "Query window"
msgstr "Soraw täräzäse"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-taríxı"
@@ -6042,7 +6044,7 @@ msgstr "Toggle scratchboard"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6422,14 +6424,14 @@ msgstr "Qullanuçılar tezmäse"
msgid "The selected users have been deleted successfully."
msgstr "Saylanğan qullanuçını beterü uñışlı uzdı."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\" belän eşläw xoquqı bulğan qullanuçılar"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Qullanuçı"
diff --git a/po/uk.po b/po/uk.po
index e340893..5759748 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
@@ -113,10 +113,10 @@ msgstr "Поле"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -689,7 +689,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Дія"
@@ -1431,7 +1431,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1462,7 +1462,7 @@ msgstr "Операцій"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Привілеї"
@@ -1767,6 +1767,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1801,8 +1806,9 @@ msgid "in query"
msgstr "по запиту"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Змінити"
@@ -2134,7 +2140,8 @@ msgstr "Структура таблиці"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Хост"
@@ -2473,7 +2480,7 @@ msgstr ""
msgid "Go back to this page"
msgstr ""
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Все"
@@ -2909,7 +2916,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -3068,7 +3075,7 @@ msgstr ""
"Ця сторінка має посилання на таблицю, якої вже немає. Бажаєте видалити ці "
"посилання?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3409,7 +3416,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "Grant"
@@ -3445,11 +3452,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr ""
@@ -3526,7 +3528,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Імпорт файлів"
@@ -4437,7 +4439,7 @@ msgstr ""
msgid "Query window"
msgstr "Вікно запиту"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-history"
@@ -5942,7 +5944,7 @@ msgstr "ввімкнути чорновик (scratchboard)"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6315,14 +6317,14 @@ msgstr "Огляд користувачів"
msgid "The selected users have been deleted successfully."
msgstr "Відмічених користувачів успішно усунуто."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "Користувачі, котрі мають доступ до "%s""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Користувач"
diff --git a/po/ur.po b/po/ur.po
index ed83ee7..d8291ab 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Urdu <ur(a)li.org>\n"
@@ -118,10 +118,10 @@ msgstr ""
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr ""
@@ -688,7 +688,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr ""
@@ -1363,7 +1363,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr ""
@@ -1394,7 +1394,7 @@ msgstr ""
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr ""
@@ -1693,6 +1693,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1727,8 +1732,9 @@ msgid "in query"
msgstr ""
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 ""
@@ -2060,7 +2066,8 @@ msgstr ""
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr ""
@@ -2399,7 +2406,7 @@ msgstr ""
msgid "Go back to this page"
msgstr ""
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr ""
@@ -2831,7 +2838,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr ""
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -2984,7 +2991,7 @@ msgid ""
"like to delete those references?"
msgstr ""
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3319,7 +3326,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr ""
@@ -3355,11 +3362,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr ""
@@ -3436,7 +3438,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr ""
@@ -4326,7 +4328,7 @@ msgstr ""
msgid "Query window"
msgstr ""
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr ""
@@ -5808,7 +5810,7 @@ msgstr ""
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6158,14 +6160,14 @@ msgstr ""
msgid "The selected users have been deleted successfully."
msgstr ""
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr ""
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index 8109b9b..6d4cb8f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic <uz(a)li.org>\n"
@@ -115,10 +115,10 @@ msgstr "Майдон"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Тур"
@@ -693,7 +693,7 @@ msgstr "Янгиланди"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Амал"
@@ -1457,7 +1457,7 @@ msgstr "Маълумотлар базаси бўш!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1488,7 +1488,7 @@ msgstr "Операциялар"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Привилегиялар"
@@ -1808,6 +1808,11 @@ msgstr "BLOB туридаги маълумотларни кўрсатиш"
msgid "Show binary contents as HEX"
msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Яшириш"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1842,8 +1847,9 @@ msgid "in query"
msgstr "сўров бўйича"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "Ўзгартириш"
@@ -2222,7 +2228,8 @@ msgstr "Жадвал тузилиши"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Хост"
@@ -2573,7 +2580,7 @@ msgstr "Кейинги қаторни таҳрирлаш"
msgid "Go back to this page"
msgstr "Ушбу саҳифага қайтиш"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Барча"
@@ -3021,7 +3028,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Йўқ"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\"" маълумотлар базасига барча привилегияларни бериш;"
@@ -3182,7 +3189,7 @@ msgstr ""
"Ушбу саҳифада мавжуд бўлмаган жадваллар учун мурожаатлар мавжуд. Ушбу "
"мурожаатларни ўчиришни хоҳлайсизми?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3530,7 +3537,7 @@ msgid "Go to view"
msgstr "Ушбу кўринишга ўтиш"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "GRANT"
@@ -3566,11 +3573,6 @@ msgstr "Ёрдам"
msgid "Use hexadecimal for BLOB"
msgstr "BLOB туридаги маълумотларни ўн олтилик шаклда намойиш этиш"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Яшириш"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Барча жадвалларни яшириш/кўрсатиш"
@@ -3649,7 +3651,7 @@ msgstr "Бўш қаторларни импорт қилмаслик"
msgid "Import/Export coordinates for PDF schema"
msgstr "PDF-схемага/схемадан жадвал координаталарини импорт/экспорт қилиш"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Файлларни импорт қилиш"
@@ -4598,7 +4600,7 @@ msgstr "Сўровлар кеши"
msgid "Query window"
msgstr "Сўровлар ойнаси"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-сўровлар тарихи"
@@ -6276,7 +6278,7 @@ msgstr "Кўрсатиш"
msgid "Toggle small/big"
msgstr "Тескари кўрсатиш"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "Алоқани танлаш учун расмда кўрсатилганикаби уланиш нуқтасига босинг:"
@@ -6676,14 +6678,14 @@ msgstr "Фойдаланувчилар ҳисобини кўриб чиқиш"
msgid "The selected users have been deleted successfully."
msgstr "Белгиланган фойдаланувчилар муваффақиятли ўчирилди."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\"га рухсати бўлган фойдаланувчилар"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Фойдаланувчи"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index 8b1be75..55c82a6 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
@@ -116,10 +116,10 @@ msgstr "Maydon"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "Tur"
@@ -694,7 +694,7 @@ msgstr "Yangilandi"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "Amal"
@@ -1461,7 +1461,7 @@ msgstr "Ma`lumotlar bazasi bo‘sh!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1492,7 +1492,7 @@ msgstr "Operatsiyalar"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "Privilegiyalar"
@@ -1815,6 +1815,11 @@ msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish"
msgid "Show binary contents as HEX"
msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "Yashirish"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1849,8 +1854,9 @@ msgid "in query"
msgstr "so‘rov bo‘yicha"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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"
@@ -2232,7 +2238,8 @@ msgstr "Jadval tuzilishi"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "Xost"
@@ -2584,7 +2591,7 @@ msgstr "Keyingi qatorni tahrirlash"
msgid "Go back to this page"
msgstr "Ushbu sahifaga qaytish"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "Barcha"
@@ -3034,7 +3041,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "Yo‘q"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "\"%s\"" ma`lumotlar bazasiga barcha privilegiyalarni berish;"
@@ -3195,7 +3202,7 @@ msgstr ""
"Ushbu sahifada mavjud bo‘lmagan jadvallar uchun murojaatlar mavjud. Ushbu "
"murojaatlarni o‘chirishni xohlaysizmi?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3545,7 +3552,7 @@ msgid "Go to view"
msgstr "Ushbu ko‘rinishga o‘tish"
#: libraries/messages.inc.php:373 server_privilege
s.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "GRANT"
@@ -3581,11 +3588,6 @@ msgstr "Yordam"
msgid "Use hexadecimal for BLOB"
msgstr "BLOB turidagi ma`lumotlarni o‘n oltilik shaklda namoyish etish"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "Yashirish"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "Barcha jadvallarni yashirish/ko‘rsatish"
@@ -3664,7 +3666,7 @@ msgstr "Bo‘sh qatorlarni import qilmaslik"
msgid "Import/Export coordinates for PDF schema"
msgstr "PDF-sxemaga/sxemadan jadval koordinatalarini import/eksport qilish"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "Fayllarni import qilish"
@@ -4626,7 +4628,7 @@ msgstr "So‘rovlar keshi"
msgid "Query window"
msgstr "So‘rovlar oynasi"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL-so‘rovlar tarixi"
@@ -6317,7 +6319,7 @@ msgstr "Ko‘rsatish"
msgid "Toggle small/big"
msgstr "Teskari ko‘rsatish"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
"Aloqani tanlash uchun rasmda ko‘rsatilganikabi ulanish nuqtasiga bosing:"
@@ -6722,14 +6724,14 @@ msgstr "Foydalanuvchilar hisobini ko‘rib chiqish"
msgid "The selected users have been deleted successfully."
msgstr "Belgilangan foydalanuvchilar muvaffaqiyatli o‘chirildi."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "\"%s\"ga ruxsati bo‘lgan foydalanuvchilar"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "Foydalanuvchi"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index fcbf1cb..027ca36 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-04-08 13:06+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN(a)li.org>\n"
@@ -117,10 +117,10 @@ msgstr "字段"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "类型"
@@ -693,7 +693,7 @@ msgstr "更新"
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "操作"
@@ -1433,7 +1433,7 @@ msgstr "数据库是空的!"
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1464,7 +1464,7 @@ msgstr "操作"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "权限"
@@ -1776,6 +1776,11 @@ msgstr "显示 BLOB 内容"
msgid "Show binary contents as HEX"
msgstr "以十六进制显示二进制内容"
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr "隐藏"
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1810,8 +1815,9 @@ msgid "in query"
msgstr "查询中"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "修改"
@@ -2162,7 +2168,8 @@ msgstr "表的结构"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "主机"
@@ -2501,7 +2508,7 @@ msgstr "编辑下一行"
msgid "Go back to this page"
msgstr "返回到本页"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "全部"
@@ -2935,7 +2942,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "无"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, php-format
msgid "Grant all privileges on database "%s""
msgstr "授予数据库“%s”的所有权限。"
@@ -3089,7 +3096,7 @@ msgid ""
"like to delete those references?"
msgstr "当前页所引用的表不存在了。您是否想要删除这些引用?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3431,7 +3438,7 @@ msgid "Go to view"
msgstr "转到视图"
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "授权"
@@ -3467,11 +3474,6 @@ msgstr "帮助"
msgid "Use hexadecimal for BLOB"
msgstr "为 BLOB 字段使用16进制 (HEX)"
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr "隐藏"
-
#: libraries/messages.inc.php:384 pmd_general.php:120
msgid "Hide/Show all"
msgstr "全部隐藏/显示"
@@ -3548,7 +3550,7 @@ msgstr "不导入空行"
msgid "Import/Export coordinates for PDF schema"
msgstr "为 PDF 大纲导入/导出坐标"
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "导入文件"
@@ -4457,7 +4459,7 @@ msgstr "查询缓存"
msgid "Query window"
msgstr "查询窗口"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL 历史"
@@ -6028,7 +6030,7 @@ msgstr "切换刮板"
msgid "Toggle small/big"
msgstr "反向收缩/展开"
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr "要选择关系,点击:"
@@ -6399,14 +6401,14 @@ msgstr "查看用户"
msgid "The selected users have been deleted successfully."
msgstr "已成功删除选中的用户。"
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "用户可以访问“%s”"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "用户"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index e9c1ead..f647132 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-06 07:36-0400\n"
+"POT-Creation-Date: 2010-05-06 12:56-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional <zh_TW(a)li.org>\n"
@@ -115,10 +115,10 @@ msgstr "欄位"
#: libraries/export/odt.php:297 libraries/export/texytext.php:234
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
-#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
-#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
-#: tbl_tracking.php:321
+#: pdf_schema.php:1285 server_privileges.php:2031 tbl_change.php:287
+#: tbl_change.php:314 tbl_printview.php:143 tbl_printview.php:313
+#: tbl_select.php:136 tbl_structure.php:178 tbl_structure.php:660
+#: tbl_tracking.php:274 tbl_tracking.php:321
msgid "Type"
msgstr "型態"
@@ -693,7 +693,7 @@ msgstr ""
#: db_tracking.php:77 libraries/db_structure.lib.php:53
#: libraries/Index.class.php:440 libraries/messages.inc.php:35
#: server_databases.php:203 server_privileges.php:1503
-#: server_privileges.php:1686 tbl_structure.php:187
+#: server_privileges.php:1686 server_privileges.php:2034 tbl_structure.php:187
msgid "Action"
msgstr "執行"
@@ -1437,7 +1437,7 @@ msgstr ""
#: libraries/db_links.inc.php:68 libraries/messages.inc.php:1033
#: libraries/server_links.inc.php:45 libraries/tbl_links.inc.php:60
-#: test/theme.php:97
+#: querywindow.php:99 test/theme.php:97
msgid "SQL"
msgstr "SQL"
@@ -1468,7 +1468,7 @@ msgstr "管理"
#: libraries/db_links.inc.php:111 libraries/messages.inc.php:717
#: libraries/server_links.inc.php:66 server_privileges.php:72
-#: server_privileges.php:1683 test/theme.php:117
+#: server_privileges.php:1683 server_privileges.php:2032 test/theme.php:117
msgid "Privileges"
msgstr "權限"
@@ -1777,6 +1777,11 @@ msgstr ""
msgid "Show binary contents as HEX"
msgstr ""
+#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:383
+#: pmd_general.php:141 tbl_change.php:314 tbl_change.php:320
+msgid "Hide"
+msgstr ""
+
#: libraries/display_tbl.lib.php:607 libraries/messages.inc.php:516
#: libraries/tbl_properties.inc.php:144 transformation_overview.php:47
msgid "Browser transformation"
@@ -1811,8 +1816,9 @@ msgid "in query"
msgstr "查詢中"
#: libraries/display_tbl.lib.php:2084 libraries/messages.inc.php:143
-#: libraries/mult_submits.inc.php:113 tbl_structure.php:25
-#: tbl_structure.php:150 tbl_structure.php:471
+#: 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 "修改"
@@ -2154,7 +2160,8 @@ msgstr "資料表格式:"
#: libraries/replication_gui.lib.php:268 libraries/replication_gui.lib.php:325
#: server_privileges.php:692 server_privileges.php:695
#: server_privileges.php:751 server_privileges.php:1498
-#: server_processlist.php:55 server_synchronize.php:1154
+#: server_privileges.php:2030 server_processlist.php:55
+#: server_synchronize.php:1154
msgid "Host"
msgstr "主機"
@@ -2502,7 +2509,7 @@ msgstr "編輯新一列"
msgid "Go back to this page"
msgstr "返回這頁"
-#: libraries/messages.inc.php:58
+#: libraries/messages.inc.php:58 querywindow.php:115
msgid "All"
msgstr "全部"
@@ -2943,7 +2950,7 @@ msgctxt "$strCreateUserDatabaseNone"
msgid "None"
msgstr "不適用"
-#: libraries/messages.inc.php:207
+#: libraries/messages.inc.php:207 server_privileges.php:2003
#, fuzzy, php-format
msgid "Grant all privileges on database "%s""
msgstr "查詢資料庫 "%s" 之權限."
@@ -3098,7 +3105,7 @@ msgid ""
"like to delete those references?"
msgstr "本頁的參考到資料表已不存在. 您希望刪除這些參考嗎?"
-#: libraries/messages.inc.php:262
+#: libraries/messages.inc.php:262 pmd_help.php:29
msgid ""
"The display field is shown in pink. To set/unset a field as the display "
"field, click the \"Choose field to display\" icon, then click on the "
@@ -3440,7 +3447,7 @@ msgid "Go to view"
msgstr ""
#: libraries/messages.inc.php:373 server_privileges.php:1502
-#: server_privileges.php:1684
+#: server_privileges.php:1684 server_privileges.php:2033
msgid "Grant"
msgstr "授權"
@@ -3476,11 +3483,6 @@ msgstr ""
msgid "Use hexadecimal for BLOB"
msgstr ""
-#: libraries/messages.inc.php:383 pmd_general.php:141 tbl_change.php:314
-#: tbl_change.php:320
-msgid "Hide"
-msgstr ""
-
#: libraries/messages.inc.php:384 pmd_general.php:120
#, fuzzy
msgid "Hide/Show all"
@@ -3558,7 +3560,7 @@ msgstr ""
msgid "Import/Export coordinates for PDF schema"
msgstr ""
-#: libraries/messages.inc.php:403
+#: libraries/messages.inc.php:403 querywindow.php:104
msgid "Import files"
msgstr "輸入檔案"
@@ -4466,7 +4468,7 @@ msgstr "查詢快取"
msgid "Query window"
msgstr "查詢視窗"
-#: libraries/messages.inc.php:733
+#: libraries/messages.inc.php:733 querywindow.php:109 querywindow.php:217
msgid "SQL history"
msgstr "SQL 歷程"
@@ -5971,7 +5973,7 @@ msgstr "轉換便條"
msgid "Toggle small/big"
msgstr ""
-#: libraries/messages.inc.php:1120
+#: libraries/messages.inc.php:1120 pmd_help.php:27
msgid "To select relation, click :"
msgstr ""
@@ -6340,14 +6342,14 @@ msgstr "使用者一覽"
msgid "The selected users have been deleted successfully."
msgstr "選擇的使用者已成功刪除."
-#: libraries/messages.inc.php:1221
+#: libraries/messages.inc.php:1221 server_privileges.php:2026
#, php-format
msgid "Users having access to "%s""
msgstr "可讀取 "%s" 之使用者"
#: libraries/messages.inc.php:1222 main.php:189 server_privileges.php:1350
#: server_privileges.php:1497 server_privileges.php:1611
-#: server_processlist.php:54
+#: server_privileges.php:2029 server_processlist.php:54
msgid "User"
msgstr "使用者"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2818-gf8f4754
by Marc Delisle 06 May '10
by Marc Delisle 06 May '10
06 May '10
The branch, master has been updated
via f8f475419d6609d5d0730c1e79d6a919a7df1e36 (commit)
from 2586524b03e16e78b1109ea31c638b8b465f38cb (commit)
- Log -----------------------------------------------------------------
commit f8f475419d6609d5d0730c1e79d6a919a7df1e36
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu May 6 12:49:07 2010 -0400
gettext conversion
-----------------------------------------------------------------------
Summary of changes:
libraries/display_tbl.lib.php | 2 +-
pmd_help.php | 4 ++--
querywindow.php | 39 +++++++++++++++++++--------------------
server_privileges.php | 16 ++++++++--------
4 files changed, 30 insertions(+), 31 deletions(-)
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php
index 43b74b0..08d2e28 100644
--- a/libraries/display_tbl.lib.php
+++ b/libraries/display_tbl.lib.php
@@ -604,7 +604,7 @@ function PMA_displayTableHeaders(&$is_display, &$fields_meta, $fields_cnt = 0, $
// per SQL query, and at the same time have a default that displays
// the transformations.
echo '<div class="formelement">';
- PMA_display_html_checkbox('hide_transformation', $GLOBALS['strHide'] . ' ' . __('Browser transformation'), ! empty($_SESSION['tmp_user_values']['hide_transformation']), false);
+ PMA_display_html_checkbox('hide_transformation', __('Hide') . ' ' . __('Browser transformation'), ! empty($_SESSION['tmp_user_values']['hide_transformation']), false);
echo '</div>';
echo '<div class="clearfloat"></div>';
diff --git a/pmd_help.php b/pmd_help.php
index 4a1e407..328645b 100644
--- a/pmd_help.php
+++ b/pmd_help.php
@@ -24,9 +24,9 @@ require_once 'pmd_common.php';
<body>
<?php
- echo '<p>' . $GLOBALS['strToSelectRelation'] . '<br />';
+ echo '<p>' . __('To select relation, click :') . '<br />';
echo '<img src="pmd/images/help_relation.png" border="1"></p>';
- echo '<p>' . $GLOBALS['strDesignerHelpDisplayField'] . '</p>';
+ echo '<p>' . __('The display field is shown in pink. To set/unset a field as the display field, click the "Choose field to display" icon, then click on the appropriate field name.') . '</p>';
?>
</body>
</html>
diff --git a/querywindow.php b/querywindow.php
index 6c69e41..0d15de5 100644
--- a/querywindow.php
+++ b/querywindow.php
@@ -1,7 +1,7 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
- * this file is register_globals save
+ * this file is register_globals safe
*
* @todo move JavaScript out of here into .js files
* @uses $cfg['QueryWindowDefTab']
@@ -12,16 +12,15 @@
* @uses $cfg['Confirm']
* @uses $GLOBALS['db']
* @uses $GLOBALS['table']
- * @uses $GLOBALS['strSQL']
- * @uses $GLOBALS['strImportFiles']
- * @uses $GLOBALS['strQuerySQLHistory']
- * @uses $GLOBALS['strAll']
- * @uses $GLOBALS['strChange']
- * @uses $GLOBALS['strFormEmpty']
- * @uses $GLOBALS['strNotNumber']
- * @uses $GLOBALS['strNoDropDatabases']
- * @uses $GLOBALS['strDoYouReally']
- * @uses $GLOBALS['strQuerySQLHistory']
+ * @uses __('SQL')
+ * @uses __('Import files')
+ * @uses __('SQL history')
+ * @uses __('All')
+ * @uses __('Change')
+ * @uses __('Missing value in the form!')
+ * @uses __('This is not a number!')
+ * @uses __('"DROP DATABASE" statements are disabled.')
+ * @uses __('Do you really want to ')
* @uses PMA_isSuperuser()
* @uses PMA_outBufferPre()
* @uses PMA_getRelationsParam()
@@ -97,23 +96,23 @@ if ($no_js) {
} else {
$tabs = array();
$tabs['sql']['icon'] = 'b_sql.png';
- $tabs['sql']['text'] = $GLOBALS['strSQL'];
+ $tabs['sql']['text'] = __('SQL');
$tabs['sql']['fragment'] = '#';
$tabs['sql']['attr'] = 'onclick="javascript:PMA_querywindowCommit(\'sql\');return false;"';
$tabs['sql']['active'] = (bool) ($querydisplay_tab == 'sql');
$tabs['import']['icon'] = 'b_import.png';
- $tabs['import']['text'] = $GLOBALS['strImportFiles'];
+ $tabs['import']['text'] = __('Import files');
$tabs['import']['fragment'] = '#';
$tabs['import']['attr'] = 'onclick="javascript:PMA_querywindowCommit(\'files\');return false;"';
$tabs['import']['active'] = (bool) ($querydisplay_tab == 'files');
$tabs['history']['icon'] = 'b_bookmark.png';
- $tabs['history']['text'] = $GLOBALS['strQuerySQLHistory'];
+ $tabs['history']['text'] = __('SQL history');
$tabs['history']['fragment'] = '#';
$tabs['history']['attr'] = 'onclick="javascript:PMA_querywindowCommit(\'history\');return false;"';
$tabs['history']['active'] = (bool) ($querydisplay_tab == 'history');
if ($GLOBALS['cfg']['QueryWindowDefTab'] == 'full') {
- $tabs['all']['text'] = $GLOBALS['strAll'];
+ $tabs['all']['text'] = __('All');
$tabs['all']['fragment'] = '#';
$tabs['all']['attr'] = 'onclick="javascript:PMA_querywindowCommit(\'full\');return false;"';
$tabs['all']['active'] = (bool) ($querydisplay_tab == 'full');
@@ -123,14 +122,14 @@ if ($no_js) {
if ($GLOBALS['cfg']['PropertiesIconic']) {
$titles['Change'] =
'<img class="icon" width="16" height="16" src="' . $pmaThemeImage
- . 'b_edit.png" alt="' . $GLOBALS['strChange'] . '" title="' . $GLOBALS['strChange']
+ . 'b_edit.png" alt="' . __('Change') . '" title="' . __('Change')
. '" />';
if ('both' === $GLOBALS['cfg']['PropertiesIconic']) {
- $titles['Change'] .= $GLOBALS['strChange'];
+ $titles['Change'] .= __('Change');
}
} else {
- $titles['Change'] = $GLOBALS['strChange'];
+ $titles['Change'] = __('Change');
}
$url_query = PMA_generate_common_url($db, $table);
@@ -215,8 +214,8 @@ $_sql_history = PMA_getHistory($GLOBALS['cfg']['Server']['user']);
if (! empty($_sql_history)
&& ($querydisplay_tab == 'history' || $querydisplay_tab == 'full')) {
$tab = $querydisplay_tab != 'full' ? 'sql' : 'full';
- echo $GLOBALS['strQuerySQLHistory'] . ':<br />' . "\n"
- .'<ul>';
+ echo __('SQL history') . ':<br />'
+ . '<ul>';
foreach ($_sql_history as $query) {
echo '<li>' . "\n";
diff --git a/server_privileges.php b/server_privileges.php
index 2bd67bd..4c87f98 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -2000,7 +2000,7 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
'2' => __('Grant all privileges on wildcard name (username\\_%)'));
if ( !empty($dbname) ) {
- $choices['3'] = sprintf($GLOBALS['strCreateUserDatabasePrivileges'], htmlspecialchars($dbname));
+ $choices['3'] = sprintf( __('Grant all privileges on database "%s"'), htmlspecialchars($dbname));
$default_choice = 3;
echo '<input type="hidden" name="dbname" value="' . htmlspecialchars($dbname) . '" />' . "\n";
}
@@ -2023,15 +2023,15 @@ if (empty($_REQUEST['adduser']) && (! isset($checkprivs) || ! strlen($checkprivs
echo '<table id="tablespecificuserrights" class="data">' . "\n"
. '<caption class="tblHeaders">' . "\n"
. PMA_getIcon('b_usrcheck.png')
- . ' ' . sprintf($GLOBALS['strUsersHavingAccessToDb'], '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($checkprivs) . '">' . htmlspecialchars($checkprivs) . '</a>') . "\n"
+ . ' ' . sprintf(__('Users having access to "%s"'), '<a href="' . $GLOBALS['cfg']['DefaultTabDatabase'] . '?' . PMA_generate_common_url($checkprivs) . '">' . htmlspecialchars($checkprivs) . '</a>') . "\n"
. '</caption>' . "\n"
. '<thead>' . "\n"
- . ' <tr><th>' . $GLOBALS['strUser'] . '</th>' . "\n"
- . ' <th>' . $GLOBALS['strHost'] . '</th>' . "\n"
- . ' <th>' . $GLOBALS['strType'] . '</th>' . "\n"
- . ' <th>' . $GLOBALS['strPrivileges'] . '</th>' . "\n"
- . ' <th>' . $GLOBALS['strGrantOption'] . '</th>' . "\n"
- . ' <th>' . $GLOBALS['strAction'] . '</th>' . "\n"
+ . ' <tr><th>' . __('User') . '</th>' . "\n"
+ . ' <th>' . __('Host') . '</th>' . "\n"
+ . ' <th>' . __('Type') . '</th>' . "\n"
+ . ' <th>' . __('Privileges') . '</th>' . "\n"
+ . ' <th>' . __('Grant') . '</th>' . "\n"
+ . ' <th>' . __('Action') . '</th>' . "\n"
. ' </tr>' . "\n"
. '</thead>' . "\n"
. '<tbody>' . "\n";
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2817-g2586524
by Marc Delisle 06 May '10
by Marc Delisle 06 May '10
06 May '10
The branch, master has been updated
via 2586524b03e16e78b1109ea31c638b8b465f38cb (commit)
from 277db77572e24142819679f3c91f010231b44f23 (commit)
- Log -----------------------------------------------------------------
commit 2586524b03e16e78b1109ea31c638b8b465f38cb
Author: Marc Delisle <marc(a)infomarc.info>
Date: Thu May 6 07:48:38 2010 -0400
gettext conversion; clarify code
-----------------------------------------------------------------------
Summary of changes:
db_qbe.php | 14 +++---
db_structure.php | 2 +-
libraries/db_structure.lib.php | 4 +-
libraries/tbl_properties.inc.php | 2 +-
po/af.po | 56 ++++++++++++++-------------
po/ar.po | 56 ++++++++++++++-------------
po/az.po | 56 ++++++++++++++-------------
po/be.po | 56 ++++++++++++++-------------
po/be(a)latin.po | 56 ++++++++++++++-------------
po/bg.po | 56 ++++++++++++++-------------
po/bn.po | 56 ++++++++++++++-------------
po/bs.po | 56 ++++++++++++++-------------
po/ca.po | 56 ++++++++++++++-------------
po/cs.po | 57 ++++++++++++++-------------
po/da.po | 56 ++++++++++++++-------------
po/de.po | 56 ++++++++++++++-------------
po/el.po | 56 ++++++++++++++-------------
po/en_GB.po | 62 ++++++++++++++---------------
po/es.po | 56 ++++++++++++++-------------
po/et.po | 56 ++++++++++++++-------------
po/eu.po | 56 ++++++++++++++-------------
po/fa.po | 56 ++++++++++++++-------------
po/fi.po | 56 ++++++++++++++-------------
po/fr.po | 80 ++++++++++++++++++--------------------
po/gl.po | 56 ++++++++++++++-------------
po/he.po | 56 ++++++++++++++-------------
po/hi.po | 56 ++++++++++++++-------------
po/hr.po | 56 ++++++++++++++-------------
po/hu.po | 56 ++++++++++++++-------------
po/id.po | 56 ++++++++++++++-------------
po/it.po | 56 ++++++++++++++-------------
po/ja.po | 56 ++++++++++++++-------------
po/ka.po | 56 ++++++++++++++-------------
po/ko.po | 56 ++++++++++++++-------------
po/lt.po | 56 ++++++++++++++-------------
po/lv.po | 56 ++++++++++++++-------------
po/mk.po | 56 ++++++++++++++-------------
po/mn.po | 56 ++++++++++++++-------------
po/ms.po | 56 ++++++++++++++-------------
po/nb.po | 63 ++++++++++++++---------------
po/nl.po | 56 ++++++++++++++-------------
po/phpmyadmin.pot | 56 ++++++++++++++-------------
po/pl.po | 56 ++++++++++++++-------------
po/pt.po | 56 ++++++++++++++-------------
po/pt_BR.po | 56 ++++++++++++++-------------
po/ro.po | 56 ++++++++++++++-------------
po/ru.po | 56 ++++++++++++++-------------
po/si.po | 56 ++++++++++++++-------------
po/sk.po | 56 ++++++++++++++-------------
po/sl.po | 56 ++++++++++++++-------------
po/sq.po | 56 ++++++++++++++-------------
po/sr.po | 56 ++++++++++++++-------------
po/sr(a)latin.po | 56 ++++++++++++++-------------
po/sv.po | 56 ++++++++++++++-------------
po/ta.po | 56 ++++++++++++++-------------
po/te.po | 56 ++++++++++++++-------------
po/th.po | 56 ++++++++++++++-------------
po/tr.po | 56 ++++++++++++++-------------
po/tt.po | 56 ++++++++++++++-------------
po/uk.po | 56 ++++++++++++++-------------
po/ur.po | 56 ++++++++++++++-------------
po/uz.po | 56 ++++++++++++++-------------
po/uz(a)latin.po | 56 ++++++++++++++-------------
po/zh_CN.po | 56 ++++++++++++++-------------
po/zh_TW.po | 56 ++++++++++++++-------------
sql.php | 5 +-
tbl_select.php | 36 ++++++++--------
67 files changed, 1810 insertions(+), 1707 deletions(-)
diff --git a/db_qbe.php b/db_qbe.php
index d8839b0..5bffabb 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -315,18 +315,18 @@ for ($x = 0; $x < $col; $x++) {
continue;
}
if (isset($criteria[$x])) {
- $stripped_Criteria = $criteria[$x];
+ $tmp_criteria = $criteria[$x];
}
if ((empty($prev_criteria) || !isset($prev_criteria[$x]))
- || $prev_criteria[$x] != htmlspecialchars($stripped_Criteria)) {
- $curCriteria[$z] = $stripped_Criteria;
+ || $prev_criteria[$x] != htmlspecialchars($tmp_criteria)) {
+ $curCriteria[$z] = $tmp_criteria;
} else {
$curCriteria[$z] = $prev_criteria[$x];
}
?>
<td align="center">
<input type="hidden" name="prev_criteria[<?php echo $z; ?>]" value="<?php echo htmlspecialchars($curCriteria[$z]); ?>" />
- <input type="text" name="criteria[<?php echo $z; ?>]" value="<?php echo htmlspecialchars($stripped_Criteria); ?>" class="textfield" style="width: <?php echo $realwidth; ?>" size="20" />
+ <input type="text" name="criteria[<?php echo $z; ?>]" value="<?php echo htmlspecialchars($tmp_criteria); ?>" class="textfield" style="width: <?php echo $realwidth; ?>" size="20" />
</td>
<?php
$z++;
@@ -479,13 +479,13 @@ for ($y = 0; $y <= $row; $y++) {
${$or} = '';
}
if (!empty(${$or}) && isset(${$or}[$x])) {
- $stripped_or = ${$or}[$x];
+ $tmp_or = ${$or}[$x];
} else {
- $stripped_or = '';
+ $tmp_or = '';
}
?>
<td align="center">
- <input type="text" name="Or<?php echo $w . '[' . $z . ']'; ?>" value="<?php echo htmlspecialchars($stripped_or); ?>" class="textfield" style="width: <?php echo $realwidth; ?>" size="20" />
+ <input type="text" name="Or<?php echo $w . '[' . $z . ']'; ?>" value="<?php echo htmlspecialchars($tmp_or); ?>" class="textfield" style="width: <?php echo $realwidth; ?>" size="20" />
</td>
<?php
if (!empty(${$or}) && isset(${$or}[$x])) {
diff --git a/db_structure.php b/db_structure.php
index e8e5d46..0fa4873 100644
--- a/db_structure.php
+++ b/db_structure.php
@@ -452,7 +452,7 @@ foreach ($tables as $keyname => $each_table) {
<td class="value">-</td>
<?php } ?>
<?php } else { ?>
- <td colspan="<?php echo ($structure_tbl_col_cnt - ($db_is_information_schema ? 5 : 8)) ?>"
+ <td colspan="<?php echo ($colspan_for_structure - ($db_is_information_schema ? 5 : 8)) ?>"
align="center">
<?php echo __('in use'); ?></td>
<?php } // end if (isset($each_table['TABLE_ROWS'])) else ?>
diff --git a/libraries/db_structure.lib.php b/libraries/db_structure.lib.php
index 5664b01..7a6dff7 100644
--- a/libraries/db_structure.lib.php
+++ b/libraries/db_structure.lib.php
@@ -25,7 +25,7 @@ if (! defined('PHPMYADMIN')) {
* @uses __('Collation')
* @uses __('Size')
* @uses __('Overhead')
- * @uses $GLOBALS['structure_tbl_col_cnt']
+ * @uses $GLOBALS['colspan_for_structure']
* @uses PMA_SortableTableHeader()
* @param boolean $db_is_information_schema
* @param boolean $replication
@@ -72,7 +72,7 @@ function PMA_TableHeader($db_is_information_schema = false, $replication = false
echo '</tr>' . "\n";
echo '</thead>' . "\n";
echo '<tbody>' . "\n";
- $GLOBALS['structure_tbl_col_cnt'] = $cnt + $action_colspan + 3;
+ $GLOBALS['colspan_for_structure'] = $cnt + $action_colspan + 3;
} // end function PMA_TableHeader()
diff --git a/libraries/tbl_properties.inc.php b/libraries/tbl_properties.inc.php
index 93b99ee..7cce097 100644
--- a/libraries/tbl_properties.inc.php
+++ b/libraries/tbl_properties.inc.php
@@ -102,7 +102,7 @@ $header_cells[] = __('Type')
? PMA_showMySQLDocu('SQL-Syntax', 'data-types')
: '<br /><span style="font-weight: normal">' . PMA_showMySQLDocu('SQL-Syntax', 'data-types')
. '</span>');
-$header_cells[] = __('Length/Values') . PMA_showHint($strSetEnumVal);
+$header_cells[] = __('Length/Values') . PMA_showHint(__('If field type is "enum" or "set", please enter the values using this format: \'a\',\'b\',\'c\'...<br />If you ever need to put a backslash ("\") or a single quote ("\'") amongst those values, precede it with a backslash (for example \'\\\\xyz\' or \'a\\\'b\').'));
$header_cells[] = __('Default') . PMA_showHint(__('For default values, please enter just a single value, without backslash escaping or quotes, using this format: a'));
$header_cells[] = __('Collation');
$header_cells[] = __('Attributes');
diff --git a/po/af.po b/po/af.po
index 17b3c2b..bc3fe5b 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)li.org>\n"
@@ -64,9 +64,9 @@ msgstr "Soek"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Gaan"
@@ -106,8 +106,8 @@ msgstr "Tabel kommentaar"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Veld"
@@ -118,8 +118,9 @@ msgstr "Veld"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tipe"
@@ -312,8 +313,8 @@ msgstr "Beskikbaar"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr ""
@@ -434,14 +435,14 @@ msgstr "Sorteer"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Dalend"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Dalend"
@@ -472,7 +473,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Of"
@@ -1741,7 +1742,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Operasies"
@@ -2448,7 +2449,7 @@ msgstr ""
msgid "Add privileges on the following table"
msgstr ""
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Voeg soek kriteria by (laaste deel van die \"where\" in SQL SELECT):"
@@ -2663,7 +2664,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2671,7 +2672,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Die boekmerk is verwyder."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etiket"
@@ -2684,7 +2685,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Boekmerk hierdie SQL-stelling"
@@ -2696,7 +2697,8 @@ msgstr "Kyk slegs"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3123,11 +3125,11 @@ msgstr ""
msgid "Display Features"
msgstr "Vertoon Funksies"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Vertoon volgorde:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Doen 'n \"Navraag dmv Voorbeeld\" (wildcard: \"%\")"
@@ -3613,7 +3615,7 @@ msgstr "Indeks naam :"
msgid "Index type:"
msgstr "Indeks tipe :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3794,7 +3796,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Lengte/Waardes*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Hoeveelheid rye per bladsy"
@@ -4086,7 +4088,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "Operasies"
@@ -4920,7 +4922,7 @@ msgstr "Kies asb. 'n databasis"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Kies Velde (ten minste een):"
@@ -4995,7 +4997,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6366,7 +6368,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Waarde"
diff --git a/po/ar.po b/po/ar.po
index b0b005e..52de1b5 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -64,9 +64,9 @@ msgstr "ابحث"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr " تنفيذ "
@@ -104,8 +104,8 @@ msgstr "تعليقات على الجدول"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "الحقل"
@@ -116,8 +116,9 @@ msgstr "الحقل"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "النوع"
@@ -306,8 +307,8 @@ msgstr "فعل"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Collation"
@@ -427,14 +428,14 @@ msgstr "تصنيف"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "تصاعديا"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "تنازليا"
@@ -465,7 +466,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "أو"
@@ -1734,7 +1735,7 @@ msgid "Sort by key"
msgstr "رتب حسب المفتاح"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "خيارات"
@@ -2430,7 +2431,7 @@ msgstr "إضافة الصلاحيات على قاعدة البيانات الت
msgid "Add privileges on the following table"
msgstr "إضافة الصلاحيات على الجدول التالي"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "أضف شروط البحث (جسم من الفقره \"where\" clause):"
@@ -2639,7 +2640,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
@@ -2647,7 +2648,7 @@ msgstr "اسمح لكل المستخدمين الوصول إلى هذه العل
msgid "The bookmark has been deleted."
msgstr "لقد حذفت العلامة المرجعية."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "علامة"
@@ -2660,7 +2661,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "اجعل علامة مرجعية SQL-استعلام"
@@ -2672,7 +2673,8 @@ msgstr "عرض فقط"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "استعرض القيم الغريبة"
@@ -3095,11 +3097,11 @@ msgstr ""
msgid "Display Features"
msgstr "إظهار المزايا"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "ترتيب العرض:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "تجعل \"استعلام بواسطة المثال\" (wildcard: \"%\")"
@@ -3585,7 +3587,7 @@ msgstr "اسم الفهرس :"
msgid "Index type:"
msgstr "نوع الفهرس :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3768,7 +3770,7 @@ msgstr ""
msgid "Length/Values"
msgstr "الطول/القيمة"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "رقم السجلات لكل صفحة"
@@ -4056,7 +4058,7 @@ msgstr "موافق"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr ""
@@ -4877,7 +4879,7 @@ msgstr "اختر قاعدة بيانات من القائمة"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "اختيار حقول (على الأقل واحد):"
@@ -4951,7 +4953,7 @@ msgstr ""
msgid "Session value"
msgstr "قيمة الجلسة"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6328,7 +6330,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "القيمة"
diff --git a/po/az.po b/po/az.po
index 2140987..36edc08 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -62,9 +62,9 @@ msgstr "Axtarış"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Davam"
@@ -102,8 +102,8 @@ msgstr "Cedvel haqqında qısa izahat"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Sahe"
@@ -114,8 +114,9 @@ msgstr "Sahe"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tip"
@@ -308,8 +309,8 @@ msgstr "Enabled"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
#, fuzzy
msgid "Collation"
msgstr "Quruluş"
@@ -430,14 +431,14 @@ msgstr "Sırala"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Artan sırada"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Azalan sırada"
@@ -468,7 +469,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "ya da"
@@ -1748,7 +1749,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Emeliyyatlar"
@@ -2456,7 +2457,7 @@ msgstr "Aşağıdakı me'lumat bazası üçün selahiyyet müeyyen et"
msgid "Add privileges on the following table"
msgstr "Aşağıdakı cedvel üçün selahiyyetler müeyyen et"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Axtarış şertlerini gir (\"where\" ifadesinin esas metni):"
@@ -2673,7 +2674,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2681,7 +2682,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Bookmark silindi."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etiket"
@@ -2694,7 +2695,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorğusunu bookmark-la"
@@ -2706,7 +2707,8 @@ msgstr "Sadece göster"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3142,11 +3144,11 @@ msgstr ""
msgid "Display Features"
msgstr "Xüsusiyyetleri Göster"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Sıralama şekli:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"nümuneye göre sorğu\" gönderin (xüsusi işare: \"%\")"
@@ -3639,7 +3641,7 @@ msgstr "İndex adı :"
msgid "Index type:"
msgstr "İndex tipi :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3822,7 +3824,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Uzunluq/Deyerler*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Sehife başına düşen setir sayı"
@@ -4116,7 +4118,7 @@ msgstr "Müveffeqiyyetle"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "Emeliyyatlar"
@@ -4958,7 +4960,7 @@ msgstr "Me'lumat bazası seç"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Sahe seçin (en az birini):"
@@ -5034,7 +5036,7 @@ msgstr ""
msgid "Session value"
msgstr "Sessiya deyeri"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6427,7 +6429,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Deyer"
diff --git a/po/be.po b/po/be.po
index 3dfbe9f..6f90bf6 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic <be(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Пошук"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Панеслася"
@@ -105,8 +105,8 @@ msgstr "Камэнтар да табліцы"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Поле"
@@ -117,8 +117,9 @@ msgstr "Поле"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Тып"
@@ -309,8 +310,8 @@ msgstr "Уключана"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Супастаўленьне"
@@ -430,14 +431,14 @@ msgstr "Парадак"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "прамы"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "адваротны"
@@ -468,7 +469,7 @@ msgstr "Выдаліць"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Або"
@@ -1771,7 +1772,7 @@ msgid "Sort by key"
msgstr "Сартаваць па ключы"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Налады"
@@ -2526,7 +2527,7 @@ msgstr "Дадаць прывілеі на наступную базу"
msgid "Add privileges on the following table"
msgstr "Дадаць прывілеі на наступную табліцу"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Дадаць умовы пошуку (цела для ўмовы \"where\"):"
@@ -2739,7 +2740,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
@@ -2747,7 +2748,7 @@ msgstr "Даць кожнаму карыстальніку доступ да г
msgid "The bookmark has been deleted."
msgstr "Закладка была выдаленая."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Метка"
@@ -2760,7 +2761,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Замяніць існую закладку з такім жа імем"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Дадаць гэты SQL-запыт у закладкі"
@@ -2772,7 +2773,8 @@ msgstr "Толькі прагляд"
msgid "Browse distinct values"
msgstr "Прагляд розных значэньняў"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Праглядзець зьнешнія значэньні"
@@ -3210,11 +3212,11 @@ msgstr "Адключыць праверку зьнешніх ключоў"
msgid "Display Features"
msgstr "Паказваць магчымасьці"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Парадак прагляду:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Выканаць \"запыт згодна прыклада\" (сымбаль падстаноўкі: \"%\")"
@@ -3709,7 +3711,7 @@ msgstr "Імя індэкса:"
msgid "Index type:"
msgstr "Тып індэкса:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Праблемы з індэксамі для табліцы `%s`"
@@ -3895,7 +3897,7 @@ msgstr "Выкарыстоўваць ключавое слова LOCAL"
msgid "Length/Values"
msgstr "Даўжыня/Значэньні*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Колькасьць радкоў на старонку"
@@ -4200,7 +4202,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Тэкст Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Апэратар"
@@ -5043,7 +5045,7 @@ msgstr "Калі ласка, выберыце базу дадзеных"
msgid "Select binary log to view"
msgstr "Вылучыце двайковы лог для прагляду"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Выбраць палі (прынамсі адно):"
@@ -5120,7 +5122,7 @@ msgstr ""
msgid "Session value"
msgstr "Значэньне сэсіі"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6678,7 +6680,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Значэньне"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index a23c34f..0a34ec2 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@latin@li.org>\n"
@@ -68,9 +68,9 @@ msgstr "Pošuk"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Paniesłasia"
@@ -108,8 +108,8 @@ msgstr "Kamentar da tablicy"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Pole"
@@ -120,8 +120,9 @@ msgstr "Pole"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -310,8 +311,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Supastaŭleńnie"
@@ -431,14 +432,14 @@ msgstr "Paradak"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "pramy"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "advarotny"
@@ -469,7 +470,7 @@ msgstr "Vydalić"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Abo"
@@ -1765,7 +1766,7 @@ msgid "Sort by key"
msgstr "Sartavać pa klučy"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Nałady"
@@ -2524,7 +2525,7 @@ msgstr "Dadać pryvilei na nastupnuju bazu"
msgid "Add privileges on the following table"
msgstr "Dadać pryvilei na nastupnuju tablicu"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dadać umovy pošuku (cieła dla ŭmovy \"where\"):"
@@ -2733,7 +2734,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
@@ -2741,7 +2742,7 @@ msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
msgid "The bookmark has been deleted."
msgstr "Zakładka była vydalenaja."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Mietka"
@@ -2754,7 +2755,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Zamianić isnuju zakładku z takim ža imiem"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Dadać hety SQL-zapyt u zakładki"
@@ -2766,7 +2767,8 @@ msgstr "Tolki prahlad"
msgid "Browse distinct values"
msgstr "Prahlad roznych značeńniaŭ"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Prahladzieć źniešnija značeńni"
@@ -3200,11 +3202,11 @@ msgstr "Adklučyć pravierku źniešnich klučoŭ"
msgid "Display Features"
msgstr "Pakazvać mahčymaści"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Paradak prahladu:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Vykanać \"zapyt zhodna prykłada\" (symbal padstanoŭki: \"%\")"
@@ -3696,7 +3698,7 @@ msgstr "Imia indeksa:"
msgid "Index type:"
msgstr "Typ indeksa:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Prablemy z indeksami dla tablicy `%s`"
@@ -3882,7 +3884,7 @@ msgstr "Vykarystoŭvać klučavoje słova LOCAL"
msgid "Length/Values"
msgstr "Daŭžynia/Značeńni*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Kolkaść radkoŭ na staronku"
@@ -4187,7 +4189,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Tekst Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Aperatar"
@@ -5020,7 +5022,7 @@ msgstr "Kali łaska, vybierycie bazu dadzienych"
msgid "Select binary log to view"
msgstr "Vyłučycie dvajkovy łog dla prahladu"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Vybrać pali (prynamsi adno):"
@@ -5097,7 +5099,7 @@ msgstr ""
msgid "Session value"
msgstr "Značeńnie sesii"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6653,7 +6655,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Značeńnie"
diff --git a/po/bg.po b/po/bg.po
index 5fb2235..4aa2eb8 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Търсене"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Изпълнение"
@@ -105,8 +105,8 @@ msgstr "Коментари към таблицата"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Поле"
@@ -117,8 +117,9 @@ msgstr "Поле"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -308,8 +309,8 @@ msgstr "Позволено"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Колация"
@@ -429,14 +430,14 @@ msgstr "Сортиране"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Възходящо"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Низходящо"
@@ -467,7 +468,7 @@ msgstr "Изтрий"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "или"
@@ -1751,7 +1752,7 @@ msgid "Sort by key"
msgstr "Сортиране по ключ"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Операции"
@@ -2460,7 +2461,7 @@ msgstr "Добавяне на привилегии към следната ба
msgid "Add privileges on the following table"
msgstr "Добавяне на привилегии към следната таблица"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Добавяне на условие за търсене (съдържание на \"where\" клаузата):"
@@ -2675,7 +2676,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Нека всеки потребител има достъп до този показалец"
@@ -2683,7 +2684,7 @@ msgstr "Нека всеки потребител има достъп до тоз
msgid "The bookmark has been deleted."
msgstr "Показалецът беше изтрит."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Етикет"
@@ -2696,7 +2697,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Препокриване не съществуващия показалец със същото име"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Запази тази SQL заявка"
@@ -2709,7 +2710,8 @@ msgstr "Само показване"
msgid "Browse distinct values"
msgstr "Преглеждане на външните(foreign) стойности"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Преглеждане на външните(foreign) стойности"
@@ -3146,11 +3148,11 @@ msgstr "Забраняване на проверките за външен кл
msgid "Display Features"
msgstr "Покажи възможностите"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Подреждане по:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Изпълняване на \"заявка по шаблон\" (знак за заместване: \"%\")"
@@ -3644,7 +3646,7 @@ msgstr "Име на индекса :"
msgid "Index type:"
msgstr "Тип на индекса :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем с индексите на таблица `%s`"
@@ -3829,7 +3831,7 @@ msgstr "Използване на ключовата дума LOCAL "
msgid "Length/Values"
msgstr "Дължина/Стойност*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "редове на страница"
@@ -4125,7 +4127,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Оператор"
@@ -4972,7 +4974,7 @@ msgstr "Моля изберете база от данни"
msgid "Select binary log to view"
msgstr "Изберете двоичен журнал за преглед"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Избор на поле (поне едно):"
@@ -5047,7 +5049,7 @@ msgstr ""
msgid "Session value"
msgstr "Сесийна стойност"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6460,7 +6462,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Стойност"
diff --git a/po/bn.po b/po/bn.po
index 04022f4..31ffa45 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "খুঁজুন"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Go"
@@ -105,8 +105,8 @@ msgstr "Table comments"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "ক্ষেত্র"
@@ -117,8 +117,9 @@ msgstr "ক্ষেত্র"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -308,8 +309,8 @@ msgstr "Enabled"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Collation"
@@ -429,14 +430,14 @@ msgstr "সাজাঁন"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ascending"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Descending"
@@ -467,7 +468,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "অথবা"
@@ -1759,7 +1760,7 @@ msgid "Sort by key"
msgstr "Sort by key"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Operations"
@@ -2487,7 +2488,7 @@ msgstr "নিচের ডাটাবেইজ এ সুবিধাসমূ
msgid "Add privileges on the following table"
msgstr "নিচের টেবিল এ সুবিধাসমূহ যোগ কর"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "খোঁজার শর্ত যোগ কর (body of the \"where\" clause):"
@@ -2700,7 +2701,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
@@ -2708,7 +2709,7 @@ msgstr "সব ব্যাক্তিকে এই বুকমার্কট
msgid "The bookmark has been deleted."
msgstr "বুকমার্কটি মুছে ফেলা হয়েছে"
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "লেবেল"
@@ -2721,7 +2722,7 @@ msgid "Replace existing bookmark of same name"
msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "এই SQL query টি বুকমার্ক করুন"
@@ -2733,7 +2734,8 @@ msgstr "শুধু দেখ"
msgid "Browse distinct values"
msgstr "নির্দিষ্ট মান ব্রাউজ করুন"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
@@ -3172,11 +3174,11 @@ msgstr "Disable foreign key checks"
msgid "Display Features"
msgstr "বৈশিষ্ট্যসমূহ প্রদর্শন কর"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "ক্রম প্রদর্শন কর"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
@@ -3673,7 +3675,7 @@ msgstr "ইন্ডেস্ক নামঃ"
msgid "Index type:"
msgstr "ইন্ডেস্ক এর ধরনঃ"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
@@ -3857,7 +3859,7 @@ msgstr "লোকাল কী-ওয়ার্ড ব্যাবহার ক
msgid "Length/Values"
msgstr "Length/Values"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Number of rows per page"
@@ -4163,7 +4165,7 @@ msgstr "ঠিক আছে"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "অপারেটর"
@@ -5003,7 +5005,7 @@ msgstr "Please select a database"
msgid "Select binary log to view"
msgstr "Select binary log to view"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Select fields (at least one):"
@@ -5077,7 +5079,7 @@ msgstr ""
msgid "Session value"
msgstr "Session value"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6598,7 +6600,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "মান"
diff --git a/po/bs.po b/po/bs.po
index 8b786ff..93a8dc4 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Pretraživanje"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Kreni"
@@ -105,8 +105,8 @@ msgstr "Komentari tabele"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Polje"
@@ -117,8 +117,9 @@ msgstr "Polje"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tip"
@@ -311,8 +312,8 @@ msgstr "Omogućeno"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Sortiranje"
@@ -432,14 +433,14 @@ msgstr "Sortiranje"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Rastući"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Opadajući"
@@ -470,7 +471,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "ili"
@@ -1748,7 +1749,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Operacije"
@@ -2455,7 +2456,7 @@ msgstr "Dodaj privilegije na slijedećoj bazi"
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije na slijedećoj tabeli"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj uslove pretraživanja (dio \"WHERE\" upita):"
@@ -2673,7 +2674,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2681,7 +2682,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Obilježivač je upravo obrisan."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Naziv"
@@ -2694,7 +2695,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Obilježi SQL-upit"
@@ -2707,7 +2708,8 @@ msgstr "Vidi samo"
msgid "Browse distinct values"
msgstr "Pregledaj strane vrijednosti"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Pregledaj strane vrijednosti"
@@ -3140,11 +3142,11 @@ msgstr ""
msgid "Display Features"
msgstr "Prikaži osobine"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Redosled prikaza:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Napravi \"upit po primjeru\" (džoker: \"%\")"
@@ -3637,7 +3639,7 @@ msgstr "Ime ključa :"
msgid "Index type:"
msgstr "Tip ključa :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3822,7 +3824,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Dužina/Vrijednost*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Broj redova po strani"
@@ -4114,7 +4116,7 @@
msgstr "U redu"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "Operacije"
@@ -4956,7 +4958,7 @@ msgstr "Izaberite bazu"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Izaberi polja (najmanje jedno)"
@@ -5032,7 +5034,7 @@ msgstr ""
msgid "Session value"
msgstr "Vrijednost sesije"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6424,7 +6426,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Vrijednost"
diff --git a/po/ca.po b/po/ca.po
index 929b1e7..dadcbb2 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Cerca"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Executa"
@@ -105,8 +105,8 @@ msgstr "Comentaris de la taula"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Camp"
@@ -117,8 +117,9 @@ msgstr "Camp"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tipus"
@@ -307,8 +308,8 @@ msgstr "Activa"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Ordenació"
@@ -428,14 +429,14 @@ msgstr "Classificació"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ascendent"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Descendent"
@@ -466,7 +467,7 @@ msgstr "Sup"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "O"
@@ -1764,7 +1765,7 @@ msgid "Sort by key"
msgstr "Classifica per la clau"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opcions"
@@ -2518,7 +2519,7 @@ msgstr "Afegeix permisos a la següent base de dades"
msgid "Add privileges on the following table"
msgstr "Afegeix permisos a la següent taula"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Afegeix condicions de recerca (cos de la clàusula \"WHERE\"):"
@@ -2732,7 +2733,7 @@ msgid "Upload to BLOB repository"
msgstr "Puja al repositori BLOB"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
@@ -2740,7 +2741,7 @@ msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
msgid "The bookmark has been deleted."
msgstr "S'ha esborrat la consulta desada."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etiqueta"
@@ -2753,7 +2754,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Reemplaça una consulta desada ja existent amb el mateix nom"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Desa aquesta consulta SQL"
@@ -2765,7 +2766,8 @@ msgstr "Només mirar"
msgid "Browse distinct values"
msgstr "Navega per valors diferents"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Navega valors externs"
@@ -3201,11 +3203,11 @@ msgstr "Desactiva les comprovacions de claus externes"
msgid "Display Features"
msgstr "Mostra les característiques"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Ordre del llistat:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Fer una \"petició segons exemple\" (comodí: \"%\")"
@@ -3704,7 +3706,7 @@ msgstr "Nom d'índex:"
msgid "Index type:"
msgstr "Tipus d'índex:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemes amb els indexs de la taula `%s`"
@@ -3890,7 +3892,7 @@ msgstr "Usa clau LOCAL"
msgid "Length/Values"
msgstr "Longitud/Valors*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "registres per pàgina"
@@ -4196,7 +4198,7 @@ msgstr "Correcte"
msgid "Open Document Text"
msgstr "Text format Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operador"
@@ -5056,7 +5058,7 @@ msgstr "Tria una Base de Dades"
msgid "Select binary log to view"
msgstr "Tria el registre binari per veure"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Tria els camps (un com a mínim):"
@@ -5137,7 +5139,7 @@ msgstr ""
msgid "Session value"
msgstr "Valor de sessió"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6677,7 +6679,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Valor"
diff --git a/po/cs.po b/po/cs.po
index 52acae5..977d583 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,7 +4,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-05-06 07:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
@@ -68,9 +68,9 @@ msgstr "Vyhledávání"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Proveď"
@@ -108,8 +108,8 @@ msgstr "Komentář k tabulce"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Sloupec"
@@ -120,8 +120,9 @@ msgstr "Sloupec"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -304,8 +305,8 @@ msgstr "Zapnout"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Porovnávání"
@@ -425,14 +426,14 @@ msgstr "Řadit"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Vzestupně"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Sestupně"
@@ -463,7 +464,7 @@ msgstr "smazat"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "nebo"
@@ -1698,7 +1699,7 @@ msgid "Sort by key"
msgstr "Setřídit podle klíče"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Nastavení"
@@ -2445,7 +2446,7 @@ msgstr "Přidat oprávnění pro databázi"
msgid "Add privileges on the following table"
msgstr "Přidat oprávnění pro tabulku"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Přidat vyhledávací parametry (část dotazu po příkazu „WHERE“):"
@@ -2654,7 +2655,7 @@ msgid "Upload to BLOB repository"
msgstr "Nahrát do skladiště BLOBů"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Umožnit všem uživatelům používat tuto položku"
@@ -2662,7 +2663,7 @@ msgstr "Umožnit všem uživatelům používat tuto položku"
msgid "The bookmark has been deleted."
msgstr "Položka byla smazána z oblíbených."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Název"
@@ -2675,7 +2676,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Přepsat existující oblíbený dotaz stejného jména"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Přidat tento SQL dotaz do oblíbených"
@@ -2687,7 +2688,8 @@ msgstr "Zobrazit"
msgid "Browse distinct values"
msgstr "Procházet odlišné hodnoty"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Projít hodnoty cizích klíčů"
@@ -3120,11 +3122,11 @@ msgstr "Vypnout kontrolu cizích klíčů"
msgid "Display Features"
msgstr "Zobrazení funkcí"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Seřadit podle:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Provést „dotaz podle příkladu“ (zástupný znak: „%“)"
@@ -3617,7 +3619,7 @@ msgstr "Jméno indexu:"
msgid "Index type:"
msgstr "Typ indexu:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexy v tabulce `%s`"
@@ -3802,7 +3804,7 @@ msgstr "Použít klíčové slovo LOCAL"
msgid "Length/Values"
msgstr "Délka/Množina"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "záznamů na stránku"
@@ -4104,7 +4106,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Text OpenDocument"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operátor"
@@ -4958,7 +4960,7 @@ msgstr "Prosím vyberte databázi"
msgid "Select binary log to view"
msgstr "Zvolte binární log pro zobrazení"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Zvolte sloupec (alespoň jeden):"
@@ -5038,7 +5040,7 @@ msgstr ""
msgid "Session value"
msgstr "Hodnota sezení"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6549,7 +6551,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Hodnota"
@@ -8508,7 +8510,6 @@ msgid "Foreign key constraint"
msgstr "Omezení cizího klíče"
#: tbl_structure.php:362
-#| msgid "None"
msgctxt "None for default"
msgid "None"
msgstr "Žádná"
diff --git a/po/da.po b/po/da.po
index d15ece4..45c4de3 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Søg"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Udfør"
@@ -105,8 +105,8 @@ msgstr "Tabel kommentarer"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Feltnavn"
@@ -117,8 +117,9 @@ msgstr "Feltnavn"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Datatype"
@@ -307,8 +308,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Kollation (Collation)"
@@ -428,14 +429,14 @@ msgstr "Sorter"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Stigende"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Faldende"
@@ -466,7 +467,7 @@ msgstr "Del (Slet)"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Eller"
@@ -1751,7 +1752,7 @@ msgid "Sort by key"
msgstr "Sorteringsnøgle"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Indstillinger"
@@ -2472,7 +2473,7 @@ msgstr "Tilføj privilegier på følgende database"
msgid "Add privileges on the following table"
msgstr "Tilføj privileges på følgende tabel"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Tilføj søgekriterier (kroppen af \"WHERE\" sætningen):"
@@ -2681,7 +2682,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Lad alle brugere bruge dette bogmærke"
@@ -2689,7 +2690,7 @@ msgstr "Lad alle brugere bruge dette bogmærke"
msgid "The bookmark has been deleted."
msgstr "Bogmærket er fjernet."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Mærke"
@@ -2702,7 +2703,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Erstat eksisterende bogmærke af samme navn"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Lav bogmærke til denne SQL-forespørgsel"
@@ -2714,7 +2715,8 @@ msgstr "Kun oversigt"
msgid "Browse distinct values"
msgstr "Gennemse bestemte værdier"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Bladre i fremmedværdier"
@@ -3146,11 +3148,11 @@ msgstr "Slå fremmednøgle-checks fra"
msgid "Display Features"
msgstr "Vis muligheder"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Rækkefølge af visning:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Kør en forespørgsel på felter (jokertegn: \"%\")"
@@ -3640,7 +3642,7 @@ msgstr "Indeksnavn :"
msgid "Index type:"
msgstr "Indekstype :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene på tabel `%s`"
@@ -3823,7 +3825,7 @@ msgstr "Brug LOCAL nøgleord"
msgid "Length/Values"
msgstr "Længde/Værdi*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "poster pr. side"
@@ -4130,7 +4132,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Open Document tekst"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operatør"
@@ -4960,7 +4962,7 @@ msgstr "Vælg en database"
msgid "Select binary log to view"
msgstr "Vælg binærlog til gennemsyn"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Vælg mindst eet felt:"
@@ -5036,7 +5038,7 @@ msgstr ""
msgid "Session value"
msgstr "Sessionsværdi"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6564,7 +6566,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Værdi"
diff --git a/po/de.po b/po/de.po
index 927bc11..88c2179 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-23 21:07+0200\n"
"Last-Translator: <me(a)michaelkeck.de>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Suche"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -107,8 +107,8 @@ msgstr "Tabellen-Kommentar"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Feld"
@@ -119,8 +119,9 @@ msgstr "Feld"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -309,8 +310,8 @@ msgstr "Aktivieren"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Kollation"
@@ -430,14 +431,14 @@ msgstr "Sortierung"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "aufsteigend"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "absteigend"
@@ -468,7 +469,7 @@ msgstr "Entf."
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "oder"
@@ -1779,7 +1780,7 @@ msgid "Sort by key"
msgstr "Nach Schlüssel sortieren"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Optionen"
@@ -2532,7 +2533,7 @@ msgstr "Rechte zu folgender Datenbank hinzufügen"
msgid "Add privileges on the following table"
msgstr "Rechte zu folgender Tabelle hinzufügen"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Eigenes Filterkriterium (Argumente für den WHERE-Ausdruck):"
@@ -2745,7 +2746,7 @@ msgid "Upload to BLOB repository"
msgstr "Zu BLOB-Repository hochladen"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
@@ -2753,7 +2754,7 @@ msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
msgid "The bookmark has been deleted."
msgstr "SQL-Abfrage wurde gelöscht."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Titel"
@@ -2766,7 +2767,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Überschreibe gleichnamiges Bookmark"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "SQL-Abfrage speichern"
@@ -2778,7 +2779,8 @@ msgstr "Nur zeigen"
msgid "Browse distinct values"
msgstr "Zeige nur unterschiedliche Werte"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Fremdschlüsselwerte ansehen"
@@ -3219,11 +3221,11 @@ msgstr "Fremdschlüsselüberprüfung deaktivieren"
msgid "Display Features"
msgstr "Anzeige verknüpfter Daten"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Sortierung nach:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Suche über Beispielwerte (\"query by example\") (Platzhalter: \"%\")"
@@ -3723,7 +3725,7 @@ msgstr "Indexname:"
msgid "Index type:"
msgstr "Indextyp:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Warnungen bei den Indizes der Tabelle `%s`"
@@ -3909,7 +3911,7 @@ msgstr "verwende LOCAL"
msgid "Length/Values"
msgstr "Länge/Set"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Einträge pro Seite"
@@ -4218,7 +4220,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -5073,7 +5075,7 @@ msgstr "Bitte Datenbank auswählen"
msgid "Select binary log to view"
msgstr "Binäres Protokoll zur Anzeige auswählen"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Felder auswählen (min. eines):"
@@ -5154,7 +5156,7 @@ msgstr ""
msgid "Session value"
msgstr "Wert für diese Sitzung"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6720,7 +6722,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Wert"
diff --git a/po/el.po b/po/el.po
index 82f0a03..259b33e 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:16+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Αναζήτηση"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Εκτέλεση"
@@ -107,8 +107,8 @@ msgstr "Σχόλια Πίνακα"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Πεδίο"
@@ -119,8 +119,9 @@ msgstr "Πεδίο"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Τύπος"
@@ -309,8 +310,8 @@ msgstr "Ενεργοποίηση"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Σύνθεση"
@@ -430,14 +431,14 @@ msgstr "Ταξινόμηση"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Αύξουσα"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Φθίνουσα"
@@ -468,7 +469,7 @@ msgstr "Διαγραφή"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Ή"
@@ -1773,7 +1774,7 @@ msgid "Sort by key"
msgstr "Ταξινόμηση ανά κλειδί"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Επιλογές"
@@ -2531,7 +2532,7 @@ msgstr "Προσθήκη δικαιωμάτων στην ακόλουθη βάσ
msgid "Add privileges on the following table"
msgstr "Προσθήκη δεδομένων στον ακόλουθο πίνακα"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Προσθήκη νέου όρου (σώμα της πρότασης «where» πρότασης):"
@@ -2741,7 +2742,7 @@ msgid "Upload to BLOB repository"
msgstr "Μεταφορά στην αποθήκη BLOB"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
@@ -2749,7 +2750,7 @@ msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε
msgid "The bookmark has been deleted."
msgstr "Η ετικέτα διεγράφη."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Τίτλος"
@@ -2762,7 +2763,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
@@ -2774,7 +2775,8 @@ msgstr "Μόνο ανάγνωση"
msgid "Browse distinct values"
msgstr "Αναζήτηση διακριτων τιμών"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Αναζήτηση μη διακριτών τιμών"
@@ -3209,11 +3211,11 @@ msgstr "Απενεργοποίηση ελέγχων μη διακριτών κλ
msgid "Display Features"
msgstr "Λειτουργίες εμφάνισης"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Σειρά εμφάνισης:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Εκτέλεσε ένα «επερώτημα κατά παράδειγμα» (χαρακτήρας μπαλαντέρ «%»)"
@@ -3713,7 +3715,7 @@ msgstr "Όνομα ευρετηρίου :"
msgid "Index type:"
msgstr "Τύπος ευρετηρίου :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»"
@@ -3901,7 +3903,7 @@ msgstr "Χρήση ΤΟΠΙΚΟΥ πληκτρολογίου"
msgid "Length/Values"
msgstr "Μήκος/Τιμές*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Εγγραφές ανά σελίδα"
@@ -4210,7 +4212,7 @@ msgstr "Εντάξει"
msgid "Open Document Text"
msgstr "Έγγραφο Κειμένου Ανοιχτού Κώδικα (ODΤ)"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Τελεστής"
@@ -5079,7 +5081,7 @@ msgstr "Παρακαλώ επιλέξτε μία βάση δεδομένων"
msgid "Select binary log to view"
msgstr "Επιλέξτε δυαδικό αρχείο καταγραφής για προβολή"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Επιλογή πεδίων (τουλάχιστον ένα)"
@@ -5160,7 +5162,7 @@ msgstr ""
msgid "Session value"
msgstr "Τιμή Συνεδρίας"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6743,7 +6745,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Τιμή"
diff --git a/po/en_GB.po b/po/en_GB.po
index 2166043..3a786f0 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-05-04 11:46+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Search"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Go"
@@ -107,8 +107,8 @@ msgstr "Table comments"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Field"
@@ -119,8 +119,9 @@ msgstr "Field"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -303,8 +304,8 @@ msgstr "Enable"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Collation"
@@ -424,14 +425,14 @@ msgstr "Sort"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ascending"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Descending"
@@ -462,7 +463,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Or"
@@ -1170,8 +1171,6 @@ msgstr ""
#: libraries/common.inc.php:594
#, php-format
-#, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Could not load default configuration from: %1$s"
@@ -1695,7 +1694,7 @@ msgid "Sort by key"
msgstr "Sort by key"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Options"
@@ -2442,7 +2441,7 @@ msgstr "Add privileges on the following database"
msgid "Add privileges on the following table"
msgstr "Add privileges on the following table"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Add search conditions (body of the \"where\" clause):"
@@ -2651,7 +2650,7 @@ msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Let every user access this bookmark"
@@ -2659,7 +2658,7 @@ msgstr "Let every user access this bookmark"
msgid "The bookmark has been deleted."
msgstr "The bookmark has been deleted."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Label"
@@ -2672,7 +2671,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Replace existing bookmark of same name"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Bookmark this SQL query"
@@ -2684,7 +2683,8 @@ msgstr "View only"
msgid "Browse distinct values"
msgstr "Browse distinct values"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
@@ -3118,11 +3118,11 @@ msgstr "Disable foreign key checks"
msgid "Display Features"
msgstr "Display Features"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Display order:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
@@ -3616,7 +3616,7 @@ msgstr "Index name:"
msgid "Index type:"
msgstr "Index type:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
@@ -3804,7 +3804,7 @@ msgstr "Use LOCAL keyword"
msgid "Length/Values"
msgstr "Length/Values"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Number of rows per page"
@@ -4110,7 +4110,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -4961,7 +4961,7 @@ msgstr "Please select a database"
msgid "Select binary log to view"
msgstr "Select binary log to view"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Select fields (at least one):"
@@ -5041,7 +5041,7 @@ msgstr ""
msgid "Session value"
msgstr "Session value"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6561,7 +6561,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Value"
@@ -6676,15 +6676,11 @@ msgstr "Create table"
#: pdf_schema.php:637
#, php-format
-#, php-format
-#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
msgstr "The %s table doesn't exist!"
#: pdf_schema.php:996
#, php-format
-#, php-format
-#| msgid "Schema of the \"%s\" database - Page %s"
msgid "Schema of the %s database - Page %s"
msgstr "Schema of the %s database - Page %s"
diff --git a/po/es.po b/po/es.po
index 13c3228..a878c3a 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 11:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Buscar"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Continuar"
@@ -107,8 +107,8 @@ msgstr "Comentarios de la tabla"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Campo"
@@ -119,8 +119,9 @@ msgstr "Campo"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -309,8 +310,8 @@ msgstr "Habilite"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Cotejamiento"
@@ -430,14 +431,14 @@ msgstr "Ordenar"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Descendente"
@@ -468,7 +469,7 @@ msgstr "Borrar"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "O"
@@ -1776,7 +1777,7 @@ msgid "Sort by key"
msgstr "Organizar según la clave"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opciones"
@@ -2541,7 +2542,7 @@ msgstr "Añadir privilegios a esta base de datos"
msgid "Add privileges on the following table"
msgstr "Añadir privilegios a esta tabla"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
"Insertar las condiciones de búsqueda (cuerpo de la cláusula \"where\"):"
@@ -2757,7 +2758,7 @@ msgid "Upload to BLOB repository"
msgstr "Cargar al repositorio BLOB"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Permitir que todo usuario pueda acceder a este favorito"
@@ -2765,7 +2766,7 @@ msgstr "Permitir que todo usuario pueda acceder a este favorito"
msgid "The bookmark has been deleted."
msgstr "El favorito ha sido borrado."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etiqueta"
@@ -2778,7 +2779,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Reemplazar el favorito existente que tenga el mismo nombre"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Guardar esta consulta en favoritos"
@@ -2790,7 +2791,8 @@ msgstr "Solamente ver"
msgid "Browse distinct values"
msgstr "Navegar los valores distintivos"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Mostrar los valores extranjeros"
@@ -3235,11 +3237,11 @@ msgstr "Deshabilitar la revisión de las llaves extranjeras (foreign keys)"
msgid "Display Features"
msgstr "Mostrar las opciones"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Mostrar en este orden:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Hacer una consulta (comodín: \"%\")"
@@ -3740,7 +3742,7 @@ msgstr "Nombre del índice :"
msgid "Index type:"
msgstr "Tipo de índice :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas con los índices de la tabla `%s`"
@@ -3928,7 +3930,7 @@ msgstr "Use la palabra clave LOCAL"
msgid "Length/Values"
msgstr "Longitud/Valores*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "registros por página"
@@ -4238,7 +4240,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Texto Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operador"
@@ -5094,7 +5096,7 @@ msgstr "Seleccionar una base de datos"
msgid "Select binary log to view"
msgstr "Seleccionar el log binario que desea examinar"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Seleccionar campos (al menos uno):"
@@ -5171,7 +5173,7 @@ msgstr ""
msgid "Session value"
msgstr "Valor de la sesión"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6738,7 +6740,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Valor"
diff --git a/po/et.po b/po/et.po
index 4d89e55..2cc3047 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Otsi"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Mine"
@@ -105,8 +105,8 @@ msgstr "Tabeli kommentaarid"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Väli"
@@ -117,8 +117,9 @@ msgstr "Väli"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tüüp"
@@ -308,8 +309,8 @@ msgstr "Lubatud"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Määrang"
@@ -429,14 +430,14 @@ msgstr "Sorteeri"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Kasvav"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Kahanev"
@@ -467,7 +468,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "või"
@@ -1756,7 +1757,7 @@ msgid "Sort by key"
msgstr "Sorteeri võtme järgi"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Tegevused"
@@ -2482,7 +2483,7 @@ msgstr "Lisa privileegid antud andmebaasile"
msgid "Add privileges on the following table"
msgstr "Lisa privileegid antud tabelile"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Lisa otsinguparameetrid (\"WHERE\" lause sisu):"
@@ -2695,7 +2696,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale"
@@ -2703,7 +2704,7 @@ msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale"
msgid "The bookmark has been deleted."
msgstr "Järjehodja kustutati."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Nimetus"
@@ -2716,7 +2717,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Kirjuta samanimeline järjehoidja üle"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Lisa see SQL päring järjehoidjasse"
@@ -2728,7 +2729,8 @@ msgstr "Vaata ainult"
msgid "Browse distinct values"
msgstr "Sirvi erinevaid väärtusi"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Vaata väliseid väärtuseid"
@@ -3163,11 +3165,11 @@ msgstr "Keela võõrvõtmete (foreign key) kontroll"
msgid "Display Features"
msgstr "Kuva võimalused"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Näitamise järjekord:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Tee \"päring näite järgi\" (lühend: \"%\")"
@@ -3662,7 +3664,7 @@ msgstr "Indeksi nimi :"
msgid "Index type:"
msgstr "Indeksi tüüp :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleemid tabeli `%s` indeksitega"
@@ -3845,7 +3847,7 @@ msgstr "kasuta LOCAL võtmesõna"
msgid "Length/Values"
msgstr "Pikkus/Väärtused*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Ridade arv lehel"
@@ -4147,7 +4149,7 @@ msgstr "Korras"
msgid "Open Document Text"
msgstr "Ava dokumendi tekst"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operaator"
@@ -4986,7 +4988,7 @@ msgstr "Valige andmebaas"
msgid "Select binary log to view"
msgstr "Valige binaarne logi vaatamiseks"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Vali väljad (vähemalt üks):"
@@ -5060,7 +5062,7 @@ msgstr ""
msgid "Session value"
msgstr "Sessiooni väärtus"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6577,7 +6579,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Väärtus"
diff --git a/po/eu.po b/po/eu.po
index fa661d4..821ea9c 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-31 10:40+0200\n"
"Last-Translator: <hey_neken(a)mundurat.net>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Bilatu"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Joan"
@@ -107,8 +107,8 @@ msgstr "Taularen iruzkinak"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Eremua"
@@ -119,8 +119,9 @@ msgstr "Eremua"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Mota"
@@ -313,8 +314,8 @@ msgstr "Gaituta"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Ordenamendua"
@@ -434,14 +435,14 @@ msgstr "Ordenatu"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Goranzko"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Beherantz"
@@ -472,7 +473,7 @@ msgstr "Ezabatu"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Edo"
@@ -1752,7 +1753,7 @@ msgid "Sort by key"
msgstr "Gakoaren arabera ordenatu"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Eragiketak"
@@ -2458,7 +2459,7 @@ msgstr "Pribilegioak gehitu datu-base honetan"
msgid "Add privileges on the following table"
msgstr "Pribilegioak gehitu taula honetan "
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Bilatzeko baldintzak txertatu (\"where\" klausularen gorputza):"
@@ -2674,7 +2675,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri "
@@ -2682,7 +2683,7 @@ msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri "
msgid "The bookmark has been deleted."
msgstr "Gordetako kontsulta ezabatu da."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etiketa"
@@ -2695,7 +2696,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Kontsulta hau gogokoetan gorde"
@@ -2707,7 +2708,8 @@ msgstr "Soilik ikusi"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3143,11 +3145,11 @@ msgstr ""
msgid "Display Features"
msgstr "Eginbideak erakutsi"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Ordena erakutsi:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Adibide moduan\" kontsulta bat egin (komodina: \"%\")"
@@ -3642,7 +3644,7 @@ msgstr "Indizearen izena :"
msgid "Index type:"
msgstr "Indize mota :"
-#: librar
ies/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3827,7 +3829,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Luzera/Balioak*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Errenkada kopurua orriko"
@@ -4119,7 +4121,7 @@ msgstr "Zuzena"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "Eragiketak"
@@ -4973,7 +4975,7 @@ msgstr "Datu-base bat hautatu mesedez"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Eremuak hautatu (bat gutxienez):"
@@ -5050,7 +5052,7 @@ msgstr ""
msgid "Session value"
msgstr "Saioaren balioa"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6450,7 +6452,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "balioa"
diff --git a/po/fa.po b/po/fa.po
index 8706e0b..68f8901 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: persian <fa(a)li.org>\n"
@@ -62,9 +62,9 @@ msgstr "جستجو"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "تاييد"
@@ -103,8 +103,8 @@ msgstr "توضيحات جدول"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "ستون"
@@ -115,8 +115,9 @@ msgstr "ستون"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "نوع"
@@ -308,8 +309,8 @@ msgstr "فعال"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr ""
@@ -431,14 +432,14 @@ msgstr "ترتيب"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "صعودي"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "نزولي"
@@ -469,7 +470,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "يا"
@@ -1741,7 +1742,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "عمليات"
@@ -2445,7 +2446,7 @@ msgstr ""
msgid "Add privileges on the following table"
msgstr ""
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "افزودن شرايط جستجو (بدنه شرط \"where\"):"
@@ -2660,7 +2661,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2669,7 +2670,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "سطر حذف گرديد ."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr ""
@@ -2682,7 +2683,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr ""
@@ -2694,7 +2695,8 @@ msgstr ""
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3122,11 +3124,11 @@ msgstr ""
msgid "Display Features"
msgstr "نمايش خصوصيات"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "ترتيب نمايش:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "انجام يك \"پرس و جو با نمونه\" (wildcard: \"%\")"
@@ -3613,7 +3615,7 @@ msgstr "اسم فهرست :"
msgid "Index type:"
msgstr "نوع فهرست :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3795,7 +3797,7 @@ msgstr ""
msgid "Length/Values"
msgstr "طول/مقادير*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "تعداد سطرها در هر صفحه"
@@ -4087,7 +4089,7 @@ msgstr "تاييد"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "عمليات"
@@ -4914,7 +4916,7 @@ msgstr "لطفا يك پايگاه داده را انتخاب نماييد."
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "ستونها را انتخاب نماييد (حداقل يكي)"
@@ -4990,7 +4992,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6347,7 +6349,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "مقدار"
diff --git a/po/fi.po b/po/fi.po
index 29d17d6..b4d37d1 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: <kajouni(a)gmail.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Etsi"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Siirry"
@@ -107,8 +107,8 @@ msgstr "Taulun kommentit"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Sarake"
@@ -119,8 +119,9 @@ msgstr "Sarake"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tyyppi"
@@ -309,8 +310,8 @@ msgstr "Ota käyttöön"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Aakkosjärjestys"
@@ -430,14 +431,14 @@ msgstr "Järjestys"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Nouseva"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Laskeva"
@@ -468,7 +469,7 @@ msgstr "Poista"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Tai"
@@ -1764,7 +1765,7 @@ msgid "Sort by key"
msgstr "Lajittele avaimen mukaan"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Valinnat"
@@ -2514,7 +2515,7 @@ msgstr "Lisää käyttöoikeudet seuraavaan tietokantaan"
msgid "Add privileges on the following table"
msgstr "Lisää käyttöoikeudet seuraavaan tauluun"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Lisää hakuehtoja (\"WHERE\"-lauseen sisältö):"
@@ -2727,7 +2728,7 @@ msgid "Upload to BLOB repository"
msgstr "Lähetä BLOB-tietokantaan"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
@@ -2735,7 +2736,7 @@ msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
msgid "The bookmark has been deleted."
msgstr "Kirjanmerkki on poistettu."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Tunniste"
@@ -2748,7 +2749,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Tallenna SQL-kysely"
@@ -2760,7 +2761,8 @@ msgstr "Näytä"
msgid "Browse distinct values"
msgstr "Selaa erilaisia arvoja"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Selaa viitearvoja"
@@ -3197,11 +3199,11 @@ msgstr "Älä tarkista viiteavaimia"
msgid "Display Features"
msgstr "Ulkoasun asetukset"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Lajittelujärjestys:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Suorita mallin mukainen kysely (jokerimerkki: \"%\")"
@@ -3695,7 +3697,7 @@ msgstr "Indeksin nimi:"
msgid "Index type:"
msgstr "Indeksin tyyppi:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Taulun \"%s\" indeksien kanssa on ongelmia"
@@ -3879,7 +3881,7 @@ msgstr "Käytä LOCAL-avainsanaa"
msgid "Length/Values"
msgstr "Pituus/Arvot*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Rivejä sivulla"
@@ -4181,7 +4183,7 @@ msgstr "Kunnossa"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operaattori"
@@ -5038,7 +5040,7 @@ msgstr "Valitse tietokanta"
msgid "Select binary log to view"
msgstr "Valitse näytettävä binääriloki"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Valitse sarakkeet (vähintään yksi):"
@@ -5118,7 +5120,7 @@ msgstr ""
msgid "Session value"
msgstr "Tämän istunnon arvo"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6665,7 +6667,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Arvo"
diff --git a/po/fr.po b/po/fr.po
index e481ba2..1a9bbe3 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 11:52+0200\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-05-04 16:34+0200\n"
"Last-Translator: Marc <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
-"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -67,9 +67,9 @@ msgstr "Rechercher"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Exécuter"
@@ -107,8 +107,8 @@ msgstr "Commentaires sur la table"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Champ"
@@ -119,8 +119,9 @@ msgstr "Champ"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -303,8 +304,8 @@ msgstr "Activer"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Interclassement"
@@ -424,14 +425,14 @@ msgstr "Tri"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Croissant"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Décroissant"
@@ -462,7 +463,7 @@ msgstr "Effacer"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Ou"
@@ -1170,13 +1171,12 @@ msgstr ""
"phpMyAdmin n'a pu lire votre fichier de configuration!<br />Il est possible "
"qu'il contienne une erreur de syntaxe, ou que PHP soit incapable de le "
"trouver.<br />À l'aide du lien suivant, vous pouvez vérifier le message "
-"d'erreur généré par PHP.<br />La plupart du temps, un apostrophe ou un "
-"point-virgule sont manquants.<br />Si vous recevez une page blanche, aucune "
-"erreur n'a été détectée."
+"d'erreur généré par PHP.<br />La plupart du temps, un apostrophe ou un point-"
+"virgule sont manquants.<br />Si vous recevez une page blanche, aucune erreur "
+"n'a été détectée."
#: libraries/common.inc.php:594
#, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Chargement de la configuration par défaut impossible depuis %1$s"
@@ -1350,8 +1350,8 @@ msgid ""
"Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
"extension. Please check your PHP configuration."
msgstr ""
-"PHP ne peut charger l'extension [a@http://php.net/%1$s@Documentation][em]%"
-"1$s[/em][/a]. Veuillez vérifier votre configuration de PHP."
+"PHP ne peut charger l'extension [a@http://php.net/%1$s@Documentation][em]%1$s"
+"[/em][/a]. Veuillez vérifier votre configuration de PHP."
#: libraries/db_events.inc.php:20 libraries/db_events.inc.php:22
#: libraries/export/sql.php:415 libraries/messages.inc.php:314
@@ -1368,8 +1368,7 @@ msgstr "Nom"
#: libraries/messages.inc.php:184
msgid "Connection for controluser as defined in your configuration failed."
msgstr ""
-"La connexion au controluser tel que défini dans votre configuration a "
-"échoué."
+"La connexion au controluser tel que défini dans votre configuration a échoué."
#: libraries/dbi/mysql.dbi.lib.php:353 libraries/dbi/mysql.dbi.lib.php:355
#: libraries/dbi/mysqli.dbi.lib.php:410 libraries/messages.inc.php:863
@@ -1708,7 +1707,7 @@ msgid "Sort by key"
msgstr "Trier sur l'index"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Options"
@@ -2464,7 +2463,7 @@ msgstr "Ajouter des privilèges sur cette base de données"
msgid "Add privileges on the following table"
msgstr "Ajouter des privilèges sur cette table"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Critères de recherche (pour l'énoncé «where») :"
@@ -2675,7 +2674,7 @@ msgid "Upload to BLOB repository"
msgstr "Télécharger vers le dépôt BLOB"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Signet visible pour les autres utilisateurs"
@@ -2683,7 +2682,7 @@ msgstr "Signet visible pour les autres utilisateurs"
msgid "The bookmark has been deleted."
msgstr "Le signet a été effacé."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Intitulé"
@@ -2696,7 +2695,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Remplacer un signet existant du même nom"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Conserver cette requête dans les signets"
@@ -2708,7 +2707,8 @@ msgstr "Voir uniquement"
msgid "Browse distinct values"
msgstr "Affiche les valeurs distinctes"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Afficher les valeurs de la table liée"
@@ -3146,11 +3146,11 @@ msgstr "Désactiver la vérification des clés étrangères"
msgid "Display Features"
msgstr "Affichage infobulle"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Ordre d'affichage :"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Recherche par valeur (passepartout: «% ») "
@@ -3648,7 +3648,7 @@ msgstr "Nom de l'index :"
msgid "Index type:"
msgstr "Type d'index :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Il y a des problèmes avec les index de la table `%s`"
@@ -3836,7 +3836,7 @@ msgstr "Utiliser l'option LOCAL"
msgid "Length/Values"
msgstr "Taille/Valeurs*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Nombre d'enregistrements par page"
@@ -3936,8 +3936,8 @@ msgid ""
"'\\\\xyz' or 'a\\'b')."
msgstr ""
"Veuillez entrer les valeurs des options de transformation en suivant ce "
-"format: 'a', 100, b,'c'...<br />Si vous devez entrer un caractère (\"\\\") ou "
-"une apostrophe (\"'\") parmi ces valeurs, faites-le précéder du caractère "
+"format: 'a', 100, b,'c'...<br />Si vous devez entrer un caractère (\"\\\") "
+"ou une apostrophe (\"'\") parmi ces valeurs, faites-le précéder du caractère "
"d'échappement, par exemple '\\\\xyz' or 'a\\'b')."
#: libraries/messages.inc.php:519 libraries/tbl_properties.inc.php:145
@@ -4148,7 +4148,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Texte «Open Document»"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Opérateur"
@@ -5023,7 +5023,7 @@ msgstr "Choisissez une base de données"
msgid "Select binary log to view"
msgstr "Sélectionnez le log binaire à consulter"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Choisir les champs à afficher (au moins un)"
@@ -5104,7 +5104,7 @@ msgstr ""
msgid "Session value"
msgstr "Valeur pour la session"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6651,7 +6651,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Valeur"
@@ -6766,13 +6766,11 @@ msgstr "Nouvelle table"
#: pdf_schema.php:637
#, php-format
-#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
msgstr "La table %s n'existe pas !"
#: pdf_schema.php:996
#, php-format
-#| msgid "Schema of the \"%s\" database - Page %s"
msgid "Schema of the %s database - Page %s"
msgstr "Schéma de la base %s - Page %s"
@@ -6781,7 +6779,6 @@ msgid "Jump to database"
msgstr "Aller à la base de données"
#: server_privileges.php:263 server_privileges.php:264
-#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Aucun"
@@ -6791,7 +6788,6 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Préfixer avec \\ les passepartouts _ et % pour un usage littéral"
#: server_privileges.php:1998
-#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "aucune"
diff --git a/po/gl.po b/po/gl.po
index 09fcf92..ab8d6a5 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -66,9 +66,9 @@ msgstr "Procurar"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Executar"
@@ -106,8 +106,8 @@ msgstr "Comentarios da táboa"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Campo"
@@ -118,8 +118,9 @@ msgstr "Campo"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -308,8 +309,8 @@ msgstr "Activar"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Orde alfabética"
@@ -429,14 +430,14 @@ msgstr "Ordenar"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Descendente"
@@ -467,7 +468,7 @@ msgstr "Eliminar"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "ou"
@@ -1767,7 +1768,7 @@ msgid "Sort by key"
msgstr "Ordenar pola chave"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opcións"
@@ -2524,7 +2525,7 @@ msgstr "Engadir privilexios para esta base de datos"
msgid "Add privileges on the following table"
msgstr "Engadir privilexios para a esta táboa"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Condición da pesquisa (ou sexa, o complemento da cláusula \"WHERE\"):"
@@ -2738,7 +2739,7 @@ msgid "Upload to BLOB repository"
msgstr "Enviar ao repositorio de BLOB"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Permitir que calquera usuario poida acceder a este marcador"
@@ -2746,7 +2747,7 @@ msgstr "Permitir que calquera usuario poida acceder a este marcador"
msgid "The bookmark has been deleted."
msgstr "Eliminouse o marcador."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Nome"
@@ -2759,7 +2760,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Substituír un marcador xa existente que teña o mesmo nome"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Gardar esta procura de SQL"
@@ -2771,7 +2772,8 @@ msgstr "Só visualizar"
msgid "Browse distinct values"
msgstr "Examinar valores claramente distintos"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Visualizar valores alleos"
@@ -3208,11 +3210,11 @@ msgstr "Desactivar as comprobacións de chaves exteriores"
msgid "Display Features"
msgstr "Mostrar as características"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Mostrar en orde:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Faga unha \"procura por exemplo\" (o comodín é \"%\")"
@@ -3708,7 +3710,7 @@ msgstr "Nome do índice :"
msgid "Index type:"
msgstr "Tipo de índice :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas cos índices da táboa `%s`"
@@ -3894,7 +3896,7 @@ msgstr "Utilice a palabra chave LOCAL"
msgid "Length/Values"
msgstr "Tamaño/Definir*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Número de rexistros por páxina:"
@@ -4200,7 +4202,7 @@ msgstr "Conforme"
msgid "Open Document Text"
msgstr "Texto Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operador"
@@ -5059,7 +5061,7 @@ msgstr "Seleccione unha base de dados"
msgid "Select binary log to view"
msgstr "Seleccione o ficheiro de rexistro binario que queira ver"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Seleccione os campos (mínimo un)"
@@ -5140,7 +5142,7 @@ msgstr ""
msgid "Session value"
msgstr "Valor da sesión"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6683,7 +6685,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Valor"
diff --git a/po/he.po b/po/he.po
index 82f7817..8e64fcd 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -62,9 +62,9 @@ msgstr "חיפוש"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "סע"
@@ -102,8 +102,8 @@ msgstr "הערות טבלה"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "שדה"
@@ -114,8 +114,9 @@ msgstr "שדה"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "סוג"
@@ -305,8 +306,8 @@ msgstr "מופעל"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "קידוד"
@@ -426,14 +427,14 @@ msgstr "סידור"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "עולה"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "יורד"
@@ -464,7 +465,7 @@ msgstr "מחיקה"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "או"
@@ -1740,7 +1741,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "פעולות"
@@ -2449,7 +2450,7 @@ msgstr "הוספת הרשאות למאגר הנתונים הבא"
msgid "Add privileges on the following table"
msgstr "הוספת הראשאות לטבלה הבאה"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "הוספת תנאי חיפוש (הגוף של תנאי \"where\"):"
@@ -2662,7 +2663,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת"
@@ -2670,7 +2671,7 @@ msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת"
msgid "The bookmark has been deleted."
msgstr "כתובת מועדפת נמחקה."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "תווית"
@@ -2683,7 +2684,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "הכנס שאילתת SQL זאת למועדפים"
@@ -2695,7 +2696,8 @@ msgstr "ראה רק"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3125,11 +3127,11 @@ msgstr ""
msgid "Display Features"
msgstr "הצגת תכונות"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "סדר תצוגה:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "ביצוע \"שאילתה לדוגמה\" (תו כללי: \"%\")"
@@ -3618,7 +3620,7 @@ msgstr "שם אינדקס:"
msgid "Index type:"
msgstr "סוג אינדקס:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "בעיות עם אינדקסים של טבלה `%s`"
@@ -3801,7 +3803,7 @@ msgstr ""
msgid "Length/Values"
msgstr "אורך/ערכים*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "מספר של שורות לכל דף"
@@ -4096,7 +4098,7 @@ msgstr "אישור"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "פעולות"
@@ -4927,7 +4929,7 @@ msgstr "אנא בחר מאגר נתונים"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "בחירת שדות (לפחות אחד):"
@@ -5001,7 +5003,7 @@ msgstr ""
msgid "Session value"
msgstr "ערך זמן חיבור (Session)"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6357,7 +6359,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "ערך"
diff --git a/po/hi.po b/po/hi.po
index 4474e43..2ac50a0 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-05-05 04:47+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -66,9 +66,9 @@ msgstr "खोजें"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "आगे"
@@ -106,8 +106,8 @@ msgstr " टेबल टिप्पणि:"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "फील्ड"
@@ -118,8 +118,9 @@ msgstr "फील्ड"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "टाइप"
@@ -311,8 +312,8 @@ msgstr "सक्षम"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr ""
@@ -432,14 +433,14 @@ msgstr ""
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "आरोही"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr ""
@@ -470,7 +471,7 @@ msgstr ""
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "अथवा"
@@ -1712,7 +1713,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr ""
@@ -2410,7 +2411,7 @@ msgstr "इन डाटाबेसों के लिये विशेष
msgid "Add privileges on the following table"
msgstr "इन टेबल के लिये विशेषाधिकार जोडें"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)"
@@ -2619,7 +2620,7 @@ msgid "Upload to BLOB repository"
msgstr "BLOB भण्डार में अपलोड करें"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए"
@@ -2627,7 +2628,7 @@ msgstr "हर उपयोकर्ता को अनुमति दें
msgid "The bookmark has been deleted."
msgstr "यह बुकमार्क हटा दिया गया है"
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "लेबल"
@@ -2640,7 +2641,7 @@ msgid "Replace existing bookmark of same name"
msgstr "एक ही नाम के सभी बुकमार्क्स बदल दें"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "इस SQL-क्वरी को बुकमार्क कीजिये "
@@ -2652,7 +2653,8 @@ msgstr "केवल देखिये"
msgid "Browse distinct values"
msgstr "अलग मूल्य ब्राउस करें "
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "विदेशी मूल्य ब्राउस करें "
@@ -3072,11 +3074,11 @@ msgstr ""
msgid "Display Features"
msgstr "फीचरस दिखाओ"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "क्रम से दिखाओ:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
@@ -3556,7 +3558,7 @@ msgstr ""
msgid "Index type:"
msgstr ""
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3735,7 +3737,7 @@ msgstr ""
msgid "Length/Values"
msgstr "लंबाई/अर्थ*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "प्रति पृष्ट कितने रौ"
@@ -4018,7 +4020,7 @@ msgstr ""
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr ""
@@ -4836,7 +4838,7 @@ msgstr "कृपया एक डाटाबेस चुनिये "
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr ""
@@ -4910,7 +4912,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6253,7 +6255,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "मूल्य"
diff --git a/po/hr.po b/po/hr.po
index 30a96ba..b9344eb 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Traži"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Kreni"
@@ -105,8 +105,8 @@ msgstr "Komentari tablice"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Polje"
@@ -117,8 +117,9 @@ msgstr "Polje"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Vrsta"
@@ -309,8 +310,8 @@ msgstr "Omogućeno"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Uspoređivanje"
@@ -430,14 +431,14 @@ msgstr "Presloži"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Uzlazno"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Silazno"
@@ -468,7 +469,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Ili"
@@ -1770,7 +1771,7 @@ msgid "Sort by key"
msgstr "Presloži po ključu"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opcije"
@@ -2525,7 +2526,7 @@ msgstr "Dodaj privilegije za sljedeće baze podataka"
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije za sljedeću tablicu"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj uvjete pretrage (sadržaj uvjeta \"gdje\"):"
@@ -2738,7 +2739,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Neka svi korisnici imaju pristup ovom favoritu"
@@ -2746,7 +2747,7 @@ msgstr "Neka svi korisnici imaju pristup ovom favoritu"
msgid "The bookmark has been deleted."
msgstr "Favorit je izbrisan."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Oznaka"
@@ -2759,7 +2760,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Zamijeni postojećim favoritom istog naziva"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Favoriziraj ovaj SQL upit"
@@ -2771,7 +2772,8 @@ msgstr "Samo prikaz"
msgid "Browse distinct values"
msgstr "Pretraži prepoznatljive vrijednosti"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Pretraži strane vrijednosti"
@@ -3204,11 +3206,11 @@ msgstr "Onemogući provjere stranih znakova"
msgid "Display Features"
msgstr "Osobine prikaza"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Redoslijed prikaza:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Izvedi \"upit po primjeru\" (džoker: \"%\")"
@@ -3703,7 +3705,7 @@ msgstr "Naziv indeksa:"
msgid "Index type:"
msgstr "Vrsta indeksa:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi s indeksima tablice `%s`"
@@ -3887,7 +3889,7 @@ msgstr "Upotrijebi lokalnu ključnu riječ"
msgid "Length/Values"
msgstr "Duljina/Vrijednosti"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Broj redaka po stranici"
@@ -4192,7 +4194,7 @@ msgstr "U redu "
msgid "Open Document Text"
msgstr "Otvori tekst dokumenta"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -5031,7 +5033,7 @@ msgstr "Odaberite bazu podataka"
msgid "Select binary log to view"
msgstr "Odaberite binarni zapisnik za prikaz"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Odaberite polja (najmanje jedno):"
@@ -5108,7 +5110,7 @@ msgstr ""
msgid "Session value"
msgstr "Vrijednost sesije"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6652,7 +6654,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Vrijednost"
diff --git a/po/hu.po b/po/hu.po
index f496d7b..19c2105 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian <hu(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Keresés"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Indítás"
@@ -105,8 +105,8 @@ msgstr "Tábla megjegyzése"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Mező"
@@ -117,8 +117,9 @@ msgstr "Mező"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Típus"
@@ -307,8 +308,8 @@ msgstr "Engedélyezés"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Illesztés"
@@ -428,14 +429,14 @@ msgstr "Rendezés"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Növekvő"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Csökkenő"
@@ -466,7 +467,7 @@ msgstr "Törlés"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Vagy"
@@ -1772,7 +1773,7 @@ msgid "Sort by key"
msgstr "Kulcs szerinti rendezés"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Beállítások"
@@ -2526,7 +2527,7 @@ msgstr "Jogok hozzáadása a következő adatbázison"
msgid "Add privileges on the following table"
msgstr "Jogok hozzáadása a következő táblán:"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "adja meg a keresési feltételeket (a \"where\" feltétel törzsét):"
@@ -2738,7 +2739,7 @@ msgid "Upload to BLOB repository"
msgstr "Feltöltés a BLOB-raktárba"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára "
@@ -2748,7 +2749,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "A könyvjelző törlése megtörtént."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Név"
@@ -2761,7 +2762,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Az ugyanazon nevű könyvjelző kicserélése"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
@@ -2773,7 +2774,8 @@ msgstr "Csak megtekinthető"
msgid "Browse distinct values"
msgstr "A különböző értékek tallózása"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Az idegen kulcsok böngészése"
@@ -3216,11 +3218,11 @@ msgstr "Az idegen kulcsok ellenőrzésének letiltása"
msgid "Display Features"
msgstr "Tulajdonságok megjelenítése"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Megjelenítési sorrend:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
"Egy \"példa szerinti lekérdezés\" végrehajtása (karakterhelyettesítő: \"%\")"
@@ -3718,7 +3720,7 @@ msgstr "Index neve:"
msgid "Index type:"
msgstr "Index típusa:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probléma a(z) `%s` tábla indexeivel"
@@ -3902,7 +3904,7 @@ msgstr "LOCAL kulcsszó használata"
msgid "Length/Values"
msgstr "Hossz/Érték*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Sorok száma oldalanként"
@@ -4208,7 +4210,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Open Document szöveges dokumentum"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Kezelő"
@@ -5059,7 +5061,7 @@ msgstr "Válasszon adatbázist"
msgid "Select binary log to view"
msgstr "Válassza ki a megtekintendő bináris naplót"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Válasszon mezőket (legalább egyet):"
@@ -5140,7 +5142,7 @@ msgstr ""
msgid "Session value"
msgstr "Munkamenet értéke"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter t
he values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6686,7 +6688,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Érték"
diff --git a/po/id.po b/po/id.po
index ef4c206..e73911f 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-17 21:14+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Cari"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Go"
@@ -107,8 +107,8 @@ msgstr "Komentar tabel"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Field"
@@ -119,8 +119,9 @@ msgstr "Field"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Jenis"
@@ -308,8 +309,8 @@ msgstr "Aktif"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Penyortiran"
@@ -429,14 +430,14 @@ msgstr "Urutkan"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Urutan menaik"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Urutan menurun"
@@ -467,7 +468,7 @@ msgstr "Hapus"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Atau"
@@ -1750,7 +1751,7 @@ msgid "Sort by key"
msgstr "Urut berdasarkan kunci"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Operasi"
@@ -2476,7 +2477,7 @@ msgstr "Menambahkan hak (privileges) pada database berikut"
msgid "Add privileges on the following table"
msgstr "Menambahkan hak (privileges) pada tabel berikut"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Menambahkan kriteria pencarian (Argumen untuk WHERE-Statement):"
@@ -2685,7 +2686,7 @@ msgid "Upload to BLOB repository"
msgstr "Upload ke repositori BLOB"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Izinkan semua pengguna untuk mengakses simpanan ini"
@@ -2693,7 +2694,7 @@ msgstr "Izinkan semua pengguna untuk mengakses simpanan ini"
msgid "The bookmark has been deleted."
msgstr "Penyimpanan telah dihapus."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Judul"
@@ -2706,7 +2707,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Simpan pencarian SQL ini"
@@ -2719,7 +2720,8 @@ msgstr "Hanya melihat"
msgid "Browse distinct values"
msgstr "Menjelajahi nilai luar"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Menjelajahi nilai luar"
@@ -3148,11 +3150,11 @@ msgstr "Tanpa pemeriksaan kunci asing"
msgid "Display Features"
msgstr "Tampilkan ciri-ciri"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Urut tampilan berdasarkan:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "cari berdasarkan data contoh (\"query by example\") (wildcard: \"%\")"
@@ -3644,7 +3646,7 @@ msgstr "Nama indeks :"
msgid "Index type:"
msgstr "Tipe indeks :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`"
@@ -3829,7 +3831,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Ukuran Panjang/Nilai*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Jumlah baris per halaman"
@@ -4131,7 +4133,7 @@ msgstr "Oke"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -4982,7 +4984,7 @@ msgstr "Silakan pilih database"
msgid "Select binary log to view"
msgstr "Pilih Log binari untuk ditinjau"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Pilihan field (min. satu):"
@@ -5060,7 +5062,7 @@ msgstr ""
msgid "Session value"
msgstr "Nilai dari Session"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6469,7 +6471,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Nilai"
diff --git a/po/it.po b/po/it.po
index aec266b..07b5edf 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-11 11:19+0200\n"
"Last-Translator: Fabio <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
@@ -68,9 +68,9 @@ msgstr "Cerca"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Esegui"
@@ -108,8 +108,8 @@ msgstr "Commenti sulla tabella"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Campo"
@@ -120,8 +120,9 @@ msgstr "Campo"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -310,8 +311,8 @@ msgstr "Abilita"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Collation"
@@ -431,14 +432,14 @@ msgstr "Ordinamento"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Crescente"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Decrescente"
@@ -469,7 +470,7 @@ msgstr "Elimina"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Oppure"
@@ -1776,7 +1777,7 @@ msgid "Sort by key"
msgstr "Ordina per chiave"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opzioni"
@@ -2527,7 +2528,7 @@ msgstr "Aggiungi privilegi sul seguente database"
msgid "Add privileges on the following table"
msgstr "Aggiungi privilegi sulla seguente tabella"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Aggiungi condizioni di ricerca (corpo della clausola \"where\"):"
@@ -2737,7 +2738,7 @@ msgid "Upload to BLOB repository"
msgstr "Carica nella repository BLOB"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Permetti ad ogni utente di accedere a questo bookmark"
@@ -2745,7 +2746,7 @@ msgstr "Permetti ad ogni utente di accedere a questo bookmark"
msgid "The bookmark has been deleted."
msgstr "Il bookmark è stato cancellato."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etichetta"
@@ -2758,7 +2759,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Sostituisci segnalibro esistente se con lo stesso nome"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Aggiungi ai preferiti questa query SQL"
@@ -2770,7 +2771,8 @@ msgstr "Visualizza solo"
msgid "Browse distinct values"
msgstr "Naviga tra i valori DISTINCT"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Naviga tra i valori esterni"
@@ -3209,11 +3211,11 @@ msgstr "Disabilita i controlli sulle chiavi straniere"
msgid "Display Features"
msgstr "Mostra Caratteristiche"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Ordine di visualizzazione:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Esegui \"query da esempio\" (carattere jolly: \"%\")"
@@ -3711,7 +3713,7 @@ msgstr "Nome dell'indice :"
msgid "Index type:"
msgstr "Tipo di indice :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemi con gli indici della tabella `%s`"
@@ -3899,7 +3901,7 @@ msgstr "Usa LOCAL keyword"
msgid "Length/Values"
msgstr "Lunghezza/Set*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "record per pagina"
@@ -4208,7 +4210,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Testo nel formato Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operatore"
@@ -5059,7 +5061,7 @@ msgstr "Prego, selezionare un database"
msgid "Select binary log to view"
msgstr "Selezionare il log binario da visualizzare"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Seleziona campi (almeno uno):"
@@ -5136,7 +5138,7 @@ msgstr ""
msgid "Session value"
msgstr "Valore sessione"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6696,7 +6698,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Valore"
diff --git a/po/ja.po b/po/ja.po
index d188cbf..3ba1613 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 11:22+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: japanese <jp(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "検索"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "実行する"
@@ -107,8 +107,8 @@ msgstr "テーブルのコメント"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "フィールド"
@@ -119,8 +119,9 @@ msgstr "フィールド"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "種別"
@@ -309,8 +310,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "照合順序"
@@ -430,14 +431,14 @@ msgstr "ソート"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "昇順"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "降順"
@@ -468,7 +469,7 @@ msgstr "削除"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "または"
@@ -1745,7 +1746,7 @@ msgid "Sort by key"
msgstr "キーでソート"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "オプション"
@@ -2490,7 +2491,7 @@ msgstr "データベースに特権を追加"
msgid "Add privileges on the following table"
msgstr "テーブルに特権を追加"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "検索条件(\"where\"節の内容)を追加してください:"
@@ -2699,7 +2700,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "すべてのユーザがこのブックマークを利用できるようにする"
@@ -2707,7 +2708,7 @@ msgstr "すべてのユーザがこのブックマークを利用できるよう
msgid "The bookmark has been deleted."
msgstr "ブックマークを削除しました"
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "ラベル"
@@ -2720,7 +2721,7 @@ msgid "Replace existing bookmark of same name"
msgstr "同名のブックマークは差し替える"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "この SQL をブックマークする"
@@ -2732,7 +2733,8 @@ msgstr "表示のみ"
msgid "Browse distinct values"
msgstr "重複している値を表示しない"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "参照されている値を表示する"
@@ -3163,11 +3165,11 @@ msgstr "外部キーのチェックを無効にする"
msgid "Display Features"
msgstr "表示機能"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "表示順:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"query by example\"を実行 (ワイルドカード: \"%\")"
@@ -3660,7 +3662,7 @@ msgstr "インデックス名:"
msgid "Index type:"
msgstr "インデックスの種類:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "テーブル `%s` のインデックスに問題があります"
@@ -3844,7 +3846,7 @@ msgstr "LOCAL キーワードを使用する"
msgid "Length/Values"
msgstr "長さ/値"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "ページあたりの行数"
@@ -4145,7 +4147,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Openテキスト"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "演算子"
@@ -4970,7 +4972,7 @@ msgstr "データベースを選択してください"
msgid "Select binary log to view"
msgstr "表示するバイナリログを選択してください"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "フィールドを選択してください(最低1つ):"
@@ -5046,7 +5048,7 @@ msgstr ""
msgid "Session value"
msgstr "セッション値"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6543,7 +6545,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "値"
diff --git a/po/ka.po b/po/ka.po
index d257128..0f564d9 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "ძებნა"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "გადასვლა"
@@ -105,8 +105,8 @@ msgstr "ცხრილის კომენტარები"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "ველი"
@@ -117,8 +117,9 @@ msgstr "ველი"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "ტიპი"
@@ -307,8 +308,8 @@ msgstr "ჩართვა"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "კოლაცია"
@@ -428,14 +429,14 @@ msgstr "დალაგება"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "ზრდადობით"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "კლებადობით"
@@ -466,7 +467,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "ან"
@@ -1762,7 +1763,7 @@ msgid "Sort by key"
msgstr "Sort by key"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "პარამეტრები"
@@ -2514,7 +2515,7 @@ msgstr "პრივილეგიების დამატება შე
msgid "Add privileges on the following table"
msgstr "პრივილეგიების დამატება შემდეგი ცხრილისათვის"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Add search conditions (body of the \"where\" clause):"
@@ -2727,7 +2728,7 @@ msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Let every user access this bookmark"
@@ -2735,7 +2736,7 @@ msgstr "Let every user access this bookmark"
msgid "The bookmark has been deleted."
msgstr "The bookmark has been deleted."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Label"
@@ -2748,7 +2749,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Replace existing bookmark of same name"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Bookmark this SQL query"
@@ -2760,7 +2761,8 @@ msgstr "View only"
msgid "Browse distinct values"
msgstr "Browse distinct values"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
@@ -3199,11 +3201,11 @@ msgstr "Disable foreign key checks"
msgid "Display Features"
msgstr "Display Features"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Display order:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
@@ -3697,7 +3699,7 @@ msgstr "ინდექსის სახელი:"
msgid "Index type:"
msgstr "ინდექსის ტიპი:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
@@ -3882,7 +3884,7 @@ msgstr "Use LOCAL keyword"
msgid "Length/Values"
msgstr "Length/Values"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Number of rows per page"
@@ -4190,7 +4192,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "ოპერატორი"
@@ -5032,7 +5034,7 @@ msgstr "გთხოვთ აირჩიოთ მონაცემთა ბ
msgid "Select binary log to view"
msgstr "აირჩიეთ საჩვენებელი ორობითი ჟურნალი"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Select fields (at least one):"
@@ -5112,7 +5114,7 @@ msgstr ""
msgid "Session value"
msgstr "სესიის მნიშვნელობა"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6634,7 +6636,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "მნიშვნელობა"
diff --git a/po/ko.po b/po/ko.po
index c1df0e1..33563fc 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: korean <ko(a)li.org>\n"
@@ -62,9 +62,9 @@ msgstr "검색"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "실행"
@@ -104,8 +104,8 @@ msgstr "테이블 설명"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "필드"
@@ -116,8 +116,9 @@ msgstr "필드"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "종류"
@@ -311,8 +312,8 @@ msgstr "사용가능"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
#, fuzzy
msgid "Collation"
msgstr "생성"
@@ -434,14 +435,14 @@ msgstr "정렬"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "오름차순"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "내림차순(역순)"
@@ -472,7 +473,7 @@ msgstr "삭제"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "또는"
@@ -1737,7 +1738,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "테이블 작업"
@@ -2443,7 +2444,7 @@ msgstr "다음 데이터베이스에 권한 추가하기"
msgid "Add privileges on the following table"
msgstr "다음 테이블에 권한 추가하기"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "검색 조건 추가 (\"where\" 조건):"
@@ -2661,7 +2662,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2669,7 +2670,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "북마크를 제거했습니다."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Label"
@@ -2682,7 +2683,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "이 SQL 질의를 북마크함"
@@ -2694,7 +2695,8 @@ msgstr "View only"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3124,11 +3126,11 @@ msgstr ""
msgid "Display Features"
msgstr ""
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "출력 순서:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "다음으로 질의를 만들기 (와일드카드: \"%\")"
@@ -3615,7 +3617,7 @@ msgstr "인덱스 이름:"
msgid "Index type:"
msgstr "인덱스 종류:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3798,7 +3800,7 @@ msgstr ""
msgid "Length/Values"
msgstr "길이/값*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "페이지당 레코드 수"
@@ -4087,7 +4089,7 @@ msgstr ""
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "테이블 작업"
@@ -4920,7 +4922,7 @@ msgstr "데이터베이스를 선택하세요"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "필드 선택 (하나 이상):"
@@ -4998,7 +5000,7 @@ msgstr ""
msgid "Session value"
msgstr "세션 값"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6357,7 +6359,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "값"
diff --git a/po/lt.po b/po/lt.po
index cba8e3f..ef71ef0 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis <rytis.s(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Paieška"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Vykdyti"
@@ -107,8 +107,8 @@ msgstr "Lentelės komentarai"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Laukas"
@@ -119,8 +119,9 @@ msgstr "Laukas"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tipas"
@@ -309,8 +310,8 @@ msgstr "Įjungti"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Palyginimas"
@@ -430,14 +431,14 @@ msgstr "Rūšiuoti"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Didėjimo tvarka"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Mažėjimo tvarka"
@@ -468,7 +469,7 @@ msgstr "Pakeičiant"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Arba"
@@ -1756,7 +1757,7 @@ msgid "Sort by key"
msgstr "Rūšiuoti pagal raktą"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Nustatymai"
@@ -2472,7 +2473,7 @@ msgstr "Sukurti privilegijas šiai duombazei"
msgid "Add privileges on the following table"
msgstr "Sukurti privilegijas šiai lentelei"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Įterpkite paieškos sąlygas į \"where\" sakinį:"
@@ -2681,7 +2682,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Leisti kitiems vartotojams naudotis šia žyme"
@@ -2689,7 +2690,7 @@ msgstr "Leisti kitiems vartotojams naudotis šia žyme"
msgid "The bookmark has been deleted."
msgstr "Nuoroda ištrinta."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Nuorodos Antraštė"
@@ -2702,7 +2703,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Sukurti nuorodą"
@@ -2714,7 +2715,8 @@ msgstr "Peržiūra"
msgid "Browse distinct values"
msgstr "Peržiūrėti skirtingas reikšmes"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Naršyti išorines reikšmes"
@@ -3151,11 +3153,11 @@ msgstr "Atsisakyti išorinių raktų tikrinimo"
msgid "Display Features"
msgstr "Išvedimo sąvybės"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Atvaizdavimo tvarka:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Vykdyti \"užklausą pagal pavyzdį\" (pakaitos simbolis: \"%\")"
@@ -3646,7 +3648,7 @@ msgstr "Indekso vardas :"
msgid "Index type:"
msgstr "Indekso tipas :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Iškilo problemos su `%s` lentelės indeksais"
@@ -3832,7 +3834,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Ilgis/reikšmės*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Eilučių skaičius puslapyje"
@@ -4133,7 +4135,7 @@ msgstr "Gerai"
msgid "Open Document Text"
msgstr "Open Document tekstas"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operatorius"
@@ -4976,7 +4978,7 @@ msgstr "Pasirinkite duombazę"
msgid "Select binary log to view"
msgstr "Pasirinkite binarinį logą peržiūrai"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Pasirinkite laukus (nors vieną)"
@@ -5051,7 +5053,7 @@ msgstr ""
msgid "Session value"
msgstr "Sesijos reikšmė"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6470,7 +6472,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Reikšmė"
diff --git a/po/lv.po b/po/lv.po
index 704d13e..76d2fbb 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Meklēt"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Aiziet!"
@@ -105,8 +105,8 @@ msgstr "Komentārs tabulai"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Lauks"
@@ -117,8 +117,9 @@ msgstr "Lauks"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tips"
@@ -308,8 +309,8 @@ msgstr "Ieslēgts"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Izkārtojumi"
@@ -429,14 +430,14 @@ msgstr "Kārtošana"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Augošā secībā"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Dilstošā secībā"
@@ -467,7 +468,7 @@ msgstr "Dzēst"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Vai"
@@ -1749,7 +1750,7 @@ msgid "Sort by key"
msgstr "Kārtot pēc atslēgas"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Darbības"
@@ -2459,7 +2460,7 @@ msgstr "Pievienot privilēģijas uz sekojošo datubāzi"
msgid "Add privileges on the following table"
msgstr "Pievienot privilēģijas uz sekojošo tabulu"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Pievienot meklēšanas nosacījumus (\"where\" izteiksmes ķermenis):"
@@ -2672,7 +2673,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
@@ -2680,7 +2681,7 @@ msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
msgid "The bookmark has been deleted."
msgstr "Ieraksts tika dzēsts."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Nosaukums"
@@ -2693,7 +2694,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Saglabāt šo SQL vaicājumu"
@@ -2706,7 +2707,8 @@ msgstr "Tikai apskatīt"
msgid "Browse distinct values"
msgstr "Pārlūkot ārējās vērtības"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Pārlūkot ārējās vērtības"
@@ -3142,11 +3144,11 @@ msgstr "Nepārbaudīt ārējās atslēgas"
msgid "Display Features"
msgstr "Rādīt iespējas"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Attēlošanas secība:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Izpildīt \"vaicājumu pēc parauga\" (aizstājējzīme: \"%\")"
@@ -3638,7 +3640,7 @@ msgstr "Indeksa nosaukums :"
msgid "Index type:"
msgstr "Indeksa tips :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problēmas ar indeksiem tabulā `%s`"
@@ -3822,7 +3824,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Garums/Vērtības*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Rindu skaits vienā lapā"
@@ -4116,7 +4118,7 @@ msgstr "Labi"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operators"
@@ -4961,7 +4963,7 @@ msgstr "Lūdzu izvēlieties datubāzi"
msgid "Select binary log to view"
msgstr "Izvēlieties bināro log-failu apskatei"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Izvēlieties laukus (kaut vienu):"
@@ -5037,7 +5039,7 @@ msgstr ""
msgid "Session value"
msgstr "Sesijas vērtība"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6434,7 +6436,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Vērtība"
diff --git a/po/mk.po b/po/mk.po
index f6dad49..d5c2a50 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: macedonian_cyrillic <mk(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Пребарување"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -105,8 +105,8 @@ msgstr "Коментар на табелата"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Поле"
@@ -117,8 +117,9 @@ msgstr "Поле"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -308,8 +309,8 @@ msgstr "Овозможено"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Подредување"
@@ -429,14 +430,14 @@ msgstr "Подредуваање"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Растечки редослед"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Опаѓачки редослед"
@@ -467,7 +468,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "или"
@@ -1753,7 +1754,7 @@ msgid "Sort by key"
msgstr "Подредување по клуч"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Операции"
@@ -2484,7 +2485,7 @@ msgstr "Додади привилегии на следната база"
msgid "Add privileges on the following table"
msgstr "Додади привилегии на следната табела"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Додади услови за пребарување (делот \"WHERE\" од упитот):"
@@ -2697,7 +2698,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "дади дозвола на секој корисник да пристапува на овој упит."
@@ -2705,7 +2706,7 @@ msgstr "дади дозвола на секој корисник да прист
msgid "The bookmark has been deleted."
msgstr "Маркерот е избришан."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Назив"
@@ -2718,7 +2719,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Запамти SQL упит"
@@ -2731,7 +2732,8 @@ msgstr "Види само"
msgid "Browse distinct values"
msgstr "Прегледни ги надворешните вредности"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Прегледни ги надворешните вредности"
@@ -3164,11 +3166,11 @@ msgstr "Исклучи проверка на надворешни клучеви
msgid "Display Features"
msgstr "Прикажи својства"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Редослед на приказ:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Направи \"упит по пример\" (џокер знак: \"%\")"
@@ -3663,7 +3665,7 @@ msgstr "Име на клуч :"
msgid "Index type:"
msgstr "Тип на клуч :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирање на табелата `%s`"
@@ -3847,7 +3849,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Должина/Вредност*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Број на записи на страница"
@@ -4148,7 +4150,7 @@ msgstr "ОК"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Оператор"
@@ -4995,7 +4997,7 @@ msgstr "Изберете база на податоци"
msgid "Select binary log to view"
msgstr "Изберете бинарен дневник за преглед"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Избери полиња (најмалку едно)"
@@ -5071,7 +5073,7 @@ msgstr ""
msgid "Session value"
msgstr "Вредност на сесијата"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6476,7 +6478,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Вредност"
diff --git a/po/mn.po b/po/mn.po
index 3a99f6b..e66a68d 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn(a)li.org>\n"
@@ -64,9 +64,9 @@ msgstr "Хайх"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Яв"
@@ -104,8 +104,8 @@ msgstr "Хүснэгтийн тайлбар"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Талбар"
@@ -116,8 +116,9 @@ msgstr "Талбар"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Төрөл"
@@ -306,8 +307,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Жишилт"
@@ -427,14 +428,14 @@ msgstr "Эрэмбэлэх"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Өсөхөөр"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Буурахаар"
@@ -465,7 +466,7 @@ msgstr "Устгах"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Эсвэл"
@@ -1739,7 +1740,7 @@ msgid "Sort by key"
msgstr "Түлхүүрээр эрэмбэлэх"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Сонголтууд"
@@ -2454,7 +2455,7 @@ msgstr "Дараах өгөгдлийн санд онцгой эрх нэмэх"
msgid "Add privileges on the following table"
msgstr "Дараах хүснэгтэд онцгой эрх нэмэх"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Хайлтын нөхцөл нэмэх(\"where\" хэсгийн бие):"
@@ -2663,7 +2664,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
@@ -2671,7 +2672,7 @@ msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид ханда
msgid "The bookmark has been deleted."
msgstr "Тэмдэглэгээ устгагдсан."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Хаяг"
@@ -2684,7 +2685,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
@@ -2696,7 +2697,8 @@ msgstr "Зөвхөн харах"
msgid "Browse distinct values"
msgstr "Онцгой утгуудыг харах"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
@@ -3122,11 +3124,11 @@ msgstr "Гадаад түлхүүр шалгалтыг хаах"
msgid "Display Features"
msgstr "Онцлог харуулах"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Харуулах эрэмбэ:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"жишээ асуулт\" хийх (тэмдэгт: \"%\")"
@@ -3614,7 +3616,7 @@ msgstr "Индексийн нэр :"
msgid "Index type:"
msgstr "Индексийн төрөл :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Хүснэгт `%s`-ийн индекс асуудалтай"
@@ -3796,7 +3798,7 @@ msgstr "LOCAL түлхүүр үг хэрэглэх"
msgid "Length/Values"
msgstr "Урт/Утгууд*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Хуудас дахь мөрийн тоо"
@@ -4093,7 +4095,7 @@ msgstr "Бэлэн"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Оператор"
@@ -4919,7 +4921,7 @@ msgstr "Өгөгдлийн сан сонго"
msgid "Select binary log to view"
msgstr "Харах хоёртын log сонго"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Талбар сонгох (ядаж нэгийг):"
@@ -4993,7 +4995,7 @@ msgstr "
"
msgid "Session value"
msgstr "Сессон утга"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6430,7 +6432,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Утга"
diff --git a/po/ms.po b/po/ms.po
index 7b0d528..75c4776 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms(a)li.org>\n"
@@ -62,9 +62,9 @@ msgstr "Cari"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Pergi"
@@ -104,8 +104,8 @@ msgstr "Komen jadual"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Medan"
@@ -116,8 +116,9 @@ msgstr "Medan"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Jenis"
@@ -309,8 +310,8 @@ msgstr "Membenarkan"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr ""
@@ -431,14 +432,14 @@ msgstr "Isih"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Menaik"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Menurun"
@@ -469,7 +470,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Atau"
@@ -1742,7 +1743,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Operasi"
@@ -2449,7 +2450,7 @@ msgstr ""
msgid "Add privileges on the following table"
msgstr ""
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Tambah kriteria carian (badan bagi klausa \"where\"):"
@@ -2666,7 +2667,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2674,7 +2675,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "TandaBuku telah dipadam."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Label"
@@ -2687,7 +2688,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "andabuku kueri-SQL ini"
@@ -2699,7 +2700,8 @@ msgstr "Paparan sahaja"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3128,11 +3130,11 @@ msgstr ""
msgid "Display Features"
msgstr "Paparkan Ciri-ciri"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Turutan paparan:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Lakukan \"kueri melalui contoh\" (wilidcard: \"%\")"
@@ -3620,7 +3622,7 @@ msgstr "Nama indeks :"
msgid "Index type:"
msgstr "Jenis indeks :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3804,7 +3806,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Panjang/Nilai*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Bilangan baris per halaman"
@@ -4095,7 +4097,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "Operasi"
@@ -4929,7 +4931,7 @@ msgstr "Sila pilih pangkalan data"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Pilih medan (sekurang-kurangnya satu):"
@@ -5005,7 +5007,7 @@ msgstr ""
msgid "Session value"
msgstr "Nilai Sessi"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6374,7 +6376,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Nilai"
diff --git a/po/nb.po b/po/nb.po
index 5fd8626..b0bb147 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-05-06 08:35+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\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"
@@ -66,9 +66,9 @@ msgstr "Søk"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Utfør"
@@ -106,8 +106,8 @@ msgstr "Tabellkommentarer"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Felt"
@@ -118,8 +118,9 @@ msgstr "Felt"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -302,8 +303,8 @@ msgstr "Slå på"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Sammenligning"
@@ -423,14 +424,14 @@ msgstr "Sorter"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Stigende"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Synkende"
@@ -461,7 +462,7 @@ msgstr "Slett"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Eller"
@@ -1166,7 +1167,6 @@ msgstr ""
#: libraries/common.inc.php:594
#, php-format
-#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s"
@@ -1688,7 +1688,7 @@ msgid "Sort by key"
msgstr "Sorter etter nøkkel"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Innstillinger"
@@ -2435,7 +2435,7 @@ msgstr "Legg til privilegier til følgende database"
msgid "Add privileges on the following table"
msgstr "Legg til privilegier til følgende tabell"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Legg til søkekriterier (innhold i \"where\"-setningen):"
@@ -2645,7 +2645,7 @@ msgid "Upload to BLOB repository"
msgstr "Last opp til BLOB lager"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "La alle brukere ha adgang til dette bokmerket"
@@ -2653,7 +2653,7 @@ msgstr "La alle brukere ha adgang til dette bokmerket"
msgid "The bookmark has been deleted."
msgstr "Bokmerket har blitt slettet."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Navn"
@@ -2666,7 +2666,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Erstatt eksisterende bokmerke med samme navn"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Lagre denne SQL-spørringen"
@@ -2678,7 +2678,8 @@ msgstr "Bare se"
msgid "Browse distinct values"
msgstr "Se gjennom distinkte verdier"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Se de eksterne verdiene"
@@ -3112,11 +3113,11 @@ msgstr "Slå av kontroll av fremmednøkler"
msgid "Display Features"
msgstr "Vis egenskaper"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Visningsrekkefølge:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Utfør en \"spørring ved eksempel\" (jokertegn: \"%\")"
@@ -3614,7 +3615,7 @@ msgstr "Indeksnavn :"
msgid "Index type:"
msgstr "Indekstype :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemer med indeksene i tabellen `%s`"
@@ -3802,7 +3803,7 @@ msgstr "Bruk LOCAL nøkkelord"
msgid "Length/Values"
msgstr "Lengde/Sett*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Antall poster per side"
@@ -4107,7 +4108,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Open Document tekst"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -4960,7 +4961,7 @@ msgstr "Vennligst velg en database"
msgid "Select binary log to view"
msgstr "Velg binærlogg for visning"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Velg felt (minst ett):"
@@ -5040,7 +5041,7 @@ msgstr ""
msgid "Session value"
msgstr "Økts verdi"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6571,7 +6572,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Verdi"
@@ -6686,7 +6687,6 @@ msgstr "Opprett tabell"
#: pdf_schema.php:637
#, php-format
-#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
msgstr "Tabellen %s eksisterer ikke!"
@@ -6700,7 +6700,6 @@ msgid "Jump to database"
msgstr "Gå til database"
#: server_privileges.php:263 server_privileges.php:264
-#| msgid "None"
msgctxt "None privileges"
msgid "None"
msgstr "Ingen"
@@ -6710,7 +6709,6 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte"
#: server_privileges.php:1998
-#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
msgstr "Ingen"
@@ -8525,7 +8523,6 @@ msgid "Foreign key constraint"
msgstr "Fremmednøkkelbegrensning"
#: tbl_structure.php:362
-#| msgid "None"
msgctxt "None for default"
msgid "None"
msgstr "Ingen"
diff --git a/po/nl.po b/po/nl.po
index 4ec2c7f..68e8c61 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-26 15:46+0200\n"
"Last-Translator: <rink(a)initfour.nl>\n"
"Language-Team: dutch <nl(a)li.org>\n"
@@ -66,9 +66,9 @@ msgstr "Zoeken"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Start"
@@ -106,8 +106,8 @@ msgstr "Tabelopmerkingen"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Veld"
@@ -118,8 +118,9 @@ msgstr "Veld"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Type"
@@ -308,8 +309,8 @@ msgstr "Inschakelen"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Collatie"
@@ -429,14 +430,14 @@ msgstr "Sorteren"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Oplopend"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Aflopend"
@@ -467,7 +468,7 @@ msgstr "Verwijder"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Of"
@@ -1767,7 +1768,7 @@ msgid "Sort by key"
msgstr "Sorteren op sleutel"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opties"
@@ -2527,7 +2528,7 @@ msgstr "Voeg privileges toe aan de volgende database"
msgid "Add privileges on the following table"
msgstr "Voeg privileges toe aan de volgende tabel"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Zoek condities toevoegen (het \"where\" gedeelte van de query):"
@@ -2738,7 +2739,7 @@ msgid "Upload to BLOB repository"
msgstr "Upload naar BLOB bewaarplaats"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Geef elke gebruiker toegang tot deze bookmark"
@@ -2746,7 +2747,7 @@ msgstr "Geef elke gebruiker toegang tot deze bookmark"
msgid "The bookmark has been deleted."
msgstr "De boekenlegger (Bookmark) is verwijderd."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Label"
@@ -2759,7 +2760,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Bookmark met dezelfde naam overschrijven"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Sla deze SQL-query op"
@@ -2771,7 +2772,8 @@ msgstr "Alleen bekijken"
msgid "Browse distinct values"
msgstr "Bekijk unieke waarden"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Bekijk vreemde waardes"
@@ -3212,11 +3214,11 @@ msgstr "controle op vreemde sleutels uitschakelen"
msgid "Display Features"
msgstr "Toon Opties"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Weergave volgorde:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Voer een query op basis van een vergelijking uit (wildcard: \"%\")"
@@ -3713,7 +3715,7 @@ msgstr "Index naam :"
msgid "Index type:"
msgstr "Index type :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemen met de index(en) van de tabel `%s`"
@@ -3898,7 +3900,7 @@ msgstr "Gebruik het LOCAL sleutelwoord"
msgid "Length/Values"
msgstr "Lengte/Waardes*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "records per pagina"
@@ -4207,7 +4209,7 @@ msgstr "Correct"
msgid "Open Document Text"
msgstr "Open Document Tekst"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -5072,7 +5074,7 @@ msgstr "Selecteer A.U.B. een database"
msgid "Select binary log to view"
msgstr "Selecteer de te bekijken binaire log"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Selecteer velden (tenminste 1):"
@@ -5152,7 +5154,7 @@ msgstr ""
msgid "Session value"
msgstr "Sessievariabelen"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6703,7 +6705,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Waarde"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index cc318ee..15b70d9 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr ""
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr ""
@@ -107,8 +107,8 @@ msgstr ""
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr ""
@@ -119,8 +119,9 @@ msgstr ""
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr ""
@@ -303,8 +304,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr ""
@@ -424,14 +425,14 @@ msgstr ""
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr ""
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr ""
@@ -462,7 +463,7 @@ msgstr ""
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr ""
@@ -1658,7 +1659,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr ""
@@ -2354,7 +2355,7 @@ msgstr ""
msgid "Add privileges on the following table"
msgstr ""
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
@@ -2563,7 +2564,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2571,7 +2572,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr ""
@@ -2584,7 +2585,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr ""
@@ -2596,7 +2597,8 @@ msgstr ""
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3014,11 +3016,11 @@ msgstr ""
msgid "Display Features"
msgstr ""
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr ""
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
@@ -3498,7 +3500,7 @@ msgstr ""
msgid "Index type:"
msgstr ""
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, possible-php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3677,7 +3679,7 @@ msgstr ""
msgid "Length/Values"
msgstr ""
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr ""
@@ -3960,7 +3962,7 @@ msgstr ""
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr ""
@@ -4774,7 +4776,7 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr ""
@@ -4846,7 +4848,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6189,7 +6191,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr ""
diff --git a/po/pl.po b/po/pl.po
index 5acf0e9..d719997 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish <pl(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Szukaj"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Wykonaj"
@@ -105,8 +105,8 @@ msgstr "Komentarze tabeli"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Pole"
@@ -117,8 +117,9 @@ msgstr "Pole"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -307,8 +308,8 @@ msgstr "Włącz"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Metoda porównywania napisów"
@@ -428,14 +429,14 @@ msgstr "Sortuj"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Rosnąco"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Malejąco"
@@ -466,7 +467,7 @@ msgstr "Usuń"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "lub"
@@ -1770,7 +1771,7 @@ msgid "Sort by key"
msgstr "Sortuj wg klucza"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opcje"
@@ -2515,7 +2516,7 @@ msgstr "Dodaj uprawnienia dla następującej bazy danych"
msgid "Add privileges on the following table"
msgstr "Dodaj uprawnienia dla następującej tabeli"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj warunki przeszukiwania (warunek dla \"where\"):"
@@ -2728,7 +2729,7 @@ msgid "Upload to BLOB repository"
msgstr "Wrzuć do repozytorium BLOBów"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Pozwól na dostęp wszystkim użytkownikom"
@@ -2736,7 +2737,7 @@ msgstr "Pozwól na dostęp wszystkim użytkownikom"
msgid "The bookmark has been deleted."
msgstr "Zapamiętane zapytanie SQL zostało usunięte."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Nazwa"
@@ -2749,7 +2750,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Pamiętaj zapytanie SQL"
@@ -2761,7 +2762,8 @@ msgstr "Tylko pokaż"
msgid "Browse distinct values"
msgstr "Przeglądaj różne wartości"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Przeglądaj zewnętrzne wartości"
@@ -3197,11 +3199,11 @@ msgstr "Wyłącz sprawdzanie kluczy zewnętrznych"
msgid "Display Features"
msgstr "Funkcje wyświetlania"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Kolejność wyświetlania:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Wykonaj \"zapytanie przez przykład\" (znak globalny: \"%\")"
@@ -3698,7 +3700,7 @@ msgstr "Nazwa indeksu :"
msgid "Index type:"
msgstr "Rodzaj indeksu :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemy z indeksami tabeli `%s`"
@@ -3882,7 +3884,7 @@ msgstr "Użyj słowa kluczowego LOCAL"
msgid "Length/Values"
msgstr "Długość/Wartości*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "rekordów na stronie"
@@ -4186,7 +4188,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Tekst w formacie Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -5033,7 +5035,7 @@ msgstr "Proszę wybrać bazę danych"
msgid "Select binary log to view"
msgstr "Wybierz dziennik binarny do podglądu"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Wybór pól (co najmniej jedno):"
@@ -5109,7 +5111,7 @@ msgstr ""
msgid "Session value"
msgstr "Wartość sesji"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6649,7 +6651,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Wartość"
diff --git a/po/pt.po b/po/pt.po
index 7dd2d1d..b1f4920 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese <pt(a)li.org>\n"
@@ -62,9 +62,9 @@ msgstr "Pesquisar"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Executa"
@@ -102,8 +102,8 @@ msgstr "Comentários da tabela"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Campo"
@@ -114,8 +114,9 @@ msgstr "Campo"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -308,8 +309,8 @@ msgstr "Activado"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
#, fuzzy
msgid "Collation"
msgstr "Criação"
@@ -430,14 +431,14 @@ msgstr "Ordenação"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Descendente"
@@ -468,7 +469,7 @@ msgstr "Elim."
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Ou"
@@ -1754,7 +1755,7 @@ msgid "Sort by key"
msgstr "Ordenar por chave"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Operações"
@@ -2463,7 +2464,7 @@ msgstr "Adicionar privilégios na base de dados seguinte"
msgid "Add privileges on the following table"
msgstr "Todos privilégios na tabela seguinte"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Condição de Pesquisa (Complemento da cláusula \"where\"):"
@@ -2681,7 +2682,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Deixar todos os utilizadores acederem a este marcador"
@@ -2689,7 +2690,7 @@ msgstr "Deixar todos os utilizadores acederem a este marcador"
msgid "The bookmark has been deleted."
msgstr "Marcador apagado com sucesso."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etiqueta"
@@ -2702,7 +2703,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Marcar este comando SQL"
@@ -2714,7 +2715,8 @@ msgstr "Ver apenas"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3146,11 +3148,11 @@ msgstr ""
msgid "Display Features"
msgstr "Mostrar Características"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Ordem de visualização:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Faça uma \"pesquisa por formulário\" (caractere universal: \"%\")"
@@ -3646,7 +3648,7 @@ msgstr "Nome do Índice :"
msgid "Index type:"
msgstr "Tipo de Índice :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3831,7 +3833,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Tamanho/Valores*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Número de registos por página"
@@ -4124,7 +4126,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "Operações"
@@ -4971,7 +4973,7 @@ msgstr "Por favor seleccione uma base de dados"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Seleccione os campos (no mínimo 1)"
@@ -5047,7 +5049,7 @@ msgstr ""
msgid "Session value"
msgstr "Valor de sessão"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6422,7 +6424,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Valor"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 8f1a4da..27d4a46 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-21 05:17+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Procurar"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Executar"
@@ -107,8 +107,8 @@ msgstr "Comentários da tabela"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Campo"
@@ -119,8 +119,9 @@ msgstr "Campo"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tipo"
@@ -309,8 +310,8 @@ msgstr "Habilitar"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Collation"
@@ -430,14 +431,14 @@ msgstr "Ordenar"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ascendente"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Descendente"
@@ -468,7 +469,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Ou"
@@ -1759,7 +1760,7 @@ msgid "Sort by key"
msgstr "Ordenar pela chave"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opções"
@@ -2488,7 +2489,7 @@ msgstr "Adicionar privilégios nas seguintes Banco de Dados"
msgid "Add privileges on the following table"
msgstr "Adicionar privilégios nas seguintes tabelas"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Condição de Pesquisa (complemento da cláusula \"onde\"):"
@@ -2697,7 +2698,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Deixar qualquer usuário acessar esse marcador"
@@ -2705,7 +2706,7 @@ msgstr "Deixar qualquer usuário acessar esse marcador"
msgid "The bookmark has been deleted."
msgstr "O marcador foi removido."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Nome"
@@ -2718,7 +2719,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Substituir marcador de mesmo nome existente"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Gravar essa consulta SQL"
@@ -2730,7 +2731,8 @@ msgstr "Apenas visualizar"
msgid "Browse distinct values"
msgstr "Navegador distingue valores"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Visualizar valores estrangeiros"
@@ -3164,11 +3166,11 @@ msgstr "Desabilitar verificação de chaves estrangeiras"
msgid "Display Features"
msgstr "Exibir recursos"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Ordenado por:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Faça uma \"consulta por exemplo\" (coringa: \"%\")"
@@ -3663,7 +3665,7 @@ msgstr "Nome do índice:"
msgid "Index type:"
msgstr "Tipo de índice:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problemas com o índice da tabela `%s`"
@@ -3846,7 +3848,7 @@ msgstr "Usar palavra-chave LOCAL"
msgid "Length/Values"
msgstr "Tamanho/Definir*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "registros por página"
@@ -4152,7 +4154,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Abrir Documento de Texto"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operador"
@@ -4990,7 +4992,7 @@ msgstr "Selecionar um Banco de Dados"
msgid "Select binary log to view"
msgstr "Selecionar log binário para exibir"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Selecionar os campos (no mínimo 1)"
@@ -5066,7 +5068,7 @@ msgstr ""
msgid "Session value"
msgstr "Valor da sessão"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6607,7 +6609,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Valor"
diff --git a/po/ro.po b/po/ro.po
index 76d6f70..c02893c 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-13 00:41+0200\n"
"Last-Translator: <ronaldinia(a)yahoo.com>\n"
"Language-Team: romanian <ro(a)li.org>\n"
@@ -68,9 +68,9 @@ msgstr "Caută"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Execută"
@@ -108,8 +108,8 @@ msgstr "Comentarii tabel"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Cîmp"
@@ -120,8 +120,9 @@ msgstr "Cîmp"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tip"
@@ -310,8 +311,8 @@ msgstr "Activează"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Interclasare"
@@ -431,14 +432,14 @@ msgstr "Sortare"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Crescătoare"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Descrescător"
@@ -469,7 +470,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Sau"
@@ -1768,7 +1769,7 @@ msgid "Sort by key"
msgstr "Sortare după cheie"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opțiuni"
@@ -2522,7 +2523,7 @@ msgstr "Adaugă drepturi la baza de date următoare"
msgid "Add privileges on the following table"
msgstr "Adaugă drepturi la următorul tabel"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Adaugă condiție de căutare (parte a comenzii \"where\"):"
@@ -2735,7 +2736,7 @@ msgid "Upload to BLOB repository"
msgstr "Upload to BLOB repository"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
@@ -2743,7 +2744,7 @@ msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
msgid "The bookmark has been deleted."
msgstr "Eticheta a fost ștearsă."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etichetă"
@@ -2756,7 +2757,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Înlocuiește semnul de carte cu același nume"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Pune semn de carte la această comandă SQL"
@@ -2768,7 +2769,8 @@ msgstr "Numai vizualizare"
msgid "Browse distinct values"
msgstr "Răsfoiește valori distincte"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Caută printre valori necunoscute"
@@ -3211,11 +3213,11 @@ msgstr "Dezactivare verificări de cheie străine"
msgid "Display Features"
msgstr "Arată facilitățile"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Ordine de afișare:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Execută o interogare prin exemplu (metacaracter: \"%\")"
@@ -3708,7 +3710,7 @@ msgstr "Nume index :"
msgid "Index type:"
msgstr "Tip index :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Probleme cu indexul tabelului `%s`"
@@ -3892,7 +3894,7 @@ msgstr "Folosește cuvîntul-cheie LOCAL"
msgid "Length/Values"
msgstr "Lungime/Setare"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Numărul de înregistrări pe pagină"
@@ -4200,7 +4202,7 @@ msgstr "E bine"
msgid "Open Document Text"
msgstr "Text Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operand"
@@ -5048,7 +5050,7 @@ msgstr "Selectați baza de date"
msgid "Select binary log to view"
msgstr "Selectați jurnalul binar pentru vizualizare"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Selectează cîmpurile (cel puțin unul):"
@@ -5124,7 +5126,7 @@ msgstr ""
msgid "Session value"
msgstr "Valoare sesiune"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6650,7 +6652,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Valoare"
diff --git a/po/ru.po b/po/ru.po
index 896b057..bf2324b 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:23+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: russian <ru(a)li.org>\n"
@@ -68,9 +68,9 @@ msgstr "Поиск"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -108,8 +108,8 @@ msgstr "Комментарий к таблице"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Поле"
@@ -120,8 +120,9 @@ msgstr "Поле"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -310,8 +311,8 @@ msgstr "Включить"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Сравнение"
@@ -431,14 +432,14 @@ msgstr "Отсортировать"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "По возрастанию"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "По убыванию"
@@ -469,7 +470,7 @@ msgstr "Удалить"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Или"
@@ -1765,7 +1766,7 @@ msgid "Sort by key"
msgstr "Сортировать по индексу"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Параметры"
@@ -2523,7 +2524,7 @@ msgstr "Добавить привилегии на следующую базу"
msgid "Add privileges on the following table"
msgstr " Добавить привилегии на следующую таблицу"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Добавить условия поиска (тело для условия \"WHERE\"):"
@@ -2735,7 +2736,7 @@ msgid "Upload to BLOB repository"
msgstr "Загрузить в хранилище BLOB данных"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Доступна для всех пользователей"
@@ -2743,7 +2744,7 @@ msgstr "Доступна для всех пользователей"
msgid "The bookmark has been deleted."
msgstr "Закладка удалена."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Метка"
@@ -2756,7 +2757,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Заменить существующую с таким же именем"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Создание закладки"
@@ -2768,7 +2769,8 @@ msgstr "Просмотр"
msgid "Browse distinct values"
msgstr "Обзор уникальных значений"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Обзор внешних значений"
@@ -3210,11 +3212,11 @@ msgstr "Отключить проверку внешних ключей"
msgid "Display Features"
msgstr "Показать возможности"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Сортировка:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Выполнить \"запрос по образцу\" (групповой символ: \"%\")"
@@ -3706,7 +3708,7 @@ msgstr "Имя индекса :"
msgid "Index type:"
msgstr "Тип индекса :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблемы с индексами таблицы `%s`"
@@ -3892,7 +3894,7 @@ msgstr "Использовать ключевое слово LOCAL"
msgid "Length/Values"
msgstr "Длина/значения"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Количество строк на странице"
@@ -4199,7 +4201,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "OpenDocument текст"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Оператор"
@@ -5062,7 +5064,7 @@ msgstr "Выберите базу данных"
msgid "Select binary log to view"
msgstr "Выберите бинарный журнал для просмотра"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Выберите поля (не менее одного):"
@@ -5142,7 +5144,7 @@ msgstr ""
msgid "Session value"
msgstr "Значение сессии"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6704,7 +6706,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structu
re.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Значение"
diff --git a/po/si.po b/po/si.po
index b5cbdc3..7a49a45 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: sinhala <si(a)li.org>\n"
@@ -66,9 +66,9 @@ msgstr "සෙවීම"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "යන්න"
@@ -106,8 +106,8 @@ msgstr "වගු විස්තර"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "ක්ෂේත්රය"
@@ -118,8 +118,9 @@ msgstr "ක්ෂේත්රය"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "වර්ගය"
@@ -309,8 +310,8 @@ msgstr "සක්රිය කරන් ලද"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Collation"
@@ -430,14 +431,14 @@ msgstr "තෝරනවා"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "ආරෝහන"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "අවරෝහන"
@@ -468,7 +469,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "හෝ"
@@ -1757,7 +1758,7 @@ msgid "Sort by key"
msgstr "යතුර අනුව තෝරන්න"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "මෙහෙයුම්"
@@ -2485,7 +2486,7 @@ msgstr "පහත දත්තගබඩාවට වරප්රසාද එ
msgid "Add privileges on the following table"
msgstr "පහත වගුවට වරප්රසාද එක් කරන්න"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "සෙවීම් කොන්දේසි එක් කරන්න (\"where\" වාක්යාංශය යටතේ):"
@@ -2698,7 +2699,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
@@ -2706,7 +2707,7 @@ msgstr "සියලු භාවිතා කරන්නනට මෙම ප
msgid "The bookmark has been deleted."
msgstr "පොත් සලකුණ ඉවත් කරන ලදි."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "ලේබලය"
@@ -2719,7 +2720,7 @@ msgid "Replace existing bookmark of same name"
msgstr "එකම නම ඇති පොත් සලකුණ ප්රතිස්ථාපනය කරන්න"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
@@ -2731,7 +2732,8 @@ msgstr "දර්ශනය කිරීම පමණි"
msgid "Browse distinct values"
msgstr "එකිනෙකට වෙනස් අගයන් බ්රවුස් කරන්න"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "අන්ය අගයන් බ්රවුස් කරන්න"
@@ -3164,11 +3166,11 @@ msgstr "අන්ය යතුරු පරීක්ෂා අක්රි
msgid "Display Features"
msgstr "දර්ශන ලක්ෂණ"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "දර්ශනය කිරීමේ අනුපිළිවෙල:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Do a \"query by example\" (wildcard: \"%\")"
@@ -3663,7 +3665,7 @@ msgstr "සූචියේ නම:"
msgid "Index type:"
msgstr "සූචි වර්ගය:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problems with indexes of table `%s`"
@@ -3847,7 +3849,7 @@ msgstr "Use LOCAL keyword"
msgid "Length/Values"
msgstr "දිග/අගයන්"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "පිටුවකට පේළි ගණන"
@@ -4153,7 +4155,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "මෙහෙයවනය"
@@ -4993,7 +4995,7 @@ msgstr "කරුණාකර දත්තගබඩාවක් තෝරන්
msgid "Select binary log to view"
msgstr "පෙන්වීම සඳහා ද්වීමය ලොගය තෝරන්න"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Select fields (at least one):"
@@ -5067,7 +5069,7 @@ msgstr ""
msgid "Session value"
msgstr "සැසි අගය"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6584,7 +6586,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Value"
diff --git a/po/sk.po b/po/sk.po
index 8b44c1b..b3f1bbd 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: slovak <sk(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Hľadať"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Vykonaj"
@@ -107,8 +107,8 @@ msgstr "Komentár k tabuľke"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Pole"
@@ -119,8 +119,9 @@ msgstr "Pole"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -311,8 +312,8 @@ msgstr "Zapnuté"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Zotriedenie"
@@ -432,14 +433,14 @@ msgstr "Triediť"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Vzostupne"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Zostupne"
@@ -470,7 +471,7 @@ msgstr "Zmazať"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "alebo"
@@ -1762,7 +1763,7 @@ msgid "Sort by key"
msgstr "Zoradiť podľa kľúča"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Nastavenia"
@@ -2485,7 +2486,7 @@ msgstr "Pridať oprávnenia pre nasledujúcu databázu"
msgid "Add privileges on the following table"
msgstr "Pridať oprávnenia pre nasledujúcu tabuľku"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Pridať vyhľadávacie parametre (obsah dopytu po \"where\" príkaze):"
@@ -2697,7 +2698,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Dovoliť používať túto položku všetkým používateľom"
@@ -2705,7 +2706,7 @@ msgstr "Dovoliť používať túto položku všetkým používateľom"
msgid "The bookmark has been deleted."
msgstr "Záznam z obľúbených bol zmazaný."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Názov"
@@ -2718,7 +2719,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Prepísať existujúci príkaz s rovnakým menom"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Pridať tento SQL dopyt do obľúbených"
@@ -2730,7 +2731,8 @@ msgstr "Iba prezrieť"
msgid "Browse distinct values"
msgstr "Prechádzať iné hodnoty"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Prejsť hodnoty cudzích kľúčov"
@@ -3166,11 +3168,11 @@ msgstr "Vypnúť kontrolu cudzích kľúčov"
msgid "Display Features"
msgstr "Zobraziť vlastnosti"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Zobraziť zoradené:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Vykonať \"dopyt podľa príkladu\" (nahradzujúci znak: \"%\")"
@@ -3663,7 +3665,7 @@ msgstr "Meno indexu :"
msgid "Index type:"
msgstr "Typ indexu :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problémy s indexami v tabuľke `%s`"
@@ -3847,7 +3849,7 @@ msgstr "Použiť kľúčové slovo LOCAL"
msgid "Length/Values"
msgstr "Dĺžka/Nastaviť*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "záznamov na stránku"
@@ -4151,7 +4153,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operátor"
@@ -5001,7 +5003,7 @@ msgstr "Prosím vyberte si databázu"
msgid "Select binary log to view"
msgstr "Vyberte binárny log na zobrazenie"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Zvoliť pole (najmenej jedno):"
@@ -5077,7 +5079,7 @@ msgstr ""
msgid "Session value"
msgstr "Hodnota sedenia"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6597,7 +6599,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Hodnota"
diff --git a/po/sl.po b/po/sl.po
index 83142d3..31032bb 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-05-03 00:45+0200\n"
"Last-Translator: <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Iskanje"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Izvedi"
@@ -107,8 +107,8 @@ msgstr "Komentar tabele"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Polje"
@@ -119,8 +119,9 @@ msgstr "Polje"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Vrsta"
@@ -309,8 +310,8 @@ msgstr "Omogoči"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Pravilo za razvrščanje znakov"
@@ -430,14 +431,14 @@ msgstr "Razvrsti"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Naraščajoče"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Padajoče"
@@ -468,7 +469,7 @@ msgstr "Briši"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Ali"
@@ -1733,7 +1734,7 @@ msgid "Sort by key"
msgstr "Uredi po ključu"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Možnosti"
@@ -2439,7 +2440,7 @@ msgstr "Dodaj privilegije na naslednji podatkovni zbirki"
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije na naslednji tabeli"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj iskalne pogoje (telo \"where\" stavka):"
@@ -2648,7 +2649,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
@@ -2656,7 +2657,7 @@ msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
msgid "The bookmark has been deleted."
msgstr "Zaznamek je odstranjen."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Oznaka"
@@ -2669,7 +2670,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Zamenjaj obstoječ zaznamek z istim imenom"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Označi to poizvedbo SQL"
@@ -2681,7 +2682,8 @@ msgstr "Samo pogled"
msgid "Browse distinct values"
msgstr "Prebrskaj različne vrednosti"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Prebrskaj tuje vrednosti"
@@ -3108,11 +3110,11 @@ msgstr ""
msgid "Display Features"
msgstr "Prikaži lastnosti"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Vrstni red prikaza:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Izvedi \"query by example\" (nadomestni znak: \"%\")"
@@ -3601,7 +3603,7 @@ msgstr "Ime indeksa:"
msgid "Index type:"
msgstr "Vrsta indeksa:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Težave z indeksi tabele `%s`"
@@ -3784,7 +3786,7 @@ msgstr "Uporabi ključno besedo LOCAL"
msgid "Length/Values"
msgstr "Dolžina/Vrednosti*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Število vrstic na stran"
@@ -4081,7 +4083,7 @@ msgstr "V redu"
msgid "Open Document Text"
msgstr "Besedilo Open Document"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -4917,7 +4919,7 @@ msgstr "Prosimo, izberite zbirko podatkov"
msgid "Select binary log to view"
msgstr "Izberite dvojiški dnevnik za pregled"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Izberite polja (vsaj eno):"
@@ -4991,7 +4993,7 @@ msgstr ""
msgid "Session value"
msgstr "Vrednost seje"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6384,7 +6386,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Vrednost"
diff --git a/po/sq.po b/po/sq.po
index 2c7c585..37b814d 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:08+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: albanian <sq(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Kërko"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Zbato"
@@ -107,8 +107,8 @@ msgstr "Komente mbi tabelën"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Fusha"
@@ -119,8 +119,9 @@ msgstr "Fusha"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Lloji"
@@ -312,8 +313,8 @@ msgstr "Aktiv"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Collation"
@@ -433,14 +434,14 @@ msgstr "rreshtimi"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ngjitje"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Zbritës"
@@ -471,7 +472,7 @@ msgstr "Fshi"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Ose"
@@ -1747,7 +1748,7 @@ msgid "Sort by key"
msgstr "Rendit sipas kyçit"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Operacione"
@@ -2456,7 +2457,7 @@ msgstr "Shto të drejta tek databaza në vazhdim"
msgid "Add privileges on the following table"
msgstr "Shto të drejta tek tabela në vazhdim"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Shto kushte kërkimi (trupi i specifikimit \"where\"):"
@@ -2673,7 +2674,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
@@ -2681,7 +2682,7 @@ msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
msgid "The bookmark has been deleted."
msgstr "Libërshënuesi u fshi."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etiketë"
@@ -2694,7 +2695,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Shtoja të preferuarve këtë query SQL"
@@ -2707,7 +2708,8 @@ msgstr "Shfaq vetëm"
msgid "Browse distinct values"
msgstr "Shfleto opcionet e huaja"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Shfleto opcionet e huaja"
@@ -3140,11 +3142,11 @@ msgstr "Ç'aktivo kontrollin e kyçeve të jashtëm"
msgid "Display Features"
msgstr "Shfaq karakteristikat"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Mënyra e shfaqjes:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Zbato \"query nga shembull\" (karakteri jolly: \"%\")"
@@ -3636,7 +3638,7 @@ msgstr "Emri i treguesit :"
msgid "Index type:"
msgstr "Lloji i treguesit :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3820,7 +3822,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Gjatësia/Set*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "regjistrime për faqe"
@@ -4114,7 +4116,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -4964,7 +4966,7 @@ msgstr "Të lutem, zgjidh një databazë"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Zgjidh fushat (të paktën një):"
@@ -5040,7 +5042,7 @@ msgstr ""
msgid "Session value"
msgstr "Vlera seancës"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6440,7 +6442,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Vlerë"
diff --git a/po/sr.po b/po/sr.po
index 3ca6702..0ac243a 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_cyrillic <sr(a)li.org>\n"
@@ -68,9 +68,9 @@ msgstr "Претраживање"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Крени"
@@ -108,8 +108,8 @@ msgstr "Коментари табеле"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Поље"
@@ -120,8 +120,9 @@ msgstr "Поље"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -311,8 +312,8 @@ msgstr "Омогућено"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Сортирање"
@@ -432,14 +433,14 @@ msgstr "Сортирање"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Растући"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Опадајући"
@@ -470,7 +471,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "или"
@@ -1761,7 +1762,7 @@ msgid "Sort by key"
msgstr "Сортирај по кључу"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Опције"
@@ -2490,7 +2491,7 @@ msgstr "Додај привилегије на следећој бази"
msgid "Add privileges on the following table"
msgstr "Додај привилегије на следећој табели"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Додај услове претраживања (део \"WHERE\" упита):"
@@ -2703,7 +2704,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
@@ -2711,7 +2712,7 @@ msgstr "Дозволи сваком кориснику да приступа о
msgid "The bookmark has been deleted."
msgstr "Обележивач је управо обрисан."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Назив"
@@ -2724,7 +2725,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Замени постојеће запамћене упите истог имена"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Запамти SQL-упит"
@@ -2736,7 +2737,8 @@ msgstr "Види само"
msgid "Browse distinct values"
msgstr "Прегледај различите вредности"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Прегледај стране вредности"
@@ -3171,11 +3173,11 @@ msgstr "Искључи провере страних кључева"
msgid "Display Features"
msgstr "Прикажи особине"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Редослед приказа:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Направи \"упит по примеру\" (џокер: \"%\")"
@@ -3668,7 +3670,7 @@ msgstr "Име кључа :"
msgid "Index type:"
msgstr "Тип кључа :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Проблем при индексирању табеле `%s`"
@@ -3851,7 +3853,7 @@ msgstr "Користи кључну реч LOCAL"
msgid "Length/Values"
msgstr "Дужина/Вредност*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Број редова по страни"
@@ -4155,7 +4157,7 @@ msgstr "У реду"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Оператор"
@@ -4992,7 +4994,7 @@ msgstr "Изаберите базу"
msgid "Select binary log to view"
msgstr "Изаберите бинарни дневник за преглед"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Изабери поља (најмање једно)"
@@ -5068,7 +5070,7 @@ msgstr ""
msgid "Session value"
msgstr "Вредност сесије"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6589,7 +6591,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Вредност"
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index ad1092a..39bb3d5 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: serbian_latin <sr@latin@li.org>\n"
@@ -68,9 +68,9 @@ msgstr "Pretraživanje"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Kreni"
@@ -108,8 +108,8 @@ msgstr "Komentari tabele"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Polje"
@@ -120,8 +120,9 @@ msgstr "Polje"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tip"
@@ -311,8 +312,8 @@ msgstr "Omogućeno"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Sortiranje"
@@ -432,14 +433,14 @@ msgstr "Sortiranje"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Rastući"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Opadajući"
@@ -470,7 +471,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "ili"
@@ -1761,7 +1762,7 @@ msgid "Sort by key"
msgstr "Sortiraj po ključu"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Opcije"
@@ -2490,7 +2491,7 @@ msgstr "Dodaj privilegije na sledećoj bazi"
msgid "Add privileges on the following table"
msgstr "Dodaj privilegije na sledećoj tabeli"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Dodaj uslove pretraživanja (deo \"WHERE\" upita):"
@@ -2703,7 +2704,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
@@ -2711,7 +2712,7 @@ msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
msgid "The bookmark has been deleted."
msgstr "Obeleživač je upravo obrisan."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Naziv"
@@ -2724,7 +2725,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Zameni postojeće zapamćene upite istog imena"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Zapamti SQL-upit"
@@ -2736,7 +2737,8 @@ msgstr "Vidi samo"
msgid "Browse distinct values"
msgstr "Pregledaj različite vrednosti"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Pregledaj strane vrednosti"
@@ -3171,11 +3173,11 @@ msgstr "Isključi provere stranih ključeva"
msgid "Display Features"
msgstr "Prikaži osobine"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Redosled prikaza:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Napravi \"upit po primeru\" (džoker: \"%\")"
@@ -3668,7 +3670,7 @@ msgstr "Ime ključa :"
msgid "Index type:"
msgstr "Tip ključa :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem pri indeksiranju tabele `%s`"
@@ -3851,7 +3853,7 @@ msgstr "Koristi ključnu reč LOCAL"
msgid "Length/Values"
msgstr "Dužina/Vrednost*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Broj redova po strani"
@@ -4156,7 +4158,7 @@ msgstr "U redu"
msgid "Open Document Text"
msgstr "Open Document Text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -4994,7 +4996,7 @@ msgstr "Izaberite bazu"
msgid "Select binary log to view"
msgstr "Izaberite binarni dnevnik za pregled"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Izaberi polja (najmanje jedno)"
@@ -5070,7 +5072,7 @@ msgstr ""
msgid "Session value"
msgstr "Vrednost sesije"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6594,7 +6596,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Vrednost"
diff --git a/po/sv.po b/po/sv.po
index 695b473..3296aa8 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish <sv(a)li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Sök"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Kör"
@@ -105,8 +105,8 @@ msgstr "Tabellkommentarer"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Fält"
@@ -117,8 +117,9 @@ msgstr "Fält"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Typ"
@@ -307,8 +308,8 @@ msgstr "Aktivera"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Kollationering"
@@ -428,14 +429,14 @@ msgstr "Sortering"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Stigande"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Fallande"
@@ -466,7 +467,7 @@ msgstr "Ta bort"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Eller"
@@ -1766,7 +1767,7 @@ msgid "Sort by key"
msgstr "Sortera efter nyckel"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Alternativ"
@@ -2515,7 +2516,7 @@ msgstr "Lägg till privilegier till följande databas"
msgid "Add privileges on the following table"
msgstr "Lägg till privilegier till följande tabell"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Lägg till sökvillkor (uttryck i \"where\"-sats):"
@@ -2727,7 +2728,7 @@ msgid "Upload to BLOB repository"
msgstr "Ladda upp till BLOB-förvaringsplats"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Låt varje användare få tillgång till detta bokmärke"
@@ -2735,7 +2736,7 @@ msgstr "Låt varje användare få tillgång till detta bokmärke"
msgid "The bookmark has been deleted."
msgstr "Bokmärket har tagits bort."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etikett"
@@ -2748,7 +2749,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Ersätt befintligt bokmärke med samma namn"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Skapa bokmärke för den här SQL-frågan"
@@ -2760,7 +2761,8 @@ msgstr "Visa endast"
msgid "Browse distinct values"
msgstr "Visa distinkta värden"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Visa främmande värden"
@@ -3200,11 +3202,11 @@ msgstr "Stäng av kontroll av främmande nycklar"
msgid "Display Features"
msgstr "Visningsfunktionaliteter"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Visningsordning:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Utför en \"Query By Example\" (jokertecken: \"%\")"
@@ -3701,7 +3703,7 @@ msgstr "Indexnamn :"
msgid "Index type:"
msgstr "Indextyp :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "Problem med index för tabell `%s`"
@@ -3886,7 +3888,7 @@ msgstr "Använd nyckelordet LOCAL"
msgid "Length/Values"
msgstr "Längd/Värden*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Rader per sida"
@@ -4192,7 +4194,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "OpenDocument-text"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -5036,7 +5038,7 @@ msgstr "Välj en databas"
msgid "Select binary log to view"
msgstr "Välj binär logg att visa"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Välj fält (minst ett):"
@@ -5116,7 +5118,7 @@ msgstr ""
msgid "Session value"
msgstr "Sessionsvärde"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6643,7 +6645,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Värde"
diff --git a/po/ta.po b/po/ta.po
index 5622aad..4c5c9cc 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr ""
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr ""
@@ -107,8 +107,8 @@ msgstr ""
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr ""
@@ -119,8 +119,9 @@ msgstr ""
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr ""
@@ -303,8 +304,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr ""
@@ -424,14 +425,14 @@ msgstr ""
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr ""
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr ""
@@ -462,7 +463,7 @@ msgstr ""
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr ""
@@ -1701,7 +1702,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr ""
@@ -2397,7 +2398,7 @@ msgstr "பின்வரும் கொட்பிட்கான புத
msgid "Add privileges on the following table"
msgstr ""
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
@@ -2606,7 +2607,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2614,7 +2615,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr ""
@@ -2627,7 +2628,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr ""
@@ -2639,7 +2640,8 @@ msgstr ""
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3057,11 +3059,11 @@ msgstr ""
msgid "Display Features"
msgstr ""
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr ""
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
@@ -3541,7 +3543,7 @@ msgstr ""
msgid "Index type:"
msgstr ""
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3720,7 +3722,7 @@ msgstr ""
msgid "Length/Values"
msgstr ""
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr ""
@@ -4003,7 +4005,7 @@ msgstr ""
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr ""
@@ -4817,7 +4819,7 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr ""
@@ -4889,7 +4891,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6232,7 +6234,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr ""
diff --git a/po/te.po b/po/te.po
index 5231982..03f4ef4 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-02 12:04+0200\n"
"Last-Translator: <veeven(a)gmail.com>\n"
"Language-Team: Telugu <te(a)li.org>\n"
@@ -68,9 +68,9 @@ msgstr "శోధించు"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "వెళ్ళు"
@@ -108,8 +108,8 @@ msgstr "పట్టిక వ్యాఖ్యలు"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr ""
@@ -120,8 +120,9 @@ msgstr ""
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "రకం"
@@ -308,8 +309,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr ""
@@ -431,14 +432,14 @@ msgstr "క్రమంలో పేర్చు"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "ఆరోహణ"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "అవరోహణ"
@@ -471,7 +472,7 @@ msgstr ""
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "లేదా"
@@ -1728,7 +1729,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr ""
@@ -2429,7 +2430,7 @@ msgstr ""
msgid "Add privileges on the following table"
msgstr ""
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
@@ -2647,7 +2648,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_
query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2655,7 +2656,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr ""
@@ -2668,7 +2669,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr ""
@@ -2680,7 +2681,8 @@ msgstr ""
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3104,11 +3106,11 @@ msgstr ""
msgid "Display Features"
msgstr ""
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr ""
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
@@ -3590,7 +3592,7 @@ msgstr ""
msgid "Index type:"
msgstr ""
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3770,7 +3772,7 @@ msgstr ""
msgid "Length/Values"
msgstr ""
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr ""
@@ -4054,7 +4056,7 @@ msgstr "సరే"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr ""
@@ -4871,7 +4873,7 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr ""
@@ -4944,7 +4946,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6303,7 +6305,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "విలువ"
diff --git a/po/th.po b/po/th.po
index e280ce2..71f4d76 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai <th(a)li.org>\n"
@@ -62,9 +62,9 @@ msgstr "ค้นหา"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "ลงมือ"
@@ -102,8 +102,8 @@ msgstr "หมายเหตุของตาราง"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "ฟิลด์"
@@ -114,8 +114,9 @@ msgstr "ฟิลด์"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "ชนิด"
@@ -307,8 +308,8 @@ msgstr "เปิดใช้อยู่"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "การเรียงลำดับ"
@@ -428,14 +429,14 @@ msgstr "เรียง"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "น้อยไปมาก"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "มากไปน้อย"
@@ -466,7 +467,7 @@ msgstr "ลบ"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "หรือ"
@@ -1735,7 +1736,7 @@ msgid "Sort by key"
msgstr "เรียงโดยคีย์"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "กระบวนการ"
@@ -2445,7 +2446,7 @@ msgstr "เพิ่มสิทธิของฐานข้อมูลต่
msgid "Add privileges on the following table"
msgstr "เพิ่มสิทธิของตารางต่อไปนี้"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "เพิ่มเงื่อนไขในการค้นหา:"
@@ -2663,7 +2664,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2671,7 +2672,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "ลบคำค้นที่จดไว้เรียบร้อยแล้ว"
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "ป้ายชื่อ"
@@ -2684,7 +2685,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "จดคำค้นนี้ไว้"
@@ -2696,7 +2697,8 @@ msgstr "ดูอย่างเดียว"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3123,11 +3125,11 @@ msgstr ""
msgid "Display Features"
msgstr "ความสามารถด้านการแสดงผล"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "ลำดับการแสดง:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "ทำ \"คำค้นจากตัวอย่าง\" (wildcard: \"%\")"
@@ -3613,7 +3615,7 @@ msgstr "ชื่อดัชนี :"
msgid "Index type:"
msgstr "ชนิดของดัชนี :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3796,7 +3798,7 @@ msgstr ""
msgid "Length/Values"
msgstr "ความยาว/เซต*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "ระเบียนต่อหน้า"
@@ -4084,7 +4086,7 @@ msgstr "ตกลง"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
#, fuzzy
msgid "Operator"
msgstr "กระบวนการ"
@@ -4916,7 +4918,7 @@ msgstr "โปรดเลือกฐานข้อมูล"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "เลือกฟิลด์ (อย่างน้อยหนึ่งฟิลด์):"
@@ -4992,7 +4994,7 @@ msgstr ""
msgid "Session value"
msgstr "ค่าเซสชั่น"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6362,7 +6364,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "ค่า"
diff --git a/po/tr.po b/po/tr.po
index 6eb5ab8..0fc4dc0 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-03 11:44+0200\n"
"Last-Translator: <hitowerdigit(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Ara"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Git"
@@ -107,8 +107,8 @@ msgstr "Tablo yorumları"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Alan"
@@ -119,8 +119,9 @@ msgstr "Alan"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Türü"
@@ -309,8 +310,8 @@ msgstr "Etkin"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Karşılaştırma"
@@ -430,14 +431,14 @@ msgstr "Sırala"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Küçükten Büyüğe"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Büyükten Küçüğe"
@@ -468,7 +469,7 @@ msgstr "Del"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Veya"
@@ -1772,7 +1773,7 @@ msgid "Sort by key"
msgstr "Anahtara göre sırala"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Seçenekler"
@@ -2517,7 +2518,7 @@ msgstr "Aşağıdaki veritabanına yetkileri ekle"
msgid "Add privileges on the following table"
msgstr "Aşağıdaki tabloya yetkileri ekle"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Arama koşulu ekle (\"where\" koşulu gövdesi):"
@@ -2731,7 +2732,7 @@ msgid "Upload to BLOB repository"
msgstr "BLOB Havuzuna gönder"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
@@ -2739,7 +2740,7 @@ msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
msgid "The bookmark has been deleted."
msgstr "İşaretleme silindi."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Etiket"
@@ -2752,7 +2753,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Mevcut aynı ismin işaretlemesini değiştir"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Bu SQL sorgusunu işaretle"
@@ -2764,7 +2765,8 @@ msgstr "Sadece göster"
msgid "Browse distinct values"
msgstr "Belirgin değerlere gözat"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Dış değerlere gözat"
@@ -3200,11 +3202,11 @@ msgstr "Dış anahtar kontrolünü etkisizleştir"
msgid "Display Features"
msgstr "Özellikleri Göster"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Görünüm düzeni:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Örnek sorgu\" yap. (joker: \"%\")"
@@ -3700,7 +3702,7 @@ msgstr "İndeks ismi:"
msgid "Index type:"
msgstr "İndeks türü :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar"
@@ -3888,7 +3890,7 @@ msgstr "YEREL anahtar kelime kullan"
msgid "Length/Values"
msgstr "Uzunluk/Değerler"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Sayfa başına satır sayısı"
@@ -4193,7 +4195,7 @@ msgstr "TAMAM"
msgid "Open Document Text"
msgstr "Açık Belge Metini"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "İşletici"
@@ -5054,7 +5056,7 @@ msgstr " Lütfen bir veritabanı seçin"
msgid "Select binary log to view"
msgstr "Görüntülemek için binari günlüğünü seçin"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Alanları seç (en az bir):"
@@ -5135,7 +5137,7 @@ msgstr ""
msgid "Session value"
msgstr "Oturum değeri"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6670,7 +6672,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Değer"
diff --git a/po/tt.po b/po/tt.po
index 23c2d97..f8871e3 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-30 23:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: tatarish <tt(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr "Ezläw"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Äydä"
@@ -107,8 +107,8 @@ msgstr "Tüşämä açıqlaması"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Alan"
@@ -119,8 +119,9 @@ msgstr "Alan"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Töre"
@@ -310,8 +311,8 @@ msgstr "Açıq"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Tezü cayı"
@@ -431,14 +432,14 @@ msgstr "Tezü"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Artıp"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Kimep"
@@ -469,7 +470,7 @@ msgstr "Sal"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Yä"
@@ -1751,7 +1752,7 @@ msgid "Sort by key"
msgstr "Qullanası tezeş"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "Eşkärtü"
@@ -2476,7 +2477,7 @@ msgstr "Kiläse biremlek öçen xoquqlar östäw"
msgid "Add privileges on the following table"
msgstr "Kiläse tüşämä öçen xoquqlar östäw"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Ezläw şartın östäw (\"WHERE\" eçtälege):"
@@ -2689,7 +2690,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
@@ -2697,7 +2698,7 @@ msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
msgid "The bookmark has been deleted."
msgstr "Tamğa beterelde."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Yarlıq"
@@ -2710,7 +2711,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Şulay uq atalğan bitbilgelärne almaştırası"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Bu SQL-sorawğa tamğa quy"
@@ -2723,7 +2724,8 @@ msgstr "Kürep kenä"
msgid "Browse distinct values"
msgstr "Browse foreign values"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Browse foreign values"
@@ -3158,11 +3160,11 @@ msgstr "Yat tezeş tikşerüen sünderep"
msgid "Display Features"
msgstr "Mömkinleklär Kürsätü"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Kürsätü tärtibe:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Ürnäk buyınça soraw\" eşkärtü (almaştırma: \"%\")"
@@ -3655,7 +3657,7 @@ msgstr "Tezeş adı :"
msgid "Index type:"
msgstr "Tezeş töre :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "`%s` atlı tüşäw tezeşläre belän nidider tiskärlek bar"
@@ -3838,7 +3840,7 @@ msgstr "LOCAL digän süz qullanıp"
msgid "Length/Values"
msgstr "Ozınlıq/Bäyä*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Bit sayın Kertem sanı"
@@ -4139,7 +4141,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -4974,7 +4976,7 @@ msgstr "Berär biremlek saylísı"
msgid "Select binary log to view"
msgstr "Qaraw öçen binar köndälek saylaw"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Alannar saylísı (iñ kimendä ber):"
@@ -5048,7 +5050,7 @@ msgstr ""
msgid "Session value"
msgstr "Sessi bäyäse"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6457,7 +6459,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Bäyä"
diff --git a/po/uk.po b/po/uk.po
index cc5b5db..e340893 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
@@ -62,9 +62,9 @@ msgstr "Шукати"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "Вперед"
@@ -102,8 +102,8 @@ msgstr "Коментар до таблиці"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Поле"
@@ -114,8 +114,9 @@ msgstr "Поле"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Тип"
@@ -304,8 +305,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Порівняння"
@@ -425,14 +426,14 @@ msgstr "Посортувати"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Зростаючий"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Спадаючий"
@@ -463,7 +464,7 @@ msgstr "Видалити"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "або"
@@ -1732,7 +1733,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr ""
@@ -2428,7 +2429,7 @@ msgstr "Додати права для цієї бази даних"
msgid "Add privileges on the following table"
msgstr "Додати права для цієї таблиці"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Додати умови пошуку (тіло для умови \"where\"):"
@@ -2637,7 +2638,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2645,7 +2646,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr "Закладку було видалено."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Мітка"
@@ -2658,7 +2659,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Закладка на даний SQL-запит"
@@ -2670,7 +2671,8 @@ msgstr "Лише перегляд"
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3098,11 +3100,11 @@ msgstr ""
msgid "Display Features"
msgstr "Показати можливості"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Порядок перегляду:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "Виконати \"запит згідно прикладу\" (символ підставновки: \"%\")"
@@ -3588,7 +3590,7 @@ msgstr "Назва індекса :"
msgid "Index type:"
msgstr "Тип індекса :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3771,7 +3773,7 @@ msgstr ""
msgid "Length/Values"
msgstr "Довжини/Значення*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "записів на сторінці"
@@ -4061,7 +4063,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr ""
@@ -4889,7 +4891,7 @@ msgstr "Прошу вибрати БД"
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Вибрати поля (щонайменше одне):"
@@ -4963,7 +4965,7 @@ msgstr ""
msgid "Session value"
msgstr "Значення сесії"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6348,7 +6350,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Значення"
diff --git a/po/ur.po b/po/ur.po
index 5f59f31..ed83ee7 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Urdu <ur(a)li.org>\n"
@@ -67,9 +67,9 @@ msgstr ""
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr ""
@@ -107,8 +107,8 @@ msgstr ""
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr ""
@@ -119,8 +119,9 @@ msgstr ""
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr ""
@@ -303,8 +304,8 @@ msgstr ""
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr ""
@@ -424,14 +425,14 @@ msgstr ""
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr ""
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr ""
@@ -462,7 +463,7 @@ msgstr ""
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr ""
@@ -1658,7 +1659,7 @@ msgid "Sort by key"
msgstr ""
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr ""
@@ -2354,7 +2355,7 @@ msgstr ""
msgid "Add privileges on the following table"
msgstr ""
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
@@ -2563,7 +2564,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr ""
@@ -2571,7 +2572,7 @@ msgstr ""
msgid "The bookmark has been deleted."
msgstr ""
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr ""
@@ -2584,7 +2585,7 @@ msgid "Replace existing bookmark of same name"
msgstr ""
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr ""
@@ -2596,7 +2597,8 @@ msgstr ""
msgid "Browse distinct values"
msgstr ""
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr ""
@@ -3014,11 +3016,11 @@ msgstr ""
msgid "Display Features"
msgstr ""
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr ""
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr ""
@@ -3498,7 +3500,7 @@ msgstr ""
msgid "Index type:"
msgstr ""
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -3677,7 +3679,7 @@ msgstr ""
msgid "Length/Values"
msgstr ""
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr ""
@@ -3960,7 +3962,7 @@ msgstr ""
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr ""
@@ -4774,7 +4776,7 @@ msgstr ""
msgid "Select binary log to view"
msgstr ""
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr ""
@@ -4846,7 +4848,7 @@ msgstr ""
msgid "Session value"
msgstr ""
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6189,7 +6191,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr ""
diff --git a/po/uz.po b/po/uz.po
index bf0dff0..8109b9b 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_cyrillic <uz(a)li.org>\n"
@@ -64,9 +64,9 @@ msgstr "Қидириш"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -104,8 +104,8 @@ msgstr "Жадвал изоҳи"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Майдон"
@@ -116,8 +116,9 @@ msgstr "Майдон"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Тур"
@@ -306,8 +307,8 @@ msgstr "Фаоллантириш"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Таққослаш"
@@ -427,14 +428,14 @@ msgstr "Сортировка қилиш"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "Ўсиш тартибида"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Камайиш тартибида"
@@ -465,7 +466,7 @@ msgstr "Ўчириш"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Ёки"
@@ -1773,7 +1774,7 @@ msgid "Sort by key"
msgstr "Индекс бўйича сортировка қилиш"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Параметрлар"
@@ -2528,7 +2529,7 @@ msgstr "Қуйидаги маълумотлар омборига привиле
msgid "Add privileges on the following table"
msgstr "Қуйидаги жадвалга привилегия қўшиш"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Қидириш шартини кўшиш (яъни \"where\" жумласи):"
@@ -2742,7 +2743,7 @@ msgid "Upload to BLOB repository"
msgstr "BLOB омборига юклаш"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Барча фойдаланувчиларга рухсат бериш"
@@ -2750,7 +2751,7 @@ msgstr "Барча фойдаланувчиларга рухсат бериш"
msgid "The bookmark has been deleted."
msgstr "Хатчўп ўчирилди."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Хатчўп белгиси"
@@ -2763,7 +2764,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Шу номли хатчўпни алмаштириш"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Ушбу SQL сўровига хатчўп тузиш"
@@ -2775,7 +2776,8 @@ msgstr "Фақат кўриш"
msgid "Browse distinct values"
msgstr "Турли қийматларни кўриб чиқиш"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Ташқи қийматларни кўриб чиқиш"
@@ -3214,11 +3216,11 @@ msgstr "Ташқи калитларни текширишни ўчириш"
msgid "Display Features"
msgstr "Имкониятларни кўрсатиш"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Сортировка:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Намунадаги сўровни бажариш\" (ўрнига қўйиш белгиси: \"%\")"
@@ -3714,7 +3716,7 @@ msgstr "Индекс номи: "
msgid "Index type:"
msgstr "Индекс тури: "
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr " `\"%s\"` жадвалидаги индексларда муаммо мавжуд"
@@ -3904,7 +3906,7 @@ msgstr "\"LOCAL\" калит сўзини ишлатиш"
msgid "Length/Values"
msgstr "Узунлик/қийматлар"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Саҳифадаги қаторлар сони "
@@ -4211,7 +4213,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "OpenDocument матн"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Оператор"
@@ -5079,7 +5081,7 @@ msgstr "Маълумотлар базасини танланг"
msgid "Select binary log to view"
msgstr "Кўриш учун бинар журнални танланг"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Майдонни танланг (камида битта):"
@@ -5160,7 +5162,7 @@ msgstr ""
msgid "Session value"
msgstr "Сессия қийматлари"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6710,7 +6712,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Қиймати"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index 5bd69a9..8b1be75 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:20+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: uzbek_latin <uz@latin@li.org>\n"
@@ -65,9 +65,9 @@ msgstr "Qidirish"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "OK"
@@ -105,8 +105,8 @@ msgstr "Jadval izohi"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "Maydon"
@@ -117,8 +117,9 @@ msgstr "Maydon"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "Tur"
@@ -307,8 +308,8 @@ msgstr "Faollantirish"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "Taqqoslash"
@@ -428,14 +429,14 @@ msgstr "Sortirovka qilish"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "O‘sish tartibida"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "Kamayish tartibida"
@@ -466,7 +467,7 @@ msgstr "O‘chirish"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "Yoki"
@@ -1780,7 +1781,7 @@ msgid "Sort by key"
msgstr "Indeks bo‘yicha sortirovka qilish"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "Parametrlar"
@@ -2539,7 +2540,7 @@ msgstr "Quyidagi ma`lumotlar omboriga privilegiya qo‘shish"
msgid "Add privileges on the following table"
msgstr "Quyidagi jadvalga privilegiya qo‘shish"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "Qidirish shartini ko‘shish (ya`ni \"where\" jumlasi):"
@@ -2753,7 +2754,7 @@ msgid "Upload to BLOB repository"
msgstr "BLOB omboriga yuklash"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "Barcha foydalanuvchilarga ruxsat berish"
@@ -2761,7 +2762,7 @@ msgstr "Barcha foydalanuvchilarga ruxsat berish"
msgid "The bookmark has been deleted."
msgstr "Xatcho‘p o‘chirildi."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "Xatcho‘p belgisi"
@@ -2774,7 +2775,7 @@ msgid "Replace existing bookmark of same name"
msgstr "Shu nomli xatcho‘pni almashtirish"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
@@ -2786,7 +2787,8 @@ msgstr "Faqat ko‘rish"
msgid "Browse distinct values"
msgstr "Turli qiymatlarni ko‘rib chiqish"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "Tashqi qiymatlarni ko‘rib chiqish"
@@ -3228,11 +3230,11 @@ msgstr "Tashqi kalitlarni tekshirishni o‘chirish"
msgid "Display Features"
msgstr "Imkoniyatlarni ko‘rsatish"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "Sortirovka:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "\"Namunadagi so‘rovni bajarish\" (o‘rniga qo‘yish belgisi: \"%\")"
@@ -3729,7 +3731,7 @@ msgstr "Indeks nomi: "
msgid "Index type:"
msgstr "Indeks turi: "
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr " `\"%s\"` jadvalidagi indekslarda muammo mavjud"
@@ -3921,7 +3923,7 @@ msgstr "\"LOCAL\" kalit so‘zini ishlatish"
msgid "Length/Values"
msgstr "Uzunlik/qiymatlar"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "Sahifadagi qatorlar soni "
@@ -4231,7 +4233,7 @@ msgstr "OK"
msgid "Open Document Text"
msgstr "OpenDocument matn"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "Operator"
@@ -5111,7 +5113,7 @@ msgstr "Ma`lumotlar bazasini tanlang"
msgid "Select binary log to view"
msgstr "Ko‘rish uchun binar jurnalni tanlang"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "Maydonni tanlang (kamida bitta):"
@@ -5193,7 +5195,7 @@ msgstr ""
msgid "Session value"
msgstr "Sessiya qiymatlari"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6758,7 +6760,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "Qiymati"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 6b05fde..fcbf1cb 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-04-08 13:06+0200\n"
"Last-Translator: shanyan baishui <Siramizu(a)gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN(a)li.org>\n"
@@ -66,9 +66,9 @@ msgstr "搜索"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "执行"
@@ -106,8 +106,8 @@ msgstr "表注释"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "字段"
@@ -118,8 +118,9 @@ msgstr "字段"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "类型"
@@ -308,8 +309,8 @@ msgstr "启用"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "整理"
@@ -429,14 +430,14 @@ msgstr "排序"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "递增"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "递减"
@@ -467,7 +468,7 @@ msgstr "删除"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "或"
@@ -1741,7 +1742,7 @@ msgid "Sort by key"
msgstr "主键排序"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
msgid "Options"
msgstr "选项"
@@ -2456,7 +2457,7 @@ msgstr "在下列数据库添加权限"
msgid "Add privileges on the following table"
msgstr "在下列数据表添加权限"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "添加搜索条件 (“where”语句的主体):"
@@ -2665,7 +2666,7 @@ msgid "Upload to BLOB repository"
msgstr "上传到 BLOB 容器"
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "让所有用户均可访问此书签"
@@ -2673,7 +2674,7 @@ msgstr "让所有用户均可访问此书签"
msgid "The bookmark has been deleted."
msgstr "书签已删除。"
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "标签"
@@ -2686,7 +2687,7 @@ msgid "Replace existing bookmark of same name"
msgstr "替换现有的同名书签"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "将此 SQL 查询加为书签"
@@ -2698,7 +2699,8 @@ msgstr "仅查看"
msgid "Browse distinct values"
msgstr "浏览非重复值 (DISTINCT)"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "浏览不相关的值"
@@ -3121,11 +3123,11 @@ msgstr "禁止选定不相关的主键"
msgid "Display Features"
msgstr "显示功能"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "显示顺序:"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "执行“依例查询”(通配符:“%”)"
@@ -3610,7 +3612,7 @@ msgstr "索引名称:"
msgid "Index type:"
msgstr "索引类型:"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "数据表 `%s` 的索引存在问题"
@@ -3794,7 +3796,7 @@ msgstr "使用本地 (LOCAL) 关键词"
msgid "Length/Values"
msgstr "长度/值"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "每页行数"
@@ -4087,7 +4089,7 @@ msgstr "确定"
msgid "Open Document Text"
msgstr "OpenOffice 文档"
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "操作符"
@@ -4915,7 +4917,7 @@ msgstr "请选择数据库"
msgid "Select binary log to view"
msgstr "选择要查看的二进制日志"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "至少选择一个字段:"
@@ -4993,7 +4995,7 @@ msgstr ""
msgid "Session value"
msgstr "会话值"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6431,7 +6433,7 @@ msgstr ""
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "值"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index b8b10ed..e9c1ead 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-05 12:48-0400\n"
+"POT-Creation-Date: 2010-05-06 07:36-0400\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: chinese_traditional <zh_TW(a)li.org>\n"
@@ -64,9 +64,9 @@ msgstr "搜索"
#: server_replication.php:341 server_synchronize.php:1204 tbl_change.php:330
#: tbl_change.php:1174 tbl_change.php:1211 tbl_indexes.php:254
#: tbl_operations.php:263 tbl_operations.php:300 tbl_operations.php:497
-#: tbl_operations.php:559 tbl_operations.php:679 tbl_structure.php:563
-#: tbl_structure.php:598 tbl_tracking.php:395 tbl_tracking.php:512
-#: view_create.php:182 view_operations.php:101
+#: tbl_operations.php:559 tbl_operations.php:679 tbl_select.php:327
+#: tbl_structure.php:563 tbl_structure.php:598 tbl_tracking.php:395
+#: tbl_tracking.php:512 view_create.php:182 view_operations.php:101
msgid "Go"
msgstr "執行"
@@ -104,8 +104,8 @@ msgstr "資料表註解文字"
#: libraries/messages.inc.php:325 libraries/tbl_properties.inc.php:99
#: libraries/tbl_properties.inc.php:275 pdf_schema.php:1263
#: pdf_schema.php:1284 tbl_change.php:308 tbl_indexes.php:189
-#: tbl_printview.php:142 tbl_relation.php:402 tbl_structure.php:177
-#: tbl_tracking.php:273 tbl_tracking.php:324
+#: tbl_printview.php:142 tbl_relation.php:402 tbl_select.php:135
+#: tbl_structure.php:177 tbl_tracking.php:273 tbl_tracking.php:324
msgid "Field"
msgstr "欄位"
@@ -116,8 +116,9 @@ msgstr "欄位"
#: libraries/Index.class.php:443 libraries/messages.inc.php:1189
#: libraries/tbl_properties.inc.php:100 pdf_schema.php:1264
#: pdf_schema.php:1285 tbl_change.php:287 tbl_change.php:314
-#: tbl_printview.php:143 tbl_printview.php:313 tbl_structure.php:178
-#: tbl_structure.php:660 tbl_tracking.php:274 tbl_tracking.php:321
+#: tbl_printview.php:143 tbl_printview.php:313 tbl_select.php:136
+#: tbl_structure.php:178 tbl_structure.php:660 tbl_tracking.php:274
+#: tbl_tracking.php:321
msgid "Type"
msgstr "型態"
@@ -307,8 +308,8 @@ msgstr "啟動"
#: libraries/mysql_charsets.lib.php:107 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:730 server_collations.php:54
#: server_collations.php:66 server_databases.php:111 tbl_operations.php:361
-#: tbl_structure.php:179 tbl_structure.php:768 tbl_tracking.php:275
-#: tbl_tracking.php:326
+#: tbl_select.php:137 tbl_structure.php:179 tbl_structure.php:768
+#: tbl_tracking.php:275 tbl_tracking.php:326
msgid "Collation"
msgstr "校對"
@@ -428,14 +429,14 @@ msgstr "排序"
#: db_qbe.php:209 db_qbe.php:243 libraries/db_structure.lib.php:111
#: libraries/display_tbl.lib.php:523 libraries/display_tbl.lib.php:828
#: libraries/messages.inc.php:77 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:260
+#: server_databases.php:187 tbl_operations.php:260 tbl_select.php:314
msgid "Ascending"
msgstr "遞增"
#: db_qbe.php:210 db_qbe.php:251 libraries/db_structure.lib.php:119
#: libraries/display_tbl.lib.php:528 libraries/display_tbl.lib.php:825
#: libraries/messages.inc.php:259 server_databases.php:170
-#: server_databases.php:187 tbl_operations.php:261
+#: server_databases.php:187 tbl_operations.php:261 tbl_select.php:315
msgid "Descending"
msgstr "遞減"
@@ -466,7 +467,7 @@ msgstr "移除"
#: db_qbe.php:370 db_qbe.php:451 db_qbe.php:522 db_qbe.php:553
#: libraries/display_import.lib.php:166 libraries/messages.inc.php:600
#: libraries/tbl_properties.inc.php:779 server_privileges.php:258
-#: tbl_change.php:1031 tbl_indexes.php:250
+#: tbl_change.php:1031 tbl_indexes.php:250 tbl_select.php:288
msgid "Or"
msgstr "或"
@@ -1740,7 +1741,7 @@ msgid "Sort by key"
msgstr "依鍵名排序"
#: libraries/display_tbl.lib.php:555 libraries/messages.inc.php:599
-#: tbl_structure.php:754
+#: tbl_select.php:267 tbl_structure.php:754
#, fuzzy
msgid "Options"
msgstr "管理"
@@ -2457,7 +2458,7 @@ msgstr "於以下資料庫加入權限"
msgid "Add privileges on the following table"
msgstr "於以下資料表加入權限"
-#: libraries/messages.inc.php:48
+#: libraries/messages.inc.php:48 tbl_select.php:288
msgid "Add search conditions (body of the \"where\" clause):"
msgstr "增加檢索條件 (\"where\" 子句的主體)"
@@ -2670,7 +2671,7 @@ msgid "Upload to BLOB repository"
msgstr ""
#: libraries/messages.inc.php:108 libraries/sql_query_form.lib.php:359
-#: sql.php:678
+#: sql.php:677
msgid "Let every user access this bookmark"
msgstr "所有用者可讀取此書籤"
@@ -2678,7 +2679,7 @@ msgstr "所有用者可讀取此書籤"
msgid "The bookmark has been deleted."
msgstr "書籤已經刪除."
-#: libraries/messages.inc.php:111 sql.php:672
+#: libraries/messages.inc.php:111 sql.php:671
msgid "Label"
msgstr "書籤名稱"
@@ -2691,7 +2692,7 @@ msgid "Replace existing bookmark of same name"
msgstr "取代相同名稱之書籤"
#: libraries/messages.inc.php:114 libraries/sql_query_form.lib.php:352
-#: sql.php:666 sql.php:667 sql.php:684
+#: sql.php:665 sql.php:666 sql.php:683
msgid "Bookmark this SQL query"
msgstr "將此 SQL 語法加入書籤"
@@ -2703,7 +2704,8 @@ msgstr "查看"
msgid "Browse distinct values"
msgstr "瀏覽不同數值"
-#: libraries/messages.inc.php:118 tbl_change.php:252
+#: libraries/messages.inc.php:118 tbl_change.php:252 tbl_select.php:27
+#: tbl_select.php:28 tbl_select.php:31 tbl_select.php:34
msgid "Browse foreign values"
msgstr "瀏覽外來值"
@@ -3128,11 +3130,11 @@ msgstr "暫定外來鍵 (Foreign Key) 檢查"
msgid "Display Features"
msgstr "功能顯示"
-#: libraries/messages.inc.php:271
+#: libraries/messages.inc.php:271 tbl_select.php:301
msgid "Display order:"
msgstr "顯示次序"
-#: libraries/messages.inc.php:273
+#: libraries/messages.inc.php:273 tbl_select.php:132
msgid "Do a \"query by example\" (wildcard: \"%\")"
msgstr "以範例查詢 (萬用字元 : \"%\")"
@@ -3620,7 +3622,7 @@ msgstr "索引名稱 :"
msgid "Index type:"
msgstr "索引類型 :"
-#: libraries/messages.inc.php:425 sql.php:640
+#: libraries/messages.inc.php:425 sql.php:639
#, php-format
msgid "Problems with indexes of table `%s`"
msgstr "於資料表 `%s` 中有索引問題"
@@ -3802,7 +3804,7 @@ msgstr "使用 LOCAL 關鍵字"
msgid "Length/Values"
msgstr "長度/集合*"
-#: libraries/messages.inc.php:488
+#: libraries/messages.inc.php:488 tbl_select.php:295
msgid "Number of rows per page"
msgstr "筆記錄/每頁"
@@ -4093,7 +4095,7 @@ msgstr "確定"
msgid "Open Document Text"
msgstr ""
-#: libraries/messages.inc.php:596
+#: libraries/messages.inc.php:596 tbl_select.php:138
msgid "Operator"
msgstr "操作員"
@@ -4921,7 +4923,7 @@ msgstr "請選擇資料庫"
msgid "Select binary log to view"
msgstr "選擇檢視二進制記錄"
-#: libraries/messages.inc.php:855
+#: libraries/messages.inc.php:855 tbl_select.php:270
msgid "Select fields (at least one):"
msgstr "選擇欄位 (至少一個)"
@@ -4995,7 +4997,7 @@ msgstr ""
msgid "Session value"
msgstr "程序數值"
-#: libraries/messages.inc.php:876
+#: libraries/messages.inc.php:876 libraries/tbl_properties.inc.php:105
msgid ""
"If field type is \"enum\" or \"set\", please enter the values using this "
"format: 'a','b','c'...<br />If you ever need to put a backslash (\"\\\") or "
@@ -6371,7 +6373,7 @@ msgstr "SQL 分析程式未能啟動,請檢查是否已將 %s文件%s 內的 P
#: libraries/messages.inc.php:1230 libraries/replication_gui.lib.php:111
#: server_status.php:627 tbl_change.php:324 tbl_printview.php:370
-#: tbl_structure.php:730
+#: tbl_select.php:139 tbl_structure.php:730
msgid "Value"
msgstr "值"
diff --git a/sql.php b/sql.php
index 0034b16..fc75ea0 100644
--- a/sql.php
+++ b/sql.php
@@ -505,9 +505,8 @@ if (0 == $num_rows || $is_affected) {
// and db_sql.php has many submit buttons
// on the same form, and some confusion arises from the
// fact that $zero_rows is sent for every case.
- // The $zero_rows containing $strSuccess and sent with
- // the form should not have priority over
- // errors like $strEmptyResultSet
+ // The $zero_rows containing a success message and sent with
+ // the form should not have priority over errors
} elseif (!empty($zero_rows) && !$is_select) {
$message = PMA_Message::rawSuccess(htmlspecialchars($zero_rows));
} elseif (!empty($GLOBALS['show_as_php'])) {
diff --git a/tbl_select.php b/tbl_select.php
index 440bd3e..f4eb39f 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -24,14 +24,14 @@ $GLOBALS['js_include'][] = 'jquery/timepicker.js';
if ($GLOBALS['cfg']['PropertiesIconic'] == true) {
$titles['Browse'] =
'<img class="icon" width="16" height="16" src="' . $pmaThemeImage
- .'b_browse.png" alt="' . $strBrowseForeignValues . '" title="'
- .$strBrowseForeignValues . '" />';
+ .'b_browse.png" alt="' . __('Browse foreign values') . '" title="'
+ . __('Browse foreign values') . '" />';
if ($GLOBALS['cfg']['PropertiesIconic'] === 'both') {
- $titles['Browse'] .= $strBrowseForeignValues;
+ $titles['Browse'] .= __('Browse foreign values');
}
} else {
- $titles['Browse'] = $strBrowseForeignValues;
+ $titles['Browse'] = __('Browse foreign values');
}
/**
@@ -129,14 +129,14 @@ while (list($operator) = each($GLOBALS['cfg']['UnaryOperators'])) {
<fieldset id="fieldset_table_search">
<fieldset id="fieldset_table_qbe">
- <legend><?php echo $strDoAQuery; ?></legend>
+ <legend><?php echo __('Do a "query by example" (wildcard: "%")') ?></legend>
<table class="data">
<thead>
- <tr><th><?php echo $strField; ?></th>
- <th><?php echo $strType; ?></th>
- <th><?php echo $strCollation; ?></th>
- <th><?php echo $strOperator; ?></th>
- <th><?php echo $strValue; ?></th>
+ <tr><th><?php echo __('Field'); ?></th>
+ <th><?php echo __('Type'); ?></th>
+ <th><?php echo __('Collation'); ?></th>
+ <th><?php echo __('Operator'); ?></th>
+ <th><?php echo __('Value'); ?></th>
</tr>
</thead>
<tbody>
@@ -264,10 +264,10 @@ $(function() {
</table>
</fieldset>
<?php
- PMA_generate_slider_effect('searchoptions', $strOptions);
+ PMA_generate_slider_effect('searchoptions', __('Options'));
?>
<fieldset id="fieldset_select_fields">
- <legend><?php echo $strSelectFields; ?></legend>
+ <legend><?php echo __('Select fields (at least one):'); ?></legend>
<select name="param[]" size="<?php echo min($fields_cnt, 10); ?>"
multiple="multiple">
<?php
@@ -285,20 +285,20 @@ $(function() {
</fieldset>
<fieldset id="fieldset_search_conditions">
- <legend><?php echo '<em>' . $strOr . '</em> ' .$strAddSearchConditions; ?></legend>
+ <legend><?php echo '<em>' . __('Or') . '</em> ' . __('Add search conditions (body of the "where" clause):'); ?></legend>
<?php echo PMA_showMySQLDocu('SQL-Syntax', 'Functions'); ?>
<input type="text" name="where" class="textfield" size="64" />
</fieldset>
<fieldset id="fieldset_limit_rows">
- <legend><?php echo $strLimitNumRows; ?></legend>
+ <legend><?php echo __('Number of rows per page'); ?></legend>
<input type="text" size="4" name="session_max_rows"
value="<?php echo $GLOBALS['cfg']['MaxRows']; ?>" class="textfield" />
</fieldset>
<fieldset id="fieldset_display_order">
- <legend><?php echo $strDisplayOrder; ?></legend>
+ <legend><?php echo __('Display order:'); ?></legend>
<select name="orderField" style="vertical-align: middle">
<option value="--nil--"></option>
<?php
@@ -311,8 +311,8 @@ $(function() {
</select>
<?php
$choices = array(
- 'ASC' => $strAscending,
- 'DESC' => $strDescending
+ 'ASC' => __('Ascending'),
+ 'DESC' => __('Descending')
);
PMA_display_html_radio('order', $choices, 'ASC', false, true, "formelement");
unset($choices);
@@ -324,7 +324,7 @@ $(function() {
<fieldset class="tblFooters">
<input type="hidden" name="max_number_of_fields"
value="<?php echo $fields_cnt; ?>" />
- <input type="submit" name="submit" value="<?php echo $strGo; ?>" />
+ <input type="submit" name="submit" value="<?php echo __('Go'); ?>" />
</fieldset>
</form>
<?php
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2816-g277db77
by Michal Čihař 06 May '10
by Michal Čihař 06 May '10
06 May '10
The branch, master has been updated
via 277db77572e24142819679f3c91f010231b44f23 (commit)
via 6eb0a9f01771fac78631ca39aea17049b310fa14 (commit)
via 161e2316844eb747ac01897ea8c8e63380dc646c (commit)
via c680384571d66dd3d035b164348d9062f54e899d (commit)
via 8c00d47975f66cfe4f408bbe1d39069e66a80d82 (commit)
from ae616739f6263121e8828254e4a675f84bdf917f (commit)
- Log -----------------------------------------------------------------
commit 277db77572e24142819679f3c91f010231b44f23
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Thu May 6 08:35:36 2010 +0200
Translation update done using Pootle.
commit 6eb0a9f01771fac78631ca39aea17049b310fa14
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Thu May 6 08:35:31 2010 +0200
Translation update done using Pootle.
commit 161e2316844eb747ac01897ea8c8e63380dc646c
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Thu May 6 08:35:24 2010 +0200
Translation update done using Pootle.
commit c680384571d66dd3d035b164348d9062f54e899d
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Thu May 6 08:35:17 2010 +0200
Translation update done using Pootle.
commit 8c00d47975f66cfe4f408bbe1d39069e66a80d82
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Thu May 6 08:35:05 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/nb.po | 64 +++++--------------------------------------------------------
1 files changed, 6 insertions(+), 58 deletions(-)
diff --git a/po/nb.po b/po/nb.po
index 1f91ad0..5fd8626 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-05 12:48-0400\n"
-"PO-Revision-Date: 2010-05-05 09:04+0200\n"
+"PO-Revision-Date: 2010-05-06 08:35+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\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"
@@ -1165,10 +1165,10 @@ msgstr ""
"et semikolon et sted.<br />Hvis du får en blank side så er alt ok."
#: libraries/common.inc.php:594
-#, fuzzy, php-format
+#, php-format
#| msgid "Could not load default configuration from: \"%1$s\""
msgid "Could not load default configuration from: %1$s"
-msgstr "Kunne ikke laste standard konfigurasjonsfil fra: \"%1$s\""
+msgstr "Kunne ikke laste standard konfigurasjonsfil fra: %1$s"
#: libraries/common.inc.php:599 libraries/messages.inc.php:668
msgid ""
@@ -6685,10 +6685,10 @@ msgid "Create table"
msgstr "Opprett tabell"
#: pdf_schema.php:637
-#, fuzzy, php-format
+#, php-format
#| msgid "The \"%s\" table doesn't exist!"
msgid "The %s table doesn't exist!"
-msgstr "Tabellen \"%s\" eksisterer ikke!"
+msgstr "Tabellen %s eksisterer ikke!"
#: pdf_schema.php:996
#, php-format
@@ -6700,7 +6700,6 @@ msgid "Jump to database"
msgstr "Gå til database"
#: server_privileges.php:263 server_privileges.php:264
-#, fuzzy
#| msgid "None"
msgctxt "None privileges"
msgid "None"
@@ -6711,7 +6710,6 @@ msgid "Wildcards % and _ should be escaped with a \\ to use them literally"
msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte"
#: server_privileges.php:1998
-#, fuzzy
#| msgid "None"
msgctxt "Create none database for user"
msgid "None"
@@ -8527,7 +8525,6 @@ msgid "Foreign key constraint"
msgstr "Fremmednøkkelbegrensning"
#: tbl_structure.php:362
-#, fuzzy
#| msgid "None"
msgctxt "None for default"
msgid "None"
@@ -8542,52 +8539,3 @@ msgstr "Lag en indeks på %s kolonner"
msgctxt "for MIME transformation"
msgid "Description"
msgstr "Beskrivelse"
-
-#, fuzzy
-#~| msgid "None"
-#~ msgctxt "None action"
-#~ msgid "None"
-#~ msgstr "Ingen"
-
-#~ msgctxt ""
-#~ msgid "None"
-#~ msgstr "Ingen"
-
-#~ msgid "Grant all privileges on wildcard name (username_%)"
-#~ msgstr "Gi alle rettigheter på jokertegnnavn (username_%)"
-
-#~ msgid "The %s table doesn"
-#~ msgstr "Tabellen %s eksisterer ikke!"
-
-#~ msgid "Could not load default configuration from: %1"
-#~ msgstr "Kunne ikke laste standard konfigurasjon fra: %1"
-
-#~ msgid "Invalid hostname for server %1. Please review your configuration."
-#~ msgstr "Ugyldig tjenernavn for tjener %1. Kontroller din konfigurasjon."
-
-#~ msgid "Error renaming table %1 to %2"
-#~ msgstr "Feil oppstod ved endring av tabellnavn fra %1 til %2"
-
-#~ msgid ""
-#~ "Cannot load [a@http://php.net/%1@Documentation][em]%1[/em][/a] extension. "
-#~ "Please check your PHP configuration."
-#~ msgstr ""
-#~ "Kan ikke laste [a@http://php.net/%1@Documentation][em]%1[/em][/a] "
-#~ "tillegget. Vennligst kontroller PHP-konfigurasjonen"
-
-#~ msgid ""
-#~ "This server is not configured as master in a replication process. Would "
-#~ "you like to <a href=%s>configure</a> it?"
-#~ msgstr ""
-#~ "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. "
-#~ "Ønsker du å <a href=\"%s\">konfigurere</a> den?"
-
-#~ msgid ""
-#~ "This server is not configured as slave in a replication process. Would "
-#~ "you like to <a href=%s>configure</a> it?"
-#~ msgstr ""
-#~ "Denne tjeneren er ikke konfigurert som master i en replikasjonsprosess. "
-#~ "Ønsker du å <a href=\"%s\">konfigurere</a> den?"
-
-#~ msgid "(or the local MySQL server"
-#~ msgstr "(eller den lokale MySQL tjeneren"
hooks/post-receive
--
phpMyAdmin
1
0
[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_3RC1-2811-gae61673
by Michal Čihař 06 May '10
by Michal Čihař 06 May '10
06 May '10
The branch, master has been updated
via ae616739f6263121e8828254e4a675f84bdf917f (commit)
from 4f2735469a4e1aa12e805bd55eeade0dcafc00b1 (commit)
- Log -----------------------------------------------------------------
commit ae616739f6263121e8828254e4a675f84bdf917f
Author: Michal Čihař <michal(a)cihar.com>
Date: Thu May 6 07:15:03 2010 +0200
Update Czech translation.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 3 +--
1 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index 68dbb1f..52acae5 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,7 +5,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-05-05 12:48-0400\n"
-"PO-Revision-Date: 2010-05-05 11:52+0200\n"
+"PO-Revision-Date: 2010-05-06 07:14+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -8508,7 +8508,6 @@ msgid "Foreign key constraint"
msgstr "Omezení cizího klíče"
#: tbl_structure.php:362
-#, fuzzy
#| msgid "None"
msgctxt "None for default"
msgid "None"
hooks/post-receive
--
phpMyAdmin
1
0