Git
Threads by month
- ----- 2025 -----
- 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
August 2011
- 8 participants
- 476 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-14986-gac4b82e
by Michal Čihař 15 Aug '11
by Michal Čihař 15 Aug '11
15 Aug '11
The branch, master has been updated
via ac4b82ea13cbbf28e9024b67a1573cfaf98cdfb9 (commit)
via 08b6d28755dbeb5e8172be847564cd61b9d24c28 (commit)
from 2f04095537690d6e2d96729e2882bad3b6e763dc (commit)
- Log -----------------------------------------------------------------
commit ac4b82ea13cbbf28e9024b67a1573cfaf98cdfb9
Merge: 2f04095 08b6d28
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 10:16:29 2011 +0200
Merge remote-tracking branch 'tyron/master'
Conflicts:
libraries/advisor.class.php
commit 08b6d28755dbeb5e8172be847564cd61b9d24c28
Author: Tyron Madlener <tyronx(a)gmail.com>
Date: Fri Aug 12 16:07:13 2011 +0300
External urls from advisory_rules are redirected to url.php
-----------------------------------------------------------------------
Summary of changes:
libraries/advisor.class.php | 9 ++++++++-
1 files changed, 8 insertions(+), 1 deletions(-)
diff --git a/libraries/advisor.class.php b/libraries/advisor.class.php
index a45c76c..ca9fb6f 100644
--- a/libraries/advisor.class.php
+++ b/libraries/advisor.class.php
@@ -140,11 +140,18 @@ class Advisor
$rule['name'] = $this->translate($rule['name']);
$rule['issue'] = $this->translate($rule['issue']);
+ // Replaces {server_variable} with 'server_variable' linking to server_variables.php
$rule['recommendation'] = preg_replace(
'/\{([a-z_0-9]+)\}/Ui',
- '<a href="server_variables.php' . PMA_generate_common_url() . '#filter=\1">\1</a>',
+ '<a href="server_variables.php?' . PMA_generate_common_url() . '#filter=\1">\1</a>',
$this->translate($rule['recommendation']));
+ // Replaces external Links with PMA_linkURL() generated links
+ $rule['recommendation'] = preg_replace(
+ '#href=("|\')(https?://[^\1]+)\1#ie',
+ '\'href="\' . PMA_linkURL("\2") . \'"\'',
+ $rule['recommendation']
+ );
break;
}
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-14983-g88879b3
by Michal Čihař 15 Aug '11
by Michal Čihař 15 Aug '11
15 Aug '11
The branch, master has been updated
via 88879b37fa414e52bac4c100e4a6cf41ae376fe1 (commit)
via 9b4eb98968cb316390e15dee200b80a324be8c25 (commit)
via d7bedfd5b103a9bb2419caca23197ce2d8a572f9 (commit)
from 7327dab9361aa7095fc2c92f0489f8c8a159508d (commit)
- Log -----------------------------------------------------------------
commit 88879b37fa414e52bac4c100e4a6cf41ae376fe1
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 10:06:18 2011 +0200
Split long text, use <strong> instead of <b>
commit 9b4eb98968cb316390e15dee200b80a324be8c25
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 10:04:00 2011 +0200
Split up long string
commit d7bedfd5b103a9bb2419caca23197ce2d8a572f9
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 10:03:52 2011 +0200
Whitespace cleanup
-----------------------------------------------------------------------
Summary of changes:
server_status.php | 54 +++++++++++++++++++++++++++++++++++++++-------------
1 files changed, 40 insertions(+), 14 deletions(-)
diff --git a/server_status.php b/server_status.php
index cdbe9bb..e7d104b 100644
--- a/server_status.php
+++ b/server_status.php
@@ -81,7 +81,7 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
exit(json_encode($ret));
- // Data for the monitor
+ // Data for the monitor
case 'chartgrid':
$ret = json_decode($_REQUEST['requiredData'], true);
$statusVars = array();
@@ -92,12 +92,12 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
/* Accumulate all required variables and data */
// For each chart
foreach ($ret as $chart_id => $chartNodes) {
- // For each data series
+ // For each data series
foreach ($chartNodes as $node_id => $nodeDataPoints) {
// For each data point in the series (usually just 1)
foreach ($nodeDataPoints as $point_id => $dataPoint) {
$pName = $dataPoint['name'];
-
+
switch ($dataPoint['type']) {
/* We only collect the status and server variables here to
* read them all in one query, and only afterwards assign them.
@@ -105,7 +105,7 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
*/
case 'servervar':
if (!preg_match('/[^a-zA-Z_]+/', $pName))
- $serverVars[] = $pName;
+ $serverVars[] = $pName;
break;
case 'statusvar':
@@ -157,7 +157,7 @@ if (isset($_REQUEST['ajax_request']) && $_REQUEST['ajax_request'] == true) {
} else {
$statusVarValues = array();
}
-
+
// Retrieve all required server variables
if (count($serverVars)) {
$serverVarValues = PMA_DBI_fetch_result(
@@ -803,7 +803,17 @@ echo __('Runtime Information');
<div class="tabInnerContent clearfloat">
</div>
<div id="advisorInstructionsDialog" style="display:none;">
- <?php echo __('The Advisor system can provide recommendations on server variables by analyzing the server status variables. <p>Do note however that this system provides recommendations based on simple calculations and by rule of thumb which may not necessarily apply to your system.</p> <p>Prior to changing any of the configuration, be sure to know what you are changing (by reading the documentation) and how to undo the change. Wrong tuning can have a very negative effect on performance.</p> <p>The best way to tune your system would be to change only one setting at a time, observe or benchmark your database, and undo the change if there was no clearly measurable improvement.</p>'); ?>
+ <?php
+ echo '<p>';
+ echo __('The Advisor system can provide recommendations on server variables by analyzing the server status variables.');
+ echo '</p> <p>';
+ echo __('Do note however that this system provides recommendations based on simple calculations and by rule of thumb which may not necessarily apply to your system.');
+ echo '</p> <p>';
+ echo __('Prior to changing any of the configuration, be sure to know what you are changing (by reading the documentation) and how to undo the change. Wrong tuning can have a very negative effect on performance.');
+ echo '</p> <p>';
+ echo __('The best way to tune your system would be to change only one setting at a time, observe or benchmark your database, and undo the change if there was no clearly measurable improvement.');
+ echo '</p>';
+ ?>
</div>
</div>
</div>
@@ -1448,9 +1458,9 @@ function printMonitor()
<a href="#rearrangeCharts"><img class="icon ic_b_tblops" src="themes/dot.gif" width="16" height="16" alt=""> <?php echo __('Rearrange/edit charts'); ?></a>
<div class="clearfloat paddingtop"></div>
<div class="floatleft">
- <?php
- echo __('Refresh rate') . '<br />';
- refreshList('gridChartRefresh', 5, Array(2, 3, 4, 5, 10, 20, 40, 60, 120, 300, 600, 1200));
+ <?php
+ echo __('Refresh rate') . '<br />';
+ refreshList('gridChartRefresh', 5, Array(2, 3, 4, 5, 10, 20, 40, 60, 120, 300, 600, 1200));
?><br>
</div>
<div class="floatleft">
@@ -1493,12 +1503,22 @@ function printMonitor()
<div class="monitorUse" style="display:none;">
<p></p>
<?php
- echo __('<b>Using the monitor:</b><br/> Ok, you are good to go! Once you click \'Start monitor\' your browser will refresh all displayed charts in a regular interval. You may add charts and change the refresh rate under \'Settings\', or remove any chart using the cog icon on each respective chart. <p>To display queries from the logs, select the relevant time span on any chart by holding down the left mouse button and panning over the chart. Once confirmed, this will load a table of grouped queries, there you may click on any occuring SELECT statements to further analyze them.</p>');
+ echo '<strong>';
+ echo __('Using the monitor:');
+ echo '</strong><p>';
+ echo __('Ok, you are good to go! Once you click \'Start monitor\' your browser will refresh all displayed charts in a regular interval. You may add charts and change the refresh rate under \'Settings\', or remove any chart using the cog icon on each respective chart.');
+ echo '</p><p>';
+ echo __('To display queries from the logs, select the relevant time span on any chart by holding down the left mouse button and panning over the chart. Once confirmed, this will load a table of grouped queries, there you may click on any occuring SELECT statements to further analyze them.');
+ echo '</p>';
?>
<p>
<img class="icon ic_s_attention" src="themes/dot.gif" alt="">
<?php
- echo __('<b>Please note:</b> Enabling the general_log may increase the server load by 5-15%. Also be aware that generating statistics from the logs is a load intensive task, so it is advisable to select only a small time span and to disable the general_log and empty its table once monitoring is not required any more.');
+ echo '<strong>';
+ echo __('Please note:');
+ echo '</strong><p>';
+ echo __('Enabling the general_log may increase the server load by 5-15%. Also be aware that generating statistics from the logs is a load intensive task, so it is advisable to select only a small time span and to disable the general_log and empty its table once monitoring is not required any more.');
+ echo '</p>';
?>
</p>
</div>
@@ -1508,7 +1528,7 @@ function printMonitor()
<div id="addChartDialog" title="Add chart" style="display:none;">
<div id="tabGridVariables">
<p><input type="text" name="chartTitle" value="<?php echo __('Chart Title'); ?>" /></p>
-
+
<input type="radio" name="chartType" value="preset" id="chartPreset">
<label for="chartPreset"><?php echo __('Preset chart'); ?></label>
<select name="presetCharts"></select><br/>
@@ -1583,7 +1603,13 @@ function printMonitor()
<?php echo __('Remove variable data in INSERT statements for better grouping'); ?>
</label>
- <?php echo __('<p>Choose from which log you want the statistics to be generated from.</p> Results are grouped by query text.'); ?>
+ <?php
+ echo '<p>';
+ echo __('Choose from which log you want the statistics to be generated from.');
+ echo '</p><p>';
+ echo __('Results are grouped by query text.');
+ echo '</p>';
+ ?>
</div>
<div id="queryAnalyzerDialog" title="<?php echo __('Query analyzer'); ?>" style="display:none;">
@@ -1656,4 +1682,4 @@ function cleanDeprecated(&$server_status)
* Sends the footer
*/
require './libraries/footer.inc.php';
-?>
\ No newline at end of file
+?>
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-14980-g7327dab
by Michal Čihař 15 Aug '11
by Michal Čihař 15 Aug '11
15 Aug '11
The branch, master has been updated
via 7327dab9361aa7095fc2c92f0489f8c8a159508d (commit)
from 8539600451db2175257a496f8bc17a3009ccee59 (commit)
- Log -----------------------------------------------------------------
commit 7327dab9361aa7095fc2c92f0489f8c8a159508d
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 10:01:10 2011 +0200
Include link to docs
-----------------------------------------------------------------------
Summary of changes:
libraries/Table.class.php | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/libraries/Table.class.php b/libraries/Table.class.php
index 87fb50a..512ca2e 100644
--- a/libraries/Table.class.php
+++ b/libraries/Table.class.php
@@ -1185,7 +1185,7 @@ class PMA_Table
*
* returns an array with all columns make use of an index, in fact only
* first columns in an index
- *
+ *
* e.g. index(col1, col2) would only return col1
*
* @param bool $backquoted whether to quote name with backticks ``
@@ -1290,7 +1290,10 @@ class PMA_Table
$success = PMA_DBI_try_query($sql_query, $GLOBALS['controllink']);
if (!$success) {
- $message = PMA_Message::error(__('Failed to cleanup table UI preferences (see cfg["Server"]["MaxTableUiprefs"] documentation)'));
+ $message = PMA_Message::error(sprintf(
+ __('Failed to cleanup table UI preferences (see $cfg[\'Servers\'][$i][\'MaxTableUiprefs\'] %s)'),
+ PMA_showDocu('cfg_Servers_MaxTableUiprefs')
+ ));
$message->addMessage('<br /><br />');
$message->addMessage(PMA_Message::rawError(PMA_DBI_getError($GLOBALS['controllink'])));
print_r($message);
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-14979-g8539600
by Michal Čihař 15 Aug '11
by Michal Čihař 15 Aug '11
15 Aug '11
The branch, master has been updated
via 8539600451db2175257a496f8bc17a3009ccee59 (commit)
from e5a15ca51998ab449767537483af11500b7e4d92 (commit)
- Log -----------------------------------------------------------------
commit 8539600451db2175257a496f8bc17a3009ccee59
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 09:57:08 2011 +0200
Use <strong> rather than <b>, remove it from translatable message
-----------------------------------------------------------------------
Summary of changes:
js/messages.php | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/js/messages.php b/js/messages.php
index 923761c..73bcac1 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -275,8 +275,8 @@ $js_messages['strDisplayHelp'] = '<ul><li>'
. '</li><li>'
. __('Strings are converted into integer for plotting')
. '</li></ul>';
-$js_messages['strInputNull'] = __('<b>Select two columns</b>');
-$js_messages['strSameInputs'] = __('<b>Select two different columns</b>');
+$js_messages['strInputNull'] = '<strong>' . __('Select two columns') . '</strong>';
+$js_messages['strSameInputs'] = '<strong>' . __('Select two different columns') . '</strong>';
/* For tbl_change.js */
$js_messages['strIgnore'] = __('Ignore');
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-14978-ge5a15ca
by Michal Čihař 15 Aug '11
by Michal Čihař 15 Aug '11
15 Aug '11
The branch, master has been updated
via e5a15ca51998ab449767537483af11500b7e4d92 (commit)
from adc6788103da8976b400b226eb698ca8212af9fe (commit)
- Log -----------------------------------------------------------------
commit e5a15ca51998ab449767537483af11500b7e4d92
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 09:55:58 2011 +0200
Translate as separate strings rather than huge string with HTML formatting
-----------------------------------------------------------------------
Summary of changes:
js/messages.php | 16 +++++++++++++++-
1 files changed, 15 insertions(+), 1 deletions(-)
diff --git a/js/messages.php b/js/messages.php
index b942a18..923761c 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -260,7 +260,21 @@ $js_messages['strShowSearchCriteria'] = __('Show search criteria');
/* For tbl_zoom_plot.js */
$js_messages['strZoomSearch'] = __('Zoom Search');
-$js_messages['strDisplayHelp'] = __('* Each point represents a data row.<br>* Hovering over a point will show its label.<br>* Drag and select an area in the plot to zoom into it.<br>* Click reset zoom link to come back to original state.<br>* Click a data point to view and possibly edit the data row.<br>* The plot can be resized by dragging it along the bottom right corner.<br>* Strings are converted into integer for plotting');
+$js_messages['strDisplayHelp'] = '<ul><li>'
+ . __('Each point represents a data row.')
+ . '</li><li>'
+ . __('Hovering over a point will show its label.')
+ . '</li><li>'
+ . __('Drag and select an area in the plot to zoom into it.')
+ . '</li><li>'
+ . __('Click reset zoom link to come back to original state.')
+ . '</li><li>'
+ . __('Click a data point to view and possibly edit the data row.')
+ . '</li><li>'
+ . __('The plot can be resized by dragging it along the bottom right corner.')
+ . '</li><li>'
+ . __('Strings are converted into integer for plotting')
+ . '</li></ul>';
$js_messages['strInputNull'] = __('<b>Select two columns</b>');
$js_messages['strSameInputs'] = __('<b>Select two different columns</b>');
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_2-14977-gadc6788
by Michal Čihař 15 Aug '11
by Michal Čihař 15 Aug '11
15 Aug '11
The branch, master has been updated
via adc6788103da8976b400b226eb698ca8212af9fe (commit)
via 1d071050733e206f79a593b717ad77d412abda9a (commit)
via f761845154a25aae5bd652d824264e63ba59f023 (commit)
via ff536da86576efe733e4dfb5d69c8481ae590e2e (commit)
from 9a2eed6728a425c5dafed6f2837104e7e0e65e16 (commit)
- Log -----------------------------------------------------------------
commit adc6788103da8976b400b226eb698ca8212af9fe
Merge: 9a2eed6 1d07105
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 09:52:28 2011 +0200
Merge remote-tracking branch 'origin/QA_3_4'
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_4, updated. RELEASE_3_4_3_2-62-g1d07105
by Michal Čihař 15 Aug '11
by Michal Čihař 15 Aug '11
15 Aug '11
The branch, QA_3_4 has been updated
via 1d071050733e206f79a593b717ad77d412abda9a (commit)
via f761845154a25aae5bd652d824264e63ba59f023 (commit)
via ff536da86576efe733e4dfb5d69c8481ae590e2e (commit)
from f7d3a72af0634f9ff20e25fc682a22b6402cfc1c (commit)
- Log -----------------------------------------------------------------
commit 1d071050733e206f79a593b717ad77d412abda9a
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 15 09:51:01 2011 +0200
Update translations from master
commit f761845154a25aae5bd652d824264e63ba59f023
Merge: f7d3a72 ff536da
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 15 09:48:46 2011 +0200
Merge remote-tracking branch 'origin/MAINT_3_4_3' into QA_3_4
-----------------------------------------------------------------------
Summary of changes:
po/ta.po | 155 ++++++++++++++++++++++++++++++++------------------------------
1 files changed, 80 insertions(+), 75 deletions(-)
diff --git a/po/ta.po b/po/ta.po
index 41e2638..99adc4b 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -20,7 +20,7 @@ msgstr ""
#: browse_foreigners.php:35 browse_foreigners.php:53
#: libraries/display_tbl.lib.php:341 server_privileges.php:1583
msgid "Show all"
-msgstr ""
+msgstr "அனைத்தையும் காட்டு"
#: browse_foreigners.php:70 libraries/common.lib.php:2332
#: libraries/display_tbl.lib.php:321 libraries/export/pdf.php:133
@@ -37,6 +37,9 @@ msgid ""
"parent window, or your browser's security settings are configured to block "
"cross-window updates."
msgstr ""
+"இலக்கு உலாவி சாளரம் மேம்படுத்தப்பட முடியவில்லை. ஒருவேளை நீங்கள் மூல சாளரத்தை "
+"மூடியிருக்க வேண்டும், அல்லது உங்கள் உலாவி பாதுகாப்பு அமைப்புகள் குறுக்கு-சாளர "
+"மேம்படுத்தல்களை தடுக்க உள்ளமைக்கப்பட்டிருக்கின்றன."
#: browse_foreigners.php:151 libraries/common.lib.php:2828
#: libraries/common.lib.php:2835 libraries/common.lib.php:3014
@@ -80,53 +83,53 @@ msgstr "செல் "
#: browse_foreigners.php:169 browse_foreigners.php:173
#: libraries/Index.class.php:441 tbl_tracking.php:314
msgid "Keyname"
-msgstr ""
+msgstr "முக்கியபெயர்"
#: browse_foreigners.php:170 browse_foreigners.php:172
#: server_collations.php:54 server_collations.php:66 server_engines.php:57
#: server_status.php:776
msgid "Description"
-msgstr ""
+msgstr "விளக்கம்"
#: browse_foreigners.php:248 browse_foreigners.php:257
#: browse_foreigners.php:269 browse_foreigners.php:277
msgid "Use this value"
-msgstr ""
+msgstr "இந்த மதிப்பை பயன்படுத்துக"
#: bs_disp_as_mime_type.php:29 bs_play_media.php:35
#: libraries/blobstreaming.lib.php:331
msgid "No blob streaming server configured!"
-msgstr ""
+msgstr "Blob தொடரோடி சேவையகம் கட்டமைக்கப்படவில்லை!"
#: bs_disp_as_mime_type.php:35
msgid "Failed to fetch headers"
-msgstr ""
+msgstr "தலைப்புக்களைப் பெறுவதில் தவறியது."
#: bs_disp_as_mime_type.php:41
msgid "Failed to open remote URL"
-msgstr ""
+msgstr "தொலை URL திறக்க தவறியது"
#: changelog.php:32 license.php:28
#, php-format
msgid ""
"The %s file is not available on this system, please visit www.phpmyadmin.net "
"for more information."
-msgstr ""
+msgstr "%s கோப்பு இந்த அமைப்பில் இல்லை, மேலும் தகவலுக்கு www.phpmyadmin.net செல்லுங்கள்"
#: db_create.php:58
#, php-format
msgid "Database %1$s has been created."
-msgstr ""
+msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட்டது"
#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
-msgstr ""
+msgstr "தரவுத்தள கருத்துரை"
#: db_datadict.php:158 libraries/schema/Pdf_Relation_Schema.class.php:1213
#: libraries/tbl_properties.inc.php:725 tbl_operations.php:358
#: tbl_printview.php:127
msgid "Table comments"
-msgstr ""
+msgstr "அட்டவணைக் கருத்துரைகள்"
#: db_datadict.php:167 db_qbe.php:196 libraries/Index.class.php:445
#: libraries/export/htmlword.php:247 libraries/export/latex.php:374
@@ -138,7 +141,7 @@ msgstr ""
#: tbl_relation.php:399 tbl_select.php:112 tbl_structure.php:198
#: tbl_tracking.php:267 tbl_tracking.php:318
msgid "Column"
-msgstr ""
+msgstr "நிரல்"
#: db_datadict.php:168 db_printview.php:104 libraries/Index.class.php:442
#: libraries/db_events.inc.php:25 libraries/db_routines.inc.php:36
@@ -153,7 +156,7 @@ msgstr ""
#: tbl_structure.php:199 tbl_structure.php:753 tbl_tracking.php:268
#: tbl_tracking.php:315
msgid "Type"
-msgstr ""
+msgstr "வகை"
#: db_datadict.php:170 libraries/Index.class.php:448
#: libraries/export/htmlword.php:249 libraries/export/latex.php:374
@@ -164,7 +167,7 @@ msgstr ""
#: tbl_printview.php:142 tbl_structure.php:202 tbl_tracking.php:270
#: tbl_tracking.php:321
msgid "Null"
-msgstr ""
+msgstr "வெற்று"
#: db_datadict.php:171 db_structure.php:460 libraries/export/htmlword.php:250
#: libraries/export/latex.php:374 libraries/export/odt.php:310
@@ -174,7 +177,7 @@ msgstr ""
#: libraries/tbl_properties.inc.php:105 tbl_printview.php:143
#: tbl_structure.php:203 tbl_tracking.php:271
msgid "Default"
-msgstr ""
+msgstr "முன்னிருப்பு"
#: db_datadict.php:175 libraries/export/htmlword.php:252
#: libraries/export/latex.php:376 libraries/export/odt.php:314
@@ -182,7 +185,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1245
#: libraries/schema/Pdf_Relation_Schema.class.php:1266 tbl_printview.php:147
msgid "Links to"
-msgstr ""
+msgstr "இணைப்பு"
#: db_datadict.php:177 db_printview.php:110
#: libraries/config/messages.inc.php:92 libraries/config/messages.inc.php:107
@@ -193,7 +196,7 @@ msgstr ""
#: libraries/schema/Pdf_Relation_Schema.class.php:1267
#: libraries/tbl_properties.inc.php:128 tbl_printview.php:149
msgid "Comments"
-msgstr ""
+msgstr "கருத்துரைகள்"
#: db_datadict.php:260 js/messages.php:78 libraries/Index.class.php:358
#: libraries/Index.class.php:385 libraries/config.values.php:45
@@ -209,7 +212,7 @@ msgstr ""
#: server_privileges.php:2268 sql.php:238 sql.php:299 tbl_printview.php:226
#: tbl_structure.php:374 tbl_tracking.php:331 tbl_tracking.php:336
msgid "No"
-msgstr ""
+msgstr "இல்லை"
#: db_datadict.php:260 js/messages.php:77 libraries/Index.class.php:359
#: libraries/Index.class.php:384 libraries/config.values.php:45
@@ -229,46 +232,46 @@ msgstr ""
#: tbl_printview.php:226 tbl_structure.php:39 tbl_structure.php:374
#: tbl_tracking.php:329 tbl_tracking.php:334
msgid "Yes"
-msgstr ""
+msgstr "ஆம்"
#: db_datadict.php:315 db_printview.php:264 tbl_printview.php:495
msgid "Print"
-msgstr ""
+msgstr "அச்சிடு"
#: db_export.php:30
msgid "View dump (schema) of database"
-msgstr ""
+msgstr "தரவுத்தளத்தின் திட்ட வடிவத்தைப் பார்"
#: db_export.php:34 db_printview.php:94 db_qbe.php:101 db_tracking.php:48
#: export.php:371 navigation.php:303
msgid "No tables found in database."
-msgstr ""
+msgstr "அட்டவணைகள் எதுவும் தரவுத்தளத்தில் காணப்படவில்லை"
#: db_export.php:44 db_search.php:340 server_export.php:26
msgid "Select All"
-msgstr ""
+msgstr "அனைத்தையும் தெரிவுசெய்"
#: db_export.php:46 db_search.php:343 server_export.php:28
msgid "Unselect All"
-msgstr ""
+msgstr "அனைத்து தெரிவுகளையும் நீக்கு"
#: db_operations.php:41 tbl_create.php:48
msgid "The database name is empty!"
-msgstr ""
+msgstr "தரவுத்தளப் பெயர் வெறுமையாக உள்ளது"
#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
-msgstr ""
+msgstr "%s தரவுத்தளமானது %s ஆக பெயர் மாற்றப்பட்டது"
#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
-msgstr ""
+msgstr "%s தரவுத்தளமானது %s இற்கு பிரதி செய்யப்பட்டது"
#: db_operations.php:404
msgid "Rename database to"
-msgstr ""
+msgstr "தரவுத்தளத்தைப் பெயர் மாற்ற"
#: db_operations.php:409 server_processlist.php:69
msgid "Command"
@@ -276,36 +279,36 @@ msgstr ""
#: db_operations.php:440
msgid "Remove database"
-msgstr ""
+msgstr "தரவுத்தளத்தை நீக்கு"
#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
-msgstr ""
+msgstr "%s தரவுத்தளம் இரத்துசெய்யப்பட்டது"
#: db_operations.php:457
msgid "Drop the database (DROP)"
-msgstr ""
+msgstr "தரவுத்தளத்தை இரத்து செய் (DROP)"
#: db_operations.php:487
msgid "Copy database to"
-msgstr ""
+msgstr "தரவுத்தளத்தை பிரதிசெய்"
#: db_operations.php:494 tbl_operations.php:544 tbl_tracking.php:382
msgid "Structure only"
-msgstr ""
+msgstr "கட்டமைப்பை மட்டும்"
#: db_operations.php:495 tbl_operations.php:545 tbl_tracking.php:384
msgid "Structure and data"
-msgstr ""
+msgstr "கட்டமைப்பு மற்றும் தரவுகள்"
#: db_operations.php:496 tbl_operations.php:546 tbl_tracking.php:383
msgid "Data only"
-msgstr ""
+msgstr "தரவுகளை மட்டும்"
#: db_operations.php:504
msgid "CREATE DATABASE before copying"
-msgstr ""
+msgstr "பிரதிசெய்யமுன் தரவுத்தளத்தை உருவாக்கு"
#: db_operations.php:507 libraries/config/messages.inc.php:124
#: libraries/config/messages.inc.php:125 libraries/config/messages.inc.php:127
@@ -325,7 +328,7 @@ msgstr "தடைகளை சேர்க்க"
#: db_operations.php:528
msgid "Switch to copied database"
-msgstr ""
+msgstr "பிரதியான தரவுதளத்துக்கு மாறு"
#: db_operations.php:552 libraries/Index.class.php:447
#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
@@ -335,7 +338,7 @@ msgstr ""
#: tbl_structure.php:200 tbl_structure.php:861 tbl_tracking.php:269
#: tbl_tracking.php:320
msgid "Collation"
-msgstr ""
+msgstr "அடுக்கு"
#: db_operations.php:565
#, php-format
@@ -343,10 +346,12 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
+"PhpMyAdmin கட்டமைப்பு சேமிப்பகம் முடக்க செய்யப்பட்டுள்ளது. ஏன் எனக் கண்டுபிடிக்க %shere%s "
+"கிளிக் செய்யவும்"
#: db_operations.php:600
msgid "Edit or export relational schema"
-msgstr ""
+msgstr "தொடர்புசார் திட்டத்தை திருத்த அல்லது ஏற்ற"
#: db_printview.php:102 db_tracking.php:85 db_tracking.php:186
#: libraries/config/messages.inc.php:488 libraries/db_structure.lib.php:37
@@ -356,7 +361,7 @@ msgstr ""
#: server_privileges.php:2065 server_synchronize.php:422
#: server_synchronize.php:865 tbl_tracking.php:586 test/theme.php:74
msgid "Table"
-msgstr ""
+msgstr "அட்டவணை"
#: db_printview.php:103 libraries/build_html_for_db.lib.php:30
#: libraries/db_structure.lib.php:47 libraries/header_printview.inc.php:62
@@ -364,37 +369,37 @@ msgstr ""
#: tbl_printview.php:391 tbl_structure.php:389 tbl_structure.php:475
#: tbl_structure.php:871
msgid "Rows"
-msgstr ""
+msgstr "வரிசைகள்"
#: db_printview.php:107 libraries/db_structure.lib.php:58 tbl_indexes.php:188
msgid "Size"
-msgstr ""
+msgstr "அளவு"
#: db_printview.php:160 db_structure.php:416 libraries/export/sql.php:636
#: libraries/export/sql.php:967
msgid "in use"
-msgstr ""
+msgstr "பயன்பாட்டில்"
#: db_printview.php:185 libraries/db_info.inc.php:86
#: libraries/export/sql.php:591
#: libraries/schema/Pdf_Relation_Schema.class.php:1218 tbl_printview.php:431
#: tbl_structure.php:903
msgid "Creation"
-msgstr ""
+msgstr "உருவாக்கம்"
#: db_printview.php:194 libraries/db_info.inc.php:91
#: libraries/export/sql.php:596
#: libraries/schema/Pdf_Relation_Schema.class.php:1223 tbl_printview.php:441
#: tbl_structure.php:911
msgid "Last update"
-msgstr ""
+msgstr "இறுதி இற்றைப்படுத்தல்"
#: db_printview.php:203 libraries/db_info.inc.php:96
#: libraries/export/sql.php:601
#: libraries/schema/Pdf_Relation_Schema.class.php:1228 tbl_printview.php:451
#: tbl_structure.php:919
msgid "Last check"
-msgstr ""
+msgstr "கடைசி சோதனை"
#: db_printview.php:220 db_structure.php:439
#, php-format
@@ -405,7 +410,7 @@ msgstr[1] ""
#: db_qbe.php:41
msgid "You have to choose at least one column to display"
-msgstr ""
+msgstr "காட்சிப்படுத்த நீங்கள் குறைந்தபட்சம் ஒரு நிரலை தேர்ந்தெடுக்க வேண்டும்"
#: db_qbe.php:186
msgid "Switch to"
@@ -418,52 +423,52 @@ msgstr ""
#: db_qbe.php:222 libraries/db_structure.lib.php:95
#: libraries/display_tbl.lib.php:858
msgid "Sort"
-msgstr ""
+msgstr "வரிசைப்படுத்து"
#: db_qbe.php:231 db_qbe.php:265 libraries/db_structure.lib.php:102
#: libraries/display_tbl.lib.php:510 libraries/display_tbl.lib.php:819
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:271
#: tbl_select.php:277
msgid "Ascending"
-msgstr ""
+msgstr "ஏறுவரிசை"
#: db_qbe.php:232 db_qbe.php:273 libraries/db_structure.lib.php:110
#: libraries/display_tbl.lib.php:515 libraries/display_tbl.lib.php:816
#: server_databases.php:158 server_databases.php:175 tbl_operations.php:272
#: tbl_select.php:278
msgid "Descending"
-msgstr ""
+msgstr "இறங்குவரிசை"
#: db_qbe.php:286 db_tracking.php:91 libraries/display_tbl.lib.php:390
#: tbl_change.php:278 tbl_tracking.php:591
msgid "Show"
-msgstr ""
+msgstr "காண்பி"
#: db_qbe.php:322
msgid "Criteria"
-msgstr ""
+msgstr "தேர்வளவை"
#: db_qbe.php:375 db_qbe.php:457 db_qbe.php:549 db_qbe.php:580
msgid "Ins"
-msgstr ""
+msgstr "துணைநிரல்கள்"
#: db_qbe.php:379 db_qbe.php:461 db_qbe.php:546 db_qbe.php:577
msgid "And"
-msgstr ""
+msgstr "மற்றும்"
#: db_qbe.php:388 db_qbe.php:469 db_qbe.php:551 db_qbe.php:582
msgid "Del"
-msgstr ""
+msgstr "அழி"
#: db_qbe.php:392 db_qbe.php:473 db_qbe.php:544 db_qbe.php:575
#: libraries/tbl_properties.inc.php:779 server_privileges.php:307
#: tbl_change.php:965 tbl_indexes.php:248 tbl_select.php:251
msgid "Or"
-msgstr ""
+msgstr "அல்லது"
#: db_qbe.php:529
msgid "Modify"
-msgstr ""
+msgstr "மாற்று"
#: db_qbe.php:606
#, fuzzy
@@ -479,20 +484,20 @@ msgstr "கள நிரல்களை சேர்க்க/ நீக்க
#: db_qbe.php:631 db_qbe.php:656
msgid "Update Query"
-msgstr ""
+msgstr "வினவலை புதுப்பி"
#: db_qbe.php:639
msgid "Use Tables"
-msgstr ""
+msgstr "அட்டவணைகளை பயன்படுத்துக"
#: db_qbe.php:662
#, php-format
msgid "SQL query on database <b>%s</b>:"
-msgstr ""
+msgstr "தரவுத்தளம் மீது <b>%s</b SQL வினவல்:"
#: db_qbe.php:956 libraries/common.lib.php:1188
msgid "Submit Query"
-msgstr ""
+msgstr "வினவலை சமர்ப்பி"
#: db_search.php:52 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
@@ -503,24 +508,24 @@ msgstr "அனுமதி நிராகரிக்கப்பட்டு
#: db_search.php:64 db_search.php:307
msgid "at least one of the words"
-msgstr ""
+msgstr "குறைந்தபட்சம் ஒரு சொல்லையாவது"
#: db_search.php:65 db_search.php:308
msgid "all words"
-msgstr ""
+msgstr "அனைத்து சொற்களும்"
#: db_search.php:66 db_search.php:309
msgid "the exact phrase"
-msgstr ""
+msgstr "சரியான சொற்றொடர்"
#: db_search.php:67 db_search.php:310
msgid "as regular expression"
-msgstr ""
+msgstr "வழக்கமான வெளிப்பாடு"
#: db_search.php:229
#, php-format
msgid "Search results for \"<i>%s</i>\" %s:"
-msgstr ""
+msgstr "\"<i>%s</i>\" %s இற்கான தேடல் முடிவுகள்:"
#: db_search.php:247
#, php-format
@@ -533,12 +538,12 @@ msgstr[1] ""
#: libraries/common.lib.php:3012 libraries/common.lib.php:3013
#: libraries/tbl_links.inc.php:48 tbl_structure.php:560
msgid "Browse"
-msgstr ""
+msgstr "உலாவு"
#: db_search.php:259
#, php-format
msgid "Delete the matches for the %s table?"
-msgstr ""
+msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?"
#: db_search.php:259 libraries/display_tbl.lib.php:1229
#: libraries/display_tbl.lib.php:2159
@@ -549,7 +554,7 @@ msgstr ""
#: libraries/sql_query_form.lib.php:447 pmd_general.php:423
#: setup/frames/index.inc.php:126 setup/frames/index.inc.php:217
msgid "Delete"
-msgstr ""
+msgstr "அழி"
#: db_search.php:272
#, php-format
@@ -560,7 +565,7 @@ msgstr[1] ""
#: db_search.php:295
msgid "Search in database"
-msgstr ""
+msgstr "தரவுத்தளத்தில் தேடு"
#: db_search.php:298
msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
@@ -568,11 +573,11 @@ msgstr ""
#: db_search.php:303
msgid "Find:"
-msgstr ""
+msgstr "கண்டறி:"
#: db_search.php:307 db_search.php:308
msgid "Words are separated by a space character (\" \")."
-msgstr ""
+msgstr "சொற்கள் ஓர் இடைவெளி எழுத்தால் (\" \") பிரிக்கப்பட்டிருக்கும்."
#: db_search.php:321
msgid "Inside table(s):"
@@ -580,16 +585,16 @@ msgstr ""
#: db_search.php:351
msgid "Inside column:"
-msgstr ""
+msgstr "நிரல் உள்ளே:"
#: db_structure.php:59
msgid "No tables found in database"
-msgstr ""
+msgstr "தரவுத்தளத்தில் அட்டவணைகள் எதுவுமில்லை"
#: db_structure.php:277 tbl_operations.php:684
#, php-format
msgid "Table %s has been emptied"
-msgstr ""
+msgstr "%s அட்டவணை வெறுமை செய்யப்பட்டது"
#: db_structure.php:286 tbl_operations.php:701
#, php-format
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-14985-g9a2eed6
by Michal Čihař 15 Aug '11
by Michal Čihař 15 Aug '11
15 Aug '11
The branch, master has been updated
via 9a2eed6728a425c5dafed6f2837104e7e0e65e16 (commit)
via cbf2ec708a93cd65826b532481288dbee87eb2f1 (commit)
from 48c30d27dca534ff4ab9a4ea535a5c0ee550cb5c (commit)
- Log -----------------------------------------------------------------
commit 9a2eed6728a425c5dafed6f2837104e7e0e65e16
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 09:45:01 2011 +0200
Update po files
commit cbf2ec708a93cd65826b532481288dbee87eb2f1
Author: Michal Čihař <michal(a)cihar.com>
Date: Mon Aug 15 09:43:11 2011 +0200
Do not translate internal string
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 8 +-------
po/ar.po | 8 +-------
po/az.po | 8 +-------
po/be.po | 8 +-------
po/be(a)latin.po | 8 +-------
po/bg.po | 8 +-------
po/bn.po | 8 +-------
po/br.po | 8 +-------
po/bs.po | 8 +-------
po/ca.po | 8 +-------
po/cs.po | 8 +-------
po/cy.po | 8 +-------
po/da.po | 8 +-------
po/de.po | 8 +-------
po/el.po | 8 +-------
po/en_GB.po | 8 +-------
po/es.po | 8 +-------
po/et.po | 8 +-------
po/eu.po | 8 +-------
po/fa.po | 8 +-------
po/fi.po | 8 +-------
po/fr.po | 8 +-------
po/gl.po | 8 +-------
po/he.po | 8 +-------
po/hi.po | 8 +-------
po/hr.po | 8 +-------
po/hu.po | 8 +-------
po/id.po | 8 +-------
po/it.po | 8 +-------
po/ja.po | 8 +-------
po/ka.po | 8 +-------
po/ko.po | 8 +-------
po/lt.po | 8 +-------
po/lv.po | 8 +-------
po/mk.po | 8 +-------
po/ml.po | 8 +-------
po/mn.po | 8 +-------
po/ms.po | 8 +-------
po/nb.po | 8 +-------
po/nl.po | 8 +-------
po/phpmyadmin.pot | 8 +-------
po/pl.po | 8 +-------
po/pt.po | 8 +-------
po/pt_BR.po | 8 +-------
po/ro.po | 8 +-------
po/ru.po | 8 +-------
po/si.po | 8 +-------
po/sk.po | 8 +-------
po/sl.po | 8 +-------
po/sq.po | 8 +-------
po/sr.po | 8 +-------
po/sr(a)latin.po | 8 +-------
po/sv.po | 8 +-------
po/ta.po | 8 +-------
po/te.po | 8 +-------
po/th.po | 8 +-------
po/tr.po | 8 +-------
po/tt.po | 8 +-------
po/ug.po | 8 +-------
po/uk.po | 8 +-------
po/ur.po | 8 +-------
po/uz.po | 8 +-------
po/uz(a)latin.po | 8 +-------
po/zh_CN.po | 8 +-------
po/zh_TW.po | 8 +-------
tbl_zoom_select.php | 14 +++++++-------
66 files changed, 72 insertions(+), 462 deletions(-)
diff --git a/po/af.po b/po/af.po
index 06dd4a6..4ea27bb 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\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"
@@ -11274,12 +11274,6 @@ msgstr ""
msgid "Create version"
msgstr "Bediener weergawe"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/ar.po b/po/ar.po
index b81866e..6b704e0 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-07 03:51+0200\n"
"Last-Translator: Abdullah Al-Saedi <abdullah.10(a)windowslive.com>\n"
"Language-Team: arabic <ar(a)li.org>\n"
@@ -11268,12 +11268,6 @@ msgstr "تتبع تقارير التلاعب بالبيانات:"
msgid "Create version"
msgstr "إنشاء إصدار"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/az.po b/po/az.po
index 6d22d2d..3c4045f 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani <az(a)li.org>\n"
@@ -11477,12 +11477,6 @@ msgstr ""
msgid "Create version"
msgstr "Server versiyası"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/be.po b/po/be.po
index e548af8..f783d78 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\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"
@@ -11914,12 +11914,6 @@ msgstr ""
msgid "Create version"
msgstr "Стварыць сувязь"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 12632fa..4e1549a 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\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"
@@ -11879,12 +11879,6 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/bg.po b/po/bg.po
index c2f2940..d6e2ee0 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-07-19 14:58+0200\n"
"Last-Translator: <stoyanster(a)gmail.com>\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
@@ -10988,12 +10988,6 @@ msgstr ""
msgid "Create version"
msgstr "Създаване на версия"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/bn.po b/po/bn.po
index 75f0e5d..7002e3d 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন <nobin(a)cyberbogra.com>\n"
"Language-Team: bangla <bn(a)li.org>\n"
@@ -11768,12 +11768,6 @@ msgstr ""
msgid "Create version"
msgstr "Server version"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/br.po b/po/br.po
index 1c362f3..83ec887 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-10 22:33+0200\n"
"Last-Translator: Fulup <fulup.jakez(a)ofis-bzh.org>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
@@ -10897,12 +10897,6 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
diff --git a/po/bs.po b/po/bs.po
index 79a29ad..6056a8d 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian <bs(a)li.org>\n"
@@ -11461,12 +11461,6 @@ msgstr ""
msgid "Create version"
msgstr "Verzija servera"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/ca.po b/po/ca.po
index f75d093..222039a 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro <xvnavarro(a)gmail.com>\n"
"Language-Team: catalan <ca(a)li.org>\n"
@@ -11790,12 +11790,6 @@ msgstr "Segueix aquestes declaracions de manipulació de dades:"
msgid "Create version"
msgstr "Crea versió"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/cs.po b/po/cs.po
index 1f78c5e..175fe04 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-11 11:38+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
@@ -11352,12 +11352,6 @@ msgstr "Sledovat tyto příkazy pro úpravu dat:"
msgid "Create version"
msgstr "Vytvořit verzi"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/cy.po b/po/cy.po
index f236051..caa0014 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: <ardavies(a)tiscali.co.uk>\n"
"Language-Team: Welsh <cy(a)li.org>\n"
@@ -11302,12 +11302,6 @@ msgstr "Traciwch y datganiadau trin data hyn:"
msgid "Create version"
msgstr "Crëwch fersiwn"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
diff --git a/po/da.po b/po/da.po
index 4602822..50ae99a 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-07-23 21:27+0200\n"
"Last-Translator: Jørgen Thomsen <opensource(a)jth.net>\n"
"Language-Team: danish <da(a)li.org>\n"
@@ -11566,12 +11566,6 @@ msgstr "Spor disse datamanipulations-forespørgsler:"
msgid "Create version"
msgstr "Opret version"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/de.po b/po/de.po
index a32a26f..240b9a8 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-13 02:00+0200\n"
"Last-Translator: Sven Strickroth <email(a)cs-ware.de>\n"
"Language-Team: german <de(a)li.org>\n"
@@ -11646,12 +11646,6 @@ msgstr "Verfolge diese Datenbearbeitungsbefehle (DML):"
msgid "Create version"
msgstr "Erzeuge Version"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/el.po b/po/el.po
index 22224d5..437e424 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-07-29 14:17+0200\n"
"Last-Translator: Panagiotis Papazoglou <papaz_p(a)yahoo.com>\n"
"Language-Team: greek <el(a)li.org>\n"
@@ -11729,12 +11729,6 @@ msgstr "Παρακολούθηση αυτών των δηλώσεων χειρι
msgid "Create version"
msgstr "Δημιουργία έκδοσης"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/en_GB.po b/po/en_GB.po
index 473d825..fc3fb33 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-04 21:47+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
@@ -11456,12 +11456,6 @@ msgstr "Track these data manipulation statements:"
msgid "Create version"
msgstr "Create version"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/es.po b/po/es.po
index 05593f1..dfe0a8a 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-10 16:45+0200\n"
"Last-Translator: Matías Bellone <matiasbellone(a)gmail.com>\n"
"Language-Team: spanish <es(a)li.org>\n"
@@ -11683,12 +11683,6 @@ msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:"
msgid "Create version"
msgstr "Crear versión"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/et.po b/po/et.po
index 06319b6..932d78b 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian <et(a)li.org>\n"
@@ -11767,12 +11767,6 @@ msgstr ""
msgid "Create version"
msgstr "Suhte loomine (relation)"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/eu.po b/po/eu.po
index f53c5dc..496d1e9 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: basque <eu(a)li.org>\n"
@@ -11486,12 +11486,6 @@ msgstr ""
msgid "Create version"
msgstr "Zerbitzariaren bertsioa"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/fa.po b/po/fa.po
index 7354454..826e7c7 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: <ahmad_usa2007(a)yahoo.com>\n"
"Language-Team: persian <fa(a)li.org>\n"
@@ -11239,12 +11239,6 @@ msgstr ""
msgid "Create version"
msgstr "نسخه سرور"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/fi.po b/po/fi.po
index 4a98b07..d332d97 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: <asdfsdf(a)asdfasdfasdf.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -12130,12 +12130,6 @@ msgstr "Seuraa näitä tiedon käsittelyn lauseita:"
msgid "Create version"
msgstr "Luo versio"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/fr.po b/po/fr.po
index 47098af..04a7f44 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-04 21:49+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -11605,12 +11605,6 @@ msgstr "Suivre les énoncés de manipulation de données suivants :"
msgid "Create version"
msgstr "Créer une version"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/gl.po b/po/gl.po
index 5a7f395..6951293 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: galician <gl(a)li.org>\n"
@@ -12367,12 +12367,6 @@ msgstr "Seguir estas declaracións de manipulación de datos:"
msgid "Create version"
msgstr "Crear unha versión"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/he.po b/po/he.po
index 6e9d054..cbc1d2e 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: <zippoxer(a)gmail.com>\n"
"Language-Team: hebrew <he(a)li.org>\n"
@@ -11406,12 +11406,6 @@ msgstr ""
msgid "Create version"
msgstr "גרסת שרת"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/hi.po b/po/hi.po
index 37e8556..d00488b 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-07-24 19:04+0200\n"
"Last-Translator: <deadefy(a)nepalimail.com>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -11218,12 +11218,6 @@ msgstr "डेटा आपरेशन पर नज़र रखना"
msgid "Create version"
msgstr "संस्करण बनाएँ"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
diff --git a/po/hr.po b/po/hr.po
index 338791c..a0e0cd6 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle <marc(a)infomarc.info>\n"
"Language-Team: croatian <hr(a)li.org>\n"
@@ -11870,12 +11870,6 @@ msgstr ""
msgid "Create version"
msgstr "Izradi relaciju"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/hu.po b/po/hu.po
index f83ae7b..d044fec 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
"Last-Translator: <slygyor(a)gmail.com>\n"
"Language-Team: hungarian <hu(a)li.org>\n"
@@ -11957,12 +11957,6 @@ msgstr ""
msgid "Create version"
msgstr "Verzió létrehozása"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/id.po b/po/id.po
index df95a6a..e78e1bbd 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-06-18 11:34+0200\n"
"Last-Translator: <udin.mx(a)gmail.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -11517,12 +11517,6 @@ msgstr "Lacak manipulasi data dari pernyataan berikut:"
msgid "Create version"
msgstr "Membuat versi"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/it.po b/po/it.po
index 87c7eda..2db7e06 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-07-22 19:13+0200\n"
"Last-Translator: Rouslan Placella <rouslan(a)placella.com>\n"
"Language-Team: italian <it(a)li.org>\n"
@@ -11678,12 +11678,6 @@ msgstr "Monitora le istuzioni delle manipulazioni dei dati:"
msgid "Create version"
msgstr "Crea versione"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/ja.po b/po/ja.po
index 5e41341..bfba88f 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-13 12:52+0200\n"
"Last-Translator: Yuichiro <yuichiro(a)pop07.odn.ne.jp>\n"
"Language-Team: japanese <jp(a)li.org>\n"
@@ -11415,12 +11415,6 @@ msgstr "追跡するデータ操作コマンド"
msgid "Create version"
msgstr "バージョンを作成"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/ka.po b/po/ka.po
index 11d5908..80ac408 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian <ka(a)li.org>\n"
@@ -12200,12 +12200,6 @@ msgstr ""
msgid "Create version"
msgstr "Create relation"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/ko.po b/po/ko.po
index a9f262b..503c674 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-05 14:17+0200\n"
"Last-Translator: Chung-Ook Lee <hantip(a)gmail.com>\n"
"Language-Team: korean <ko(a)li.org>\n"
@@ -11287,12 +11287,6 @@ msgstr ""
msgid "Create version"
msgstr "서버 버전"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/lt.po b/po/lt.po
index 6c75d61..2c7dd20 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-08-08 18:05+0200\n"
"Last-Translator: Kęstutis <forkik(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
@@ -11238,12 +11238,6 @@ msgstr ""
msgid "Create version"
msgstr "Sukurti versiją"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/lv.po b/po/lv.po
index 4862a2e..545593c 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian <lv(a)li.org>\n"
@@ -11513,12 +11513,6 @@ msgstr ""
msgid "Create version"
msgstr "Servera versija"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/mk.po b/po/mk.po
index 81e8eaf..2469c46 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: <sjanevski(a)gmail.com>\n"
"Language-Team: macedonian_cyrillic <mk(a)li.org>\n"
@@ -11582,12 +11582,6 @@ msgstr ""
msgid "Create version"
msgstr "Верзија на серверот"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/ml.po b/po/ml.po
index 42b0af0..751ad3a 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,7 +5,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: Malayalam <ml(a)li.org>\n"
@@ -10661,12 +10661,6 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
msgid "Do a \"query by example\" (wildcard: \"%\") for two different columns"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index f8e32a4..fa99dc9 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian <mn(a)li.org>\n"
@@ -11592,12 +11592,6 @@ msgstr ""
msgid "Create version"
msgstr ""
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/ms.po b/po/ms.po
index 91e8c74..de9ca2d 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay <ms(a)li.org>\n"
@@ -11317,12 +11317,6 @@ msgstr ""
msgid "Create version"
msgstr "Versi Pelayan"
-#: tbl_zoom_select.php:103 tbl_zoom_select.php:108 tbl_zoom_select.php:158
-#: tbl_zoom_select.php:175 tbl_zoom_select.php:275 tbl_zoom_select.php:323
-#: tbl_zoom_select.php:335
-msgid "pma_null"
-msgstr ""
-
#: tbl_zoom_select.php:140
#, fuzzy
#| msgid "Do a \"query by example\" (wildcard: \"%\")"
diff --git a/po/nb.po b/po/nb.po
index e78f311..00dbf67 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-08-15 09:40+0200\n"
+"POT-Creation-Date: 2011-08-15 09:43+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař <michal(a)cihar.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
@@ -11872,12 +11872,6 @@ msgstr "Spor disse datamanipu e.net\n"