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
- 10 participants
- 38613 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1407-g7337fe5
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via 7337fe5a0c74817214004b5524850f5a166046d4 (commit)
from f5a11a3f647332fe109af17c1af4246aec096648 (commit)
- Log -----------------------------------------------------------------
commit 7337fe5a0c74817214004b5524850f5a166046d4
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 15:14:54 2010 +0200
Factor out code for getting language name.
-----------------------------------------------------------------------
Summary of changes:
libraries/display_select_lang.lib.php | 8 +-------
libraries/select_lang.lib.php | 14 ++++++++++++++
setup/frames/index.inc.php | 14 ++------------
3 files changed, 17 insertions(+), 19 deletions(-)
diff --git a/libraries/display_select_lang.lib.php b/libraries/display_select_lang.lib.php
index f91ea0a..b9a164c 100644
--- a/libraries/display_select_lang.lib.php
+++ b/libraries/display_select_lang.lib.php
@@ -62,13 +62,7 @@ function PMA_select_language($use_fieldset = FALSE, $show_doc = TRUE) {
uasort($GLOBALS['available_languages'], 'PMA_language_cmp');
foreach ($GLOBALS['available_languages'] as $id => $tmplang) {
- $lang_name = ucfirst(substr(strrchr($tmplang[0], '|'), 1));
-
- // Include native name if non empty
- if (!empty($tmplang[2])) {
- $lang_name = $tmplang[2] . ' - '
- . $lang_name;
- }
+ $lang_name = PMA_langName($tmplang);
//Is current one active?
if ($lang == $id) {
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index 0f1ba8a..25ba464 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -11,6 +11,20 @@ if (! defined('PHPMYADMIN')) {
}
/**
+ * Returns language name
+ */
+function PMA_langName($tmplang) {
+ $lang_name = ucfirst(substr(strrchr($tmplang[0], '|'), 1));
+
+ // Include native name if non empty
+ if (!empty($tmplang[2])) {
+ $lang_name = $tmplang[2] . ' - ' . $lang_name;
+ }
+
+ return $lang_name;
+}
+
+/**
* tries to find the language to use
*
* @uses $GLOBALS['cfg']['lang']
diff --git a/setup/frames/index.inc.php b/setup/frames/index.inc.php
index 2da815b..aaa44be 100644
--- a/setup/frames/index.inc.php
+++ b/setup/frames/index.inc.php
@@ -74,13 +74,7 @@ if (!$is_https) {
// create language list
$lang_list = array();
foreach ($all_languages as $each_lang_key => $each_lang) {
-
- $lang_name = ucfirst(substr(strrchr($each_lang[0], '|'), 1));
- // Include native name if non empty
- if (!empty($each_lang[2])) {
- $lang_name = $each_lang[2] . ' - ' . $lang_name;
- }
-
+ $lang_name = PMA_langName($each_lang);
//Is current one active?
$selected = ($GLOBALS['lang'] == $each_lang_key) ? ' selected="selected"' : '';
echo '<option value="' . $each_lang_key . '"' . $selected . '>' . $lang_name
@@ -172,11 +166,7 @@ $opts = array(
'values' => array(),
'values_escaped' => true);
foreach ($all_languages as $each_lang_key => $each_lang) {
- $lang_name = ucfirst(substr(strrchr($each_lang[0], '|'), 1));
- // Include native name if non empty
- if (!empty($each_lang[2])) {
- $lang_name = $each_lang[2] . ' - ' . $lang_name;
- }
+ $lang_name = PMA_langName($each_lang);
$opts['values'][$each_lang_key] = $lang_name;
}
display_input('DefaultLang', $GLOBALS['strSetupDefaultLanguage'], '', 'select',
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1406-gf5a11a3
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via f5a11a3f647332fe109af17c1af4246aec096648 (commit)
from 5309444bba069bab9e744dd4a42d329bd1e54169 (commit)
- Log -----------------------------------------------------------------
commit f5a11a3f647332fe109af17c1af4246aec096648
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 15:08:05 2010 +0200
Bind event externally.
-----------------------------------------------------------------------
Summary of changes:
js/functions.js | 5 +++++
libraries/sql_query_form.lib.php | 10 +++++-----
2 files changed, 10 insertions(+), 5 deletions(-)
diff --git a/js/functions.js b/js/functions.js
index 699a0fe..447d1c6 100644
--- a/js/functions.js
+++ b/js/functions.js
@@ -1718,5 +1718,10 @@ $(document).ready(function(){
$("#btnDiscard").live("click",function(){
$(".sql").html("<span class=\"syntax\">"+$oldText+"</span>");
});
+
+ jQuery('.sqlbutton').click(function(evt){
+ insertQuery(evt.target.id);
+ return false;
+ });
});
diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php
index f7638ec..e00c1b8 100644
--- a/libraries/sql_query_form.lib.php
+++ b/libraries/sql_query_form.lib.php
@@ -298,11 +298,11 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter
.$auto_sel . $locking . '>' . htmlspecialchars($query) . '</textarea>' . "\n";
// Add buttons to generate query easily for select all,single select,insert,update and delete
if(count($fields_list)) {
- echo '<input type="button" value="' . __('SELECT *') . '" id="selectall" onclick="insertQuery(this.id)" />';
- echo '<input type="button" value="' . __('SELECT') . '" id="select" onclick="insertQuery(this.id)" />';
- echo '<input type="button" value="' . __('INSERT') . '" id="insert" onclick="insertQuery(this.id)" />';
- echo '<input type="button" value="' . __('UPDATE') . '" id="update" onclick="insertQuery(this.id)" />';
- echo '<input type="button" value="' . __('DELETE') . '" id="delete" onclick="insertQuery(this.id)" />';
+ echo '<input type="button" value="' . __('SELECT *') . '" id="selectall" class="sqlbutton" />';
+ echo '<input type="button" value="' . __('SELECT') . '" id="select" class="sqlbutton" />';
+ echo '<input type="button" value="' . __('INSERT') . '" id="insert" class="sqlbutton" />';
+ echo '<input type="button" value="' . __('UPDATE') . '" id="update" class="sqlbutton" />';
+ echo '<input type="button" value="' . __('DELETE') . '" id="delete" class="sqlbutton" />';
}
echo '</div>' . "\n";
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1405-g5309444
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via 5309444bba069bab9e744dd4a42d329bd1e54169 (commit)
from a4c00596fc16f51e4fbc20ddf00220253d1fad8f (commit)
- Log -----------------------------------------------------------------
commit 5309444bba069bab9e744dd4a42d329bd1e54169
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 14:59:53 2010 +0200
EOL / EOF cleanup (bug #2983922).
-----------------------------------------------------------------------
Summary of changes:
documentation-gsoc/Synchronization_User_Manual.htm | 714 ++++++++++----------
pmd/scripts/ajax.js | 2 +-
pmd/styles/default/style1.css | 2 +-
print.css | 2 +-
robots.txt | 4 +-
5 files changed, 362 insertions(+), 362 deletions(-)
diff --git a/documentation-gsoc/Synchronization_User_Manual.htm b/documentation-gsoc/Synchronization_User_Manual.htm
index 1e49d7f..840a25f 100644
--- a/documentation-gsoc/Synchronization_User_Manual.htm
+++ b/documentation-gsoc/Synchronization_User_Manual.htm
@@ -1,357 +1,357 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=Generator content="Microsoft Word 11 (filtered)">
-<title> �Synchronize� feature in </title>
-<style>
-<!--
- /* Font Definitions */
- @font-face
- {font-family:Tahoma;
- panose-1:2 11 6 4 3 5 4 4 2 4;}
-@font-face
- {font-family:Cambria;
- panose-1:2 4 5 3 5 4 6 3 2 4;}
-@font-face
- {font-family:Calibri;
- panose-1:2 15 5 2 2 2 4 3 2 4;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
- {margin-top:0in;
- margin-right:0in;
- margin-bottom:10.0pt;
- margin-left:0in;
- line-height:115%;
- font-size:11.0pt;
- font-family:Calibri;}
-h1
- {margin-top:24.0pt;
- margin-right:0in;
- margin-bottom:0in;
- margin-left:0in;
- margin-bottom:.0001pt;
- line-height:115%;
- page-break-after:avoid;
- font-size:14.0pt;
- font-family:Cambria;
- color:#365F91;}
-h2
- {margin-top:10.0pt;
- margin-right:0in;
- margin-bottom:0in;
- margin-left:0in;
- margin-bottom:.0001pt;
- line-height:115%;
- page-break-after:avoid;
- font-size:13.0pt;
- font-family:Cambria;
- color:#4F81BD;}
-h3
- {margin-right:0in;
- margin-left:0in;
- font-size:13.5pt;
- font-family:"Times New Roman";}
-strong
- {font-family:"Times New Roman";}
-p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
- {margin:0in;
- margin-bottom:.0001pt;
- font-size:8.0pt;
- font-family:Tahoma;}
-span.Heading3Char
- {font-family:"Times New Roman";
- font-weight:bold;}
-span.BalloonTextChar
- {font-family:Tahoma;}
-span.Heading1Char
- {font-family:Cambria;
- color:#365F91;
- font-weight:bold;}
-p.NoSpacing, li.NoSpacing, div.NoSpacing
- {margin:0in;
- margin-bottom:.0001pt;
- font-size:11.0pt;
- font-family:Calibri;}
-span.IntenseEmphasis
- {font-family:"Times New Roman";
- color:#4F81BD;
- font-weight:bold;
- font-style:italic;}
-span.Heading2Char
- {font-family:Cambria;
- color:#4F81BD;
- font-weight:bold;}
-@page Section1
- {size:8.5in 11.0in;
- margin:1.0in 1.0in 1.0in 1.0in;}
-div.Section1
- {page:Section1;}
--->
-</style>
-
-</head>
-
-<body lang=EN-US>
-
-<div class=Section1>
-
-<p class=MsoNormal><b><span style='font-size:13.0pt;line-height:115%;
-font-family:Cambria;color:#4F81BD'><img width=22 height=21 id="Picture 45"
-src="Synchronization_User_Manual_files/image001.jpg"
-alt=""></span></b><span
-class=Heading2Char><span style='font-size:13.0pt;line-height:115%'>��Synchronize�</span></span>
-feature in <img width=134 height=23 id="Picture 44"
-src="Synchronization_User_Manual_files/image002.gif"
-alt=""></p>
-
-This feature is helpful for developers who need to replicate their databases� structure as well as data.
-Moreover, this feature not only helps replication but also facilitates the user to keep his/her database in sync with another database. Other than the full database, certain tables of the databases can also be synchronized.
-
-<h3><span class=IntenseEmphasis><span style='font-size:12.0pt;font-weight:normal;
-font-style:normal'><strong>How to Synchronize:</strong></span></span></h3>
-The synchronize tab is visible upfront in the right pane, the last link on the top of the home page.
-
-<p class=MsoNormal><img width=682 height=421 id="Picture 1"
-src="Synchronization_User_Manual_files/image003.gif"></p>
-
-<p class=MsoNormal>Press on the Synchronize tab and a form will be displayed.</p>
-
-<p class=MsoNormal><img width=666 height=398 id="Picture 46"
-src="Synchronization_User_Manual_files/image004.jpg"></p>
-<p class=MsoNormal>�<span
-class=Heading2Char><span style='font-size:13.0pt;line-height:115%'>Db Authentication Form?</span></span></p>
-<p class=MsoNormal> You need to fill in the host name of the server, the
-username and password of an user account already there in MySQL. Port is by default populated with 3306 (MySQL default port). Then the name of the
-database should be mentioned at the end.All the information other than the port needs to be filled explicitly for the source as well as target servers.</p>
-
-<p class=MsoNormal>A filled form is displayed underneath:</p>
-
-<p class=MsoNormal><img width=653 height=394 id="Picture 7"
-src="Synchronization_User_Manual_files/image005.jpg"><span
-class=Heading2Char><span style='font-size:13.0pt;line-height:115%'>�</span></span></p>
-<p class=MsoNormal><span
-class=Heading2Char><span style='font-size:13.0pt;line-height:115%'>Invalid entries
- during DB Authentication:</span></span></p>
-<p class=MsoNormal>The user will not be allowed to by pass this page if any of
-the values like Host name, Username and Database name remain unfilled and the
-user presses �Go� button. An alert� would occur as follows, not allowing the user to
-move to the next page. On the other hand, the password field can remain empty.
-</p>
-
-<p class=MsoNormal><img width=640 height=384 id="Picture 10"
-src="Synchronization_User_Manual_files/image006.jpg"></p>
-
-<p class=MsoNormal>If any wrong information is provided by the user like wrong
-password, username or hostname then the connection is not established with the
-corresponding database and an error message is seen as follows.</p>
-
-<p class=MsoNormal><img width=653 height=394 id="Picture 13"
-src="Synchronization_User_Manual_files/image007.jpg"></p>
-
-<p class=MsoNormal>If the user enters a database name that does not exist, then
-even an error message occurs as follows and the user needs to re-enter all the
-information.</p>
-
-<p class=MsoNormal><img width=653 height=391 id="Picture 16"
-src="Synchronization_User_Manual_files/image008.jpg"></p>
-
-<p class=MsoNormal></p>
-
-<h2>After passing DB Authentication:</h2>
-
-<p class=MsoNormal>After successfully by passing authentication phase, the source and
-target database table names will be displayed. It will be a tabular
-representation like this.</p>
-
-<p class=MsoNormal><img width=614 height=368 id="Picture 19"
-src="Synchronization_User_Manual_files/image009.jpg"></p>
-
-<h2>Left Column:�Source Database�</h2>
-
-<p class=MsoNormal>On the left, are listed the source database table names.�
-Some of the names have a �+� plus sign preceding them. This shows that these
-tables are only present in source database and they need to be added to the
-target database in order to synchronize the target database.While those table name that are not preceded by a �+� sign
-are also present in target database.</p>
-
-<h2>�Middle Column:�Difference�</h2>
-The column in the middle shows the difference between the source and target corresponding tables.The difference is depicted by the red and green buttons.
-
-<p class=MsoNormal><img width=35 height=35 id="Picture 26"
-src="Synchronization_User_Manual_files/image010.gif"
-alt="">The
-presence of this button against any source table name shows that there is a
-structure difference between the corresponding source and the target tables. If
-at the same time, the source table name is preceded by a �+�plus, then the
-presence of this button shows that the table needs to be created in target
-database.� </p>
-
-<p class=MsoNormal><img width=35 height=35 id="Picture 24"
-src="Synchronization_User_Manual_files/image011.jpg"
-alt="">�The
-presence of this button against any source table name shows that there is a
-data difference between the corresponding source and target table. If at the
-same time, the source table name is preceded by a �+�plus, then the presence of
-this button shows that the table needs to be created and populated in target
-database.� </p>
-
-<p class=MsoNormal> </p>
-
-<p class=MsoNormal><img width=33 height=31 id="Picture 27"
-src="Synchronization_User_Manual_files/image012.jpg"
-alt="">�After
-clicking the red button with S printed on, it turns to grey showing that the structure difference
-of that particular table has been selected by the user.</p>
-
-<p class=MsoNormal><img width=33 height=31 id="Picture 25"
-src="Synchronization_User_Manual_files/image013.jpg"
-alt="">�After
-clicking the red button with a D printed on, it turns to grey showing that the data difference of
-that particular table has been selected by the user.</p>
-
-<h2>Right Column: �Target Database�</h2>
-
-<p class=MsoNormal>On the right, are listed the target database table names.
-There are few table names that have �(not present)� appended after their names.
-This means that these tables are to be created in target database in order to
-synchronize target database with source database. Some tables� names have a �-�
-minus sign preceding them. This shows that these tables are only present in
-target database and they will remain unchanged in the target database. </p>
-
-<p class=MsoNormal>While those table names that are not preceded by any sign,
-or do not have �(not present)� appended after them are already synchronized.</p>
-
-<p class=MsoNormal><img width=678 height=408 id="Picture 28"
-src="Synchronization_User_Manual_files/image014.jpg"></p>
-
-<h2>Detailed Difference Table:</h2>
-
-<p class=MsoNormal>�The above view shows that for those tables whose structure
-or data differences have been selected (depicted by grey buttons <img width=18
-height=17 src="Synchronization_User_Manual_files/image015.jpg"
-alt="">�or
-<img width=17 height=16 src="Synchronization_User_Manual_files/image016.jpg"
-alt="">),�
-there exists a description in the second table underneath the table showing
-source and target database table names.� The description becomes visible only
-when a red or green button against any table is pressed.</p>
-
-<h2>Table:</h2>
-
-<p class=MsoNormal>Displays the <b>Table Name</b> column only to show the name
-of the table.</p>
-
-<h2>Structure Difference:</h2>
-
-<p class=MsoNormal>�It elaborates the difference in structure like</p>
-
-<p class=MsoNormal><b>Create Table: </b>When the table needs to be created in
-the target database, then only a <img width=16 height=16 id="Picture 31"
-src="Synchronization_User_Manual_files/image017.gif"
-alt="">�tick is
-seen in the create table column of the description table.� </p>
-
-<p class=MsoNormal><b>Add Column(s):</b>� Shows the number of columns to be
-added.</p>
-
-<p class=MsoNormal><b>Remove Column(s):</b> Shows the number of columns to be
-removed.</p>
-
-<p class=MsoNormal><b>Alter Column(s):� </b>Shows the number of columns to be
-altered.</p>
-
-<p class=MsoNormal><b>Apply Index(s): </b>�Shows the number of indexes to be
-applied.</p>
-
-<p class=MsoNormal><b>Remove Index(s):</b>� Shows the number of indexes to be
-removed.</p>
-
-<h2>Data Difference:</h2>
-
-<p class=MsoNormal>It elaborates the difference in data like </p>
-
-<p class=MsoNormal><b>Update Row(s):</b> Shows the number of rows to be
-updated.</p>
-
-<p class=MsoNormal><b>Insert Row(s): </b>Shows the number of rows to be
-inserted. </p>
-
-<p class=MsoNormal>When the selected buttons (depicted by grey buttons <img
-width=18 height=17 src="Synchronization_User_Manual_files/image015.jpg"
-alt="">�or<img
-width=17 height=16 src="Synchronization_User_Manual_files/image016.jpg"
-alt="">)
-are pressed again, the buttons become deselected (depicted by colored buttons <img
-width=23 height=23 src="Synchronization_User_Manual_files/image019.jpg"
-alt="">�or<img
-width=23 height=23 src="Synchronization_User_Manual_files/image020.jpg"
-alt="">) and the
-description from the second table regarding those table has been removed.</p>
-
-<h2><span style='font-weight:normal'><img width=666 height=416 id="Picture 41"
-src="Synchronization_User_Manual_files/image021.jpg"></span></h2>
-
-<h2>Check Box in Footer:</h2>
-
-<p class=MsoNormal>A checkbox is also visible in the above view. It has a �<b>Would
-you like to delete all the previous rows from the target tables?</b>�</p>
-
-<p class=MsoNormal>By checking this check box, the user assures the deletion of
-any previous rows residing in the target tables that are to be synchronized.
-This means that before any value gets inserted or updated in the target tables,
-any previously residing rows will be deleted.</p>
-
-<h2>Apply Selected Changes Button in Footer: </h2>
-
-<p class=MsoNormal>The �Apply Selected Changes� button, as it is clear from the
-name, applies only selected tables� changes i.e. it allows user to synchronize
-selective tables between the source and the target databases.</p>
-
-<p class=MsoNormal>After pressing �Apply Selected Changes� button, the view
-becomes� </p>
-
-<p class=MsoNormal><img width=666 height=401 id="Picture 35"
-src="Synchronization_User_Manual_files/image022.jpg"></p>
-
-<p class=MsoNormal>The �course� table in the above view, now only shows data
-difference depicted by<img width=23 height=23
-src="Synchronization_User_Manual_files/image020.jpg"
-alt="">. This
-shows that the previously selected structure difference in that table has been
-applied in target database table �course� because we pressed the �Apply
-Selected Changes� button after selection. </p>
-
-<p class=MsoNormal>�Apply Selected Changes� button allows the user to synchronize
-tables� data and structure according to his/her requirement or desire.</p>
-
-<p class=MsoNormal>Whenever �Apply Selected Changes� button is pressed and the
-page is reloaded, the checkbox becomes unchecked. This means that the user gets
-a choice to delete the previous rows of a certain set of tables and not from
-all the tables. </p>
-
-<h2>Synchronize databases button in Footer:</h2>
-
-<p class=MsoNormal>�Synchronize databases� button in the footer completely
-synchronizes the target database with the source database irrespective of which
-tables are selected for which type of synchronization.</p>
-
-<p class=MsoNormal>��Synchronize databases� button if pressed after �Apply
-Selected Changes� button has been pressed once or twice or several times, will
-apply all the remaining changes that have not been selected earlier.</p>
-
-<p class=MsoNormal>The view after �Synchronize databases� button has been
-pressed look like this:</p>
-
-<p class=MsoNormal><img width=666 height=399 id="Picture 49"
-src="Synchronization_User_Manual_files/image023.jpg"></p>
-
-<p class=MsoNormal>The lower half of the page displays the list of queries that
-have been executed in order to synchronize the databases while the upper half
-displays the source and target database table names.</p>
-
-</div>
-
-</body>
-
-</html>
+<html>
+
+<head>
+<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
+<meta name=Generator content="Microsoft Word 11 (filtered)">
+<title> �Synchronize� feature in </title>
+<style>
+<!--
+ /* Font Definitions */
+ @font-face
+ {font-family:Tahoma;
+ panose-1:2 11 6 4 3 5 4 4 2 4;}
+@font-face
+ {font-family:Cambria;
+ panose-1:2 4 5 3 5 4 6 3 2 4;}
+@font-face
+ {font-family:Calibri;
+ panose-1:2 15 5 2 2 2 4 3 2 4;}
+ /* Style Definitions */
+ p.MsoNormal, li.MsoNormal, div.MsoNormal
+ {margin-top:0in;
+ margin-right:0in;
+ margin-bottom:10.0pt;
+ margin-left:0in;
+ line-height:115%;
+ font-size:11.0pt;
+ font-family:Calibri;}
+h1
+ {margin-top:24.0pt;
+ margin-right:0in;
+ margin-bottom:0in;
+ margin-left:0in;
+ margin-bottom:.0001pt;
+ line-height:115%;
+ page-break-after:avoid;
+ font-size:14.0pt;
+ font-family:Cambria;
+ color:#365F91;}
+h2
+ {margin-top:10.0pt;
+ margin-right:0in;
+ margin-bottom:0in;
+ margin-left:0in;
+ margin-bottom:.0001pt;
+ line-height:115%;
+ page-break-after:avoid;
+ font-size:13.0pt;
+ font-family:Cambria;
+ color:#4F81BD;}
+h3
+ {margin-right:0in;
+ margin-left:0in;
+ font-size:13.5pt;
+ font-family:"Times New Roman";}
+strong
+ {font-family:"Times New Roman";}
+p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
+ {margin:0in;
+ margin-bottom:.0001pt;
+ font-size:8.0pt;
+ font-family:Tahoma;}
+span.Heading3Char
+ {font-family:"Times New Roman";
+ font-weight:bold;}
+span.BalloonTextChar
+ {font-family:Tahoma;}
+span.Heading1Char
+ {font-family:Cambria;
+ color:#365F91;
+ font-weight:bold;}
+p.NoSpacing, li.NoSpacing, div.NoSpacing
+ {margin:0in;
+ margin-bottom:.0001pt;
+ font-size:11.0pt;
+ font-family:Calibri;}
+span.IntenseEmphasis
+ {font-family:"Times New Roman";
+ color:#4F81BD;
+ font-weight:bold;
+ font-style:italic;}
+span.Heading2Char
+ {font-family:Cambria;
+ color:#4F81BD;
+ font-weight:bold;}
+@page Section1
+ {size:8.5in 11.0in;
+ margin:1.0in 1.0in 1.0in 1.0in;}
+div.Section1
+ {page:Section1;}
+-->
+</style>
+
+</head>
+
+<body lang=EN-US>
+
+<div class=Section1>
+
+<p class=MsoNormal><b><span style='font-size:13.0pt;line-height:115%;
+font-family:Cambria;color:#4F81BD'><img width=22 height=21 id="Picture 45"
+src="Synchronization_User_Manual_files/image001.jpg"
+alt=""></span></b><span
+class=Heading2Char><span style='font-size:13.0pt;line-height:115%'>��Synchronize�</span></span>
+feature in <img width=134 height=23 id="Picture 44"
+src="Synchronization_User_Manual_files/image002.gif"
+alt=""></p>
+
+This feature is helpful for developers who need to replicate their databases� structure as well as data.
+Moreover, this feature not only helps replication but also facilitates the user to keep his/her database in sync with another database. Other than the full database, certain tables of the databases can also be synchronized.
+
+<h3><span class=IntenseEmphasis><span style='font-size:12.0pt;font-weight:normal;
+font-style:normal'><strong>How to Synchronize:</strong></span></span></h3>
+The synchronize tab is visible upfront in the right pane, the last link on the top of the home page.
+
+<p class=MsoNormal><img width=682 height=421 id="Picture 1"
+src="Synchronization_User_Manual_files/image003.gif"></p>
+
+<p class=MsoNormal>Press on the Synchronize tab and a form will be displayed.</p>
+
+<p class=MsoNormal><img width=666 height=398 id="Picture 46"
+src="Synchronization_User_Manual_files/image004.jpg"></p>
+<p class=MsoNormal>�<span
+class=Heading2Char><span style='font-size:13.0pt;line-height:115%'>Db Authentication Form?</span></span></p>
+<p class=MsoNormal> You need to fill in the host name of the server, the
+username and password of an user account already there in MySQL. Port is by default populated with 3306 (MySQL default port). Then the name of the
+database should be mentioned at the end.All the information other than the port needs to be filled explicitly for the source as well as target servers.</p>
+
+<p class=MsoNormal>A filled form is displayed underneath:</p>
+
+<p class=MsoNormal><img width=653 height=394 id="Picture 7"
+src="Synchronization_User_Manual_files/image005.jpg"><span
+class=Heading2Char><span style='font-size:13.0pt;line-height:115%'>�</span></span></p>
+<p class=MsoNormal><span
+class=Heading2Char><span style='font-size:13.0pt;line-height:115%'>Invalid entries
+ during DB Authentication:</span></span></p>
+<p class=MsoNormal>The user will not be allowed to by pass this page if any of
+the values like Host name, Username and Database name remain unfilled and the
+user presses �Go� button. An alert� would occur as follows, not allowing the user to
+move to the next page. On the other hand, the password field can remain empty.
+</p>
+
+<p class=MsoNormal><img width=640 height=384 id="Picture 10"
+src="Synchronization_User_Manual_files/image006.jpg"></p>
+
+<p class=MsoNormal>If any wrong information is provided by the user like wrong
+password, username or hostname then the connection is not established with the
+corresponding database and an error message is seen as follows.</p>
+
+<p class=MsoNormal><img width=653 height=394 id="Picture 13"
+src="Synchronization_User_Manual_files/image007.jpg"></p>
+
+<p class=MsoNormal>If the user enters a database name that does not exist, then
+even an error message occurs as follows and the user needs to re-enter all the
+information.</p>
+
+<p class=MsoNormal><img width=653 height=391 id="Picture 16"
+src="Synchronization_User_Manual_files/image008.jpg"></p>
+
+<p class=MsoNormal></p>
+
+<h2>After passing DB Authentication:</h2>
+
+<p class=MsoNormal>After successfully by passing authentication phase, the source and
+target database table names will be displayed. It will be a tabular
+representation like this.</p>
+
+<p class=MsoNormal><img width=614 height=368 id="Picture 19"
+src="Synchronization_User_Manual_files/image009.jpg"></p>
+
+<h2>Left Column:�Source Database�</h2>
+
+<p class=MsoNormal>On the left, are listed the source database table names.�
+Some of the names have a �+� plus sign preceding them. This shows that these
+tables are only present in source database and they need to be added to the
+target database in order to synchronize the target database.While those table name that are not preceded by a �+� sign
+are also present in target database.</p>
+
+<h2>�Middle Column:�Difference�</h2>
+The column in the middle shows the difference between the source and target corresponding tables.The difference is depicted by the red and green buttons.
+
+<p class=MsoNormal><img width=35 height=35 id="Picture 26"
+src="Synchronization_User_Manual_files/image010.gif"
+alt="">The
+presence of this button against any source table name shows that there is a
+structure difference between the corresponding source and the target tables. If
+at the same time, the source table name is preceded by a �+�plus, then the
+presence of this button shows that the table needs to be created in target
+database.� </p>
+
+<p class=MsoNormal><img width=35 height=35 id="Picture 24"
+src="Synchronization_User_Manual_files/image011.jpg"
+alt="">�The
+presence of this button against any source table name shows that there is a
+data difference between the corresponding source and target table. If at the
+same time, the source table name is preceded by a �+�plus, then the presence of
+this button shows that the table needs to be created and populated in target
+database.� </p>
+
+<p class=MsoNormal> </p>
+
+<p class=MsoNormal><img width=33 height=31 id="Picture 27"
+src="Synchronization_User_Manual_files/image012.jpg"
+alt="">�After
+clicking the red button with S printed on, it turns to grey showing that the structure difference
+of that particular table has been selected by the user.</p>
+
+<p class=MsoNormal><img width=33 height=31 id="Picture 25"
+src="Synchronization_User_Manual_files/image013.jpg"
+alt="">�After
+clicking the red button with a D printed on, it turns to grey showing that the data difference of
+that particular table has been selected by the user.</p>
+
+<h2>Right Column: �Target Database�</h2>
+
+<p class=MsoNormal>On the right, are listed the target database table names.
+There are few table names that have �(not present)� appended after their names.
+This means that these tables are to be created in target database in order to
+synchronize target database with source database. Some tables� names have a �-�
+minus sign preceding them. This shows that these tables are only present in
+target database and they will remain unchanged in the target database. </p>
+
+<p class=MsoNormal>While those table names that are not preceded by any sign,
+or do not have �(not present)� appended after them are already synchronized.</p>
+
+<p class=MsoNormal><img width=678 height=408 id="Picture 28"
+src="Synchronization_User_Manual_files/image014.jpg"></p>
+
+<h2>Detailed Difference Table:</h2>
+
+<p class=MsoNormal>�The above view shows that for those tables whose structure
+or data differences have been selected (depicted by grey buttons <img width=18
+height=17 src="Synchronization_User_Manual_files/image015.jpg"
+alt="">�or
+<img width=17 height=16 src="Synchronization_User_Manual_files/image016.jpg"
+alt="">),�
+there exists a description in the second table underneath the table showing
+source and target database table names.� The description becomes visible only
+when a red or green button against any table is pressed.</p>
+
+<h2>Table:</h2>
+
+<p class=MsoNormal>Displays the <b>Table Name</b> column only to show the name
+of the table.</p>
+
+<h2>Structure Difference:</h2>
+
+<p class=MsoNormal>�It elaborates the difference in structure like</p>
+
+<p class=MsoNormal><b>Create Table: </b>When the table needs to be created in
+the target database, then only a <img width=16 height=16 id="Picture 31"
+src="Synchronization_User_Manual_files/image017.gif"
+alt="">�tick is
+seen in the create table column of the description table.� </p>
+
+<p class=MsoNormal><b>Add Column(s):</b>� Shows the number of columns to be
+added.</p>
+
+<p class=MsoNormal><b>Remove Column(s):</b> Shows the number of columns to be
+removed.</p>
+
+<p class=MsoNormal><b>Alter Column(s):� </b>Shows the number of columns to be
+altered.</p>
+
+<p class=MsoNormal><b>Apply Index(s): </b>�Shows the number of indexes to be
+applied.</p>
+
+<p class=MsoNormal><b>Remove Index(s):</b>� Shows the number of indexes to be
+removed.</p>
+
+<h2>Data Difference:</h2>
+
+<p class=MsoNormal>It elaborates the difference in data like </p>
+
+<p class=MsoNormal><b>Update Row(s):</b> Shows the number of rows to be
+updated.</p>
+
+<p class=MsoNormal><b>Insert Row(s): </b>Shows the number of rows to be
+inserted. </p>
+
+<p class=MsoNormal>When the selected buttons (depicted by grey buttons <img
+width=18 height=17 src="Synchronization_User_Manual_files/image015.jpg"
+alt="">�or<img
+width=17 height=16 src="Synchronization_User_Manual_files/image016.jpg"
+alt="">)
+are pressed again, the buttons become deselected (depicted by colored buttons <img
+width=23 height=23 src="Synchronization_User_Manual_files/image019.jpg"
+alt="">�or<img
+width=23 height=23 src="Synchronization_User_Manual_files/image020.jpg"
+alt="">) and the
+description from the second table regarding those table has been removed.</p>
+
+<h2><span style='font-weight:normal'><img width=666 height=416 id="Picture 41"
+src="Synchronization_User_Manual_files/image021.jpg"></span></h2>
+
+<h2>Check Box in Footer:</h2>
+
+<p class=MsoNormal>A checkbox is also visible in the above view. It has a �<b>Would
+you like to delete all the previous rows from the target tables?</b>�</p>
+
+<p class=MsoNormal>By checking this check box, the user assures the deletion of
+any previous rows residing in the target tables that are to be synchronized.
+This means that before any value gets inserted or updated in the target tables,
+any previously residing rows will be deleted.</p>
+
+<h2>Apply Selected Changes Button in Footer: </h2>
+
+<p class=MsoNormal>The �Apply Selected Changes� button, as it is clear from the
+name, applies only selected tables� changes i.e. it allows user to synchronize
+selective tables between the source and the target databases.</p>
+
+<p class=MsoNormal>After pressing �Apply Selected Changes� button, the view
+becomes� </p>
+
+<p class=MsoNormal><img width=666 height=401 id="Picture 35"
+src="Synchronization_User_Manual_files/image022.jpg"></p>
+
+<p class=MsoNormal>The �course� table in the above view, now only shows data
+difference depicted by<img width=23 height=23
+src="Synchronization_User_Manual_files/image020.jpg"
+alt="">. This
+shows that the previously selected structure difference in that table has been
+applied in target database table �course� because we pressed the �Apply
+Selected Changes� button after selection. </p>
+
+<p class=MsoNormal>�Apply Selected Changes� button allows the user to synchronize
+tables� data and structure according to his/her requirement or desire.</p>
+
+<p class=MsoNormal>Whenever �Apply Selected Changes� button is pressed and the
+page is reloaded, the checkbox becomes unchecked. This means that the user gets
+a choice to delete the previous rows of a certain set of tables and not from
+all the tables. </p>
+
+<h2>Synchronize databases button in Footer:</h2>
+
+<p class=MsoNormal>�Synchronize databases� button in the footer completely
+synchronizes the target database with the source database irrespective of which
+tables are selected for which type of synchronization.</p>
+
+<p class=MsoNormal>��Synchronize databases� button if pressed after �Apply
+Selected Changes� button has been pressed once or twice or several times, will
+apply all the remaining changes that have not been selected earlier.</p>
+
+<p class=MsoNormal>The view after �Synchronize databases� button has been
+pressed look like this:</p>
+
+<p class=MsoNormal><img width=666 height=399 id="Picture 49"
+src="Synchronization_User_Manual_files/image023.jpg"></p>
+
+<p class=MsoNormal>The lower half of the page displays the list of queries that
+have been executed in order to synchronize the databases while the upper half
+displays the source and target database table names.</p>
+
+</div>
+
+</body>
+
+</html>
diff --git a/pmd/scripts/ajax.js b/pmd/scripts/ajax.js
index 0f47bab..ffaea81 100644
--- a/pmd/scripts/ajax.js
+++ b/pmd/scripts/ajax.js
@@ -131,4 +131,4 @@ function PrintXML()
}
}
}
-}
\ No newline at end of file
+}
diff --git a/pmd/styles/default/style1.css b/pmd/styles/default/style1.css
index ff6e48f..b4f7ec3 100644
--- a/pmd/styles/default/style1.css
+++ b/pmd/styles/default/style1.css
@@ -377,4 +377,4 @@ a.M_butt:hover {
cursor: nw-resize;
width: 16px;
height: 16px;
-}
\ No newline at end of file
+}
diff --git a/print.css b/print.css
index 54543dc..632a755 100644
--- a/print.css
+++ b/print.css
@@ -66,4 +66,4 @@ th {
font-weight: bold;
background-color: #e5e5e5;
}
-}
\ No newline at end of file
+}
diff --git a/robots.txt b/robots.txt
index c2aab7e..1f53798 100644
--- a/robots.txt
+++ b/robots.txt
@@ -1,2 +1,2 @@
-User-agent: *
-Disallow: /
\ No newline at end of file
+User-agent: *
+Disallow: /
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin website branch, master, updated. 3db454e82158b34c40f7091daf41a5a2d1c13618
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via 3db454e82158b34c40f7091daf41a5a2d1c13618 (commit)
from da0941704fbc83c3ddb65c6f9d2ae1ff93f89b69 (commit)
- Log -----------------------------------------------------------------
commit 3db454e82158b34c40f7091daf41a5a2d1c13618
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 14:23:34 2010 +0200
Fix typo.
-----------------------------------------------------------------------
Summary of changes:
data/langnames.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/data/langnames.py b/data/langnames.py
index e99fe0c..59ff1e6 100644
--- a/data/langnames.py
+++ b/data/langnames.py
@@ -68,7 +68,7 @@ MAP = {
'sr@latin' : 'serbian_latin',
'sr' : 'serbian_cyrillic',
'sv' : 'swedish',
- 'ta' : 'tamil'
+ 'ta' : 'tamil',
'te' : 'telugu',
'th' : 'thai',
'tr' : 'turkish',
hooks/post-receive
--
phpMyAdmin website
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1404-ga4c0059
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via a4c00596fc16f51e4fbc20ddf00220253d1fad8f (commit)
from cf47eabfd2ca720d57c6148b24b88f3e3c9b3df4 (commit)
- Log -----------------------------------------------------------------
commit a4c00596fc16f51e4fbc20ddf00220253d1fad8f
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 14:17:23 2010 +0200
Add language team.
-----------------------------------------------------------------------
Summary of changes:
po/ur.po | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/po/ur.po b/po/ur.po
index 87c01f8..b469056 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -9,7 +9,7 @@ msgstr ""
"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
-"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"Language-Team: Urdu <ur(a)li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1403-gcf47eab
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via cf47eabfd2ca720d57c6148b24b88f3e3c9b3df4 (commit)
via 99b16f71ef0d325092199f24ddf2eda12f27399d (commit)
via b5580b63b7c2685c79266af0847e2e0792111290 (commit)
from 2473c82f000d1d3ab660a8f99418562eec5bb7a3 (commit)
- Log -----------------------------------------------------------------
commit cf47eabfd2ca720d57c6148b24b88f3e3c9b3df4
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:15:46 2010 +0200
Translation update done using Pootle.
commit 99b16f71ef0d325092199f24ddf2eda12f27399d
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:15:22 2010 +0200
Translation update done using Pootle.
commit b5580b63b7c2685c79266af0847e2e0792111290
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:13:52 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/cs.po | 60 ++++++------------------------------------------------------
1 files changed, 6 insertions(+), 54 deletions(-)
diff --git a/po/cs.po b/po/cs.po
index 7a2b9e8..d380d91 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -5,13 +5,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-04-09 14:06+0200\n"
-"PO-Revision-Date: 2010-04-09 12:01+0200\n"
+"PO-Revision-Date: 2010-04-09 14:15+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
+"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -3604,6 +3604,8 @@ msgstr "Zobrazit stav nadřízeného"
#: libraries/messages.inc.php:799
msgid "Skipping error(s) might lead into unsynchronized master and slave!"
msgstr ""
+"Přeskakování chyb může vést k rozdílným datům na nadřízeném a podřízeném "
+"serveru."
#: libraries/messages.inc.php:800
msgid "Change or reconfigure master server"
@@ -3640,7 +3642,7 @@ msgstr ""
#: libraries/messages.inc.php:807
msgid "Reset slave"
-msgstr ""
+msgstr "Resetovat podřízený server"
#: libraries/messages.inc.php:808
msgid "See slave status table"
@@ -3664,7 +3666,7 @@ msgstr "Replikace podřízeného"
#: libraries/messages.inc.php:813
msgid "Slave SQL Thread not running!"
-msgstr ""
+msgstr "Vlákno pro podřízený SQL server neběží!"
#: libraries/messages.inc.php:814
#, php-format
@@ -7722,53 +7724,3 @@ msgstr ""
#: setup/lib/messages.inc.php:381
msgid "ZIP"
msgstr "ZIP"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT * query"
-#~ msgid "Select all"
-#~ msgstr "Vybrat vše"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT ... query"
-#~ msgid "Select"
-#~ msgstr "Vybrat vše"
-
-#, fuzzy
-#~| msgid "Insert"
-#~ msgctxt "Create INSERT query"
-#~ msgid "Insert"
-#~ msgstr "Vložit"
-
-#, fuzzy
-#~| msgid "Updated"
-#~ msgctxt "Create UPDATE query"
-#~ msgid "Update"
-#~ msgstr "Aktualizováno"
-
-#, fuzzy
-#~| msgid "Delete"
-#~ msgctxt "Create DELETE query"
-#~ msgid "Delete"
-#~ msgstr "Odstranit"
-
-#~ msgid "%1$d row(s) affected."
-#~ msgstr "Ovlivněno %1$d řádků."
-
-#~ msgid "utf-8"
-#~ msgstr "utf-8"
-
-#~ msgid "Jan0"
-#~ msgstr "ledna0"
-
-#~ msgid "Jan1"
-#~ msgstr "ledna1"
-
-#~ msgid "Jan2"
-#~ msgstr "ledna2"
-
-#~ msgid ""
-#~ "Structure Difference' ;\n"
-#~ "$strStructureForView = 'Structure for view"
-#~ msgstr "Rozdíly ve struktuře"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1400-g2473c82
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via 2473c82f000d1d3ab660a8f99418562eec5bb7a3 (commit)
from 92cafc0f3e6de258a35edfba10e74e602a99f1c5 (commit)
- Log -----------------------------------------------------------------
commit 2473c82f000d1d3ab660a8f99418562eec5bb7a3
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 14:07:48 2010 +0200
Refresh po files.
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 2 +-
po/ar.po | 2 +-
po/az.po | 2 +-
po/be.po | 2 +-
po/be(a)latin.po | 2 +-
po/bg.po | 2 +-
po/bn.po | 2 +-
po/bs.po | 2 +-
po/ca.po | 2 +-
po/cs.po | 2 +-
po/da.po | 2 +-
po/de.po | 2 +-
po/el.po | 2 +-
po/en_GB.po | 2 +-
po/es.po | 2 +-
po/et.po | 2 +-
po/eu.po | 2 +-
po/fa.po | 2 +-
po/fi.po | 2 +-
po/fr.po | 2 +-
po/gl.po | 2 +-
po/he.po | 2 +-
po/hi.po | 2 +-
po/hr.po | 2 +-
po/hu.po | 2 +-
po/id.po | 2 +-
po/it.po | 2 +-
po/ja.po | 2 +-
po/ka.po | 2 +-
po/ko.po | 2 +-
po/lt.po | 2 +-
po/lv.po | 2 +-
po/mk.po | 2 +-
po/mn.po | 2 +-
po/ms.po | 2 +-
po/nb.po | 2 +-
po/nl.po | 2 +-
po/phpmyadmin.pot | 2 +-
po/pl.po | 2 +-
po/pt.po | 2 +-
po/pt_BR.po | 2 +-
po/ro.po | 2 +-
po/ru.po | 2 +-
po/si.po | 2 +-
po/sk.po | 2 +-
po/sl.po | 2 +-
po/sq.po | 2 +-
po/sr.po | 2 +-
po/sr(a)latin.po | 2 +-
po/sv.po | 2 +-
po/ta.po | 290 ++++++++++++++++++++++++++--------------------------
po/te.po | 2 +-
po/th.po | 2 +-
po/tr.po | 2 +-
po/tt.po | 2 +-
po/uk.po | 2 +-
po/ur.po | 290 ++++++++++++++++++++++++++--------------------------
po/uz.po | 2 +-
po/uz(a)latin.po | 2 +-
po/zh_CN.po | 2 +-
po/zh_TW.po | 2 +-
61 files changed, 349 insertions(+), 349 deletions(-)
diff --git a/po/af.po b/po/af.po
index ebedc21..b26bc24 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/ar.po b/po/ar.po
index ce04887..1c282df 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: arabic <ar(a)li.org>\n"
diff --git a/po/az.po b/po/az.po
index 51ad0ee..02d9746 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/be.po b/po/be.po
index f405755..c7abe58 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 440d476..940c37c 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/bg.po b/po/bg.po
index 9b064d0..c962d6d 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bulgarian <bg(a)li.org>\n"
diff --git a/po/bn.po b/po/bn.po
index 93b96cd..42c1509 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bangla <bn(a)li.org>\n"
diff --git a/po/bs.po b/po/bs.po
index d4efec9..3f20893 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/ca.po b/po/ca.po
index 7a41d2a..dea9a8e 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: catalan <ca(a)li.org>\n"
diff --git a/po/cs.po b/po/cs.po
index e975d99..7a2b9e8 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-04-09 12:01+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
diff --git a/po/da.po b/po/da.po
index a14c254..dd77304 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: danish <da(a)li.org>\n"
diff --git a/po/de.po b/po/de.po
index 14677d8..4fc368f 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/el.po b/po/el.po
index 5fe7264..f156b9c 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/en_GB.po b/po/en_GB.po
index c83da37..8803ac1 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 16:04+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: english-gb <en_GB(a)li.org>\n"
diff --git a/po/es.po b/po/es.po
index cde479f..6b971f3 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/et.po b/po/et.po
index efd6032..42eecfa 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/eu.po b/po/eu.po
index fb361ea..be55f1a 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/fa.po b/po/fa.po
index 505be72..c6ad82d 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: persian <fa(a)li.org>\n"
diff --git a/po/fi.po b/po/fi.po
index 520d72b..1b224eb 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: finnish <fi(a)li.org>\n"
diff --git a/po/fr.po b/po/fr.po
index 81e1c02..148278a 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-04-02 16:23+0200\n"
"Last-Translator: Marc <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
diff --git a/po/gl.po b/po/gl.po
index a589736..8361bc3 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: galician <gl(a)li.org>\n"
diff --git a/po/he.po b/po/he.po
index 85f0d9b..1d5efb0 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hebrew <he(a)li.org>\n"
diff --git a/po/hi.po b/po/hi.po
index 8821f29..ff79d67 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hindi <hi(a)li.org>\n"
diff --git a/po/hr.po b/po/hr.po
index 4a3dd1f..c58dac8 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:13+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: croatian <hr(a)li.org>\n"
diff --git a/po/hu.po b/po/hu.po
index b5ea8f9..c5d9214 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:15+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: hungarian <hu(a)li.org>\n"
diff --git a/po/id.po b/po/id.po
index b85a3ab..5bcc437 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-28 13:56+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
diff --git a/po/it.po b/po/it.po
index f1149ce..af6be7f 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-31 18:42+0200\n"
"Last-Translator: <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
diff --git a/po/ja.po b/po/ja.po
index 03b01ef..51259a5 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/ka.po b/po/ka.po
index d3e80a0..31a3509 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/ko.po b/po/ko.po
index cc608c5..c3106c0 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: korean <ko(a)li.org>\n"
diff --git a/po/lt.po b/po/lt.po
index 739edf8..168c15f 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-04-02 18:26+0200\n"
"Last-Translator: <edgaras.janusauskas(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
diff --git a/po/lv.po b/po/lv.po
index 5a09d6f..f9bfe99 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/mk.po b/po/mk.po
index 0d1a5da..6b44205 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/mn.po b/po/mn.po
index 505502a..4dd0bc0 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/ms.po b/po/ms.po
index ef6b435..8517b68 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+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"
diff --git a/po/nb.po b/po/nb.po
index cdf0199..4e771f8 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-04-06 14:28+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
diff --git a/po/nl.po b/po/nl.po
index 34789a1..23258d9 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 639c2be..b5df02a 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/pl.po b/po/pl.po
index ce6df74..bc85d23 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: polish <pl(a)li.org>\n"
diff --git a/po/pt.po b/po/pt.po
index 352b4a3..a801673 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: portuguese <pt(a)li.org>\n"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 26f3654..fa378ce 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/ro.po b/po/ro.po
index 3a78ee1..afbffa9 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/ru.po b/po/ru.po
index 4764c19..4f37f76 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/si.po b/po/si.po
index 6c58eeb..8d77648 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/sk.po b/po/sk.po
index 4bc6e08..e105f8f 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/sl.po b/po/sl.po
index d5fd978..72b61e5 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-30 23:47+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
diff --git a/po/sq.po b/po/sq.po
index 2ae4350..55d1093 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/sr.po b/po/sr.po
index fdc702c..7768fb9 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index 072e71d..9847eab 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/sv.po b/po/sv.po
index 257ffcb..66f152d 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: swedish <sv(a)li.org>\n"
diff --git a/po/ta.po b/po/ta.po
index caf1a8f..5a15da4 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -4,16 +4,16 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-04-09 14:03+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
-"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -26,7 +26,7 @@ msgid "Cancel"
msgstr ""
#: libraries/auth/config.auth.lib.php:107
-#, possible-php-format
+#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
@@ -61,21 +61,21 @@ msgid "Inline"
msgstr ""
#: libraries/Message.class.php:282
-#, possible-php-format
+#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
#: libraries/Message.class.php:301
-#, possible-php-format
+#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
#: libraries/Message.class.php:320
-#, possible-php-format
+#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] ""
@@ -206,7 +206,7 @@ msgid "%B %d, %Y at %I:%M %p"
msgstr ""
#: libraries/messages.inc.php:31
-#, possible-php-format
+#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
@@ -231,7 +231,7 @@ msgid "Add AUTO_INCREMENT value"
msgstr ""
#: libraries/messages.inc.php:38
-#, possible-php-format
+#, php-format
msgid "Add %s"
msgstr ""
@@ -248,7 +248,7 @@ msgid "Add/Delete Criteria Row"
msgstr ""
#: libraries/messages.inc.php:42
-#, possible-php-format
+#, php-format
msgid "Add %s field(s)"
msgstr ""
@@ -277,7 +277,7 @@ msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
#: libraries/messages.inc.php:49
-#, possible-php-format
+#, php-format
msgid "Add to index %s column(s)"
msgstr ""
@@ -294,7 +294,7 @@ msgid "Administration"
msgstr ""
#: libraries/messages.inc.php:53
-#, possible-php-format
+#, php-format
msgid "After %s"
msgstr ""
@@ -358,7 +358,7 @@ msgid "Angular links"
msgstr ""
#: libraries/messages.inc.php:68
-#, possible-php-format
+#, php-format
msgid "An index has been added on %s"
msgstr ""
@@ -385,7 +385,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:74
-#, possible-php-format
+#, php-format
msgid "A primary key has been added on %s"
msgstr ""
@@ -482,7 +482,7 @@ msgid "Damaged"
msgstr ""
#: libraries/messages.inc.php:99
-#, possible-php-format
+#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
@@ -526,7 +526,7 @@ msgid "Let every user access this bookmark"
msgstr ""
#: libraries/messages.inc.php:109
-#, possible-php-format
+#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -623,7 +623,7 @@ msgid "Cannot log in to the MySQL server"
msgstr ""
#: libraries/messages.inc.php:135
-#, possible-php-format
+#, php-format
msgid ""
"Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
"extension. Please check your PHP configuration."
@@ -734,7 +734,7 @@ msgid "Check Privileges"
msgstr ""
#: libraries/messages.inc.php:160
-#, possible-php-format
+#, php-format
msgid "Check privileges for database "%s"."
msgstr ""
@@ -795,12 +795,12 @@ msgid "Compression"
msgstr ""
#: libraries/messages.inc.php:175
-#, possible-php-format
+#, php-format
msgid "Imported file compression will be automatically detected from: %s"
msgstr ""
#: libraries/messages.inc.php:176
-#, possible-php-format
+#, php-format
msgid "Could not load default configuration from: \"%1$s\""
msgstr ""
@@ -822,7 +822,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:179
-#, possible-php-format
+#, php-format
msgid "Please configure the coordinates for table %s"
msgstr ""
@@ -855,7 +855,7 @@ msgid "Copy"
msgstr ""
#: libraries/messages.inc.php:187
-#, possible-php-format
+#, php-format
msgid "Database %s has been copied to %s"
msgstr ""
@@ -864,7 +864,7 @@ msgid "Copy table to (database<b>.</b>table):"
msgstr ""
#: libraries/messages.inc.php:189
-#, possible-php-format
+#, php-format
msgid "Table %s has been copied to %s."
msgstr ""
@@ -881,7 +881,7 @@ msgid "Could not connect to the target"
msgstr ""
#: libraries/messages.inc.php:193
-#, possible-php-format
+#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
@@ -895,7 +895,7 @@ msgid "CREATE DATABASE before copying"
msgstr ""
#: libraries/messages.inc.php:196
-#, possible-php-format
+#, php-format
msgid "Create an index on %s columns"
msgstr ""
@@ -908,7 +908,7 @@ msgid "Create new database"
msgstr ""
#: libraries/messages.inc.php:199
-#, possible-php-format
+#, php-format
msgid "Create table on database %s"
msgstr ""
@@ -947,7 +947,7 @@ msgid "None"
msgstr ""
#: libraries/messages.inc.php:208
-#, possible-php-format
+#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -1008,17 +1008,17 @@ msgid "Database export options"
msgstr ""
#: libraries/messages.inc.php:224
-#, possible-php-format
+#, php-format
msgid "Database %1$s has been created."
msgstr ""
#: libraries/messages.inc.php:225
-#, possible-php-format
+#, php-format
msgid "Database %s has been dropped."
msgstr ""
#: libraries/messages.inc.php:226
-#, possible-php-format
+#, php-format
msgid "'%s' database does not exist."
msgstr ""
@@ -1027,7 +1027,7 @@ msgid "Databases"
msgstr ""
#: libraries/messages.inc.php:228
-#, possible-php-format
+#, php-format
msgid "%s databases have been dropped successfully."
msgstr ""
@@ -1110,7 +1110,7 @@ msgid "Default"
msgstr ""
#: libraries/messages.inc.php:248
-#, possible-php-format
+#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -1158,7 +1158,7 @@ msgid "Delete tracking data for this table"
msgstr ""
#: libraries/messages.inc.php:259
-#, possible-php-format
+#, php-format
msgid "Deleting %s"
msgstr ""
@@ -1276,12 +1276,12 @@ msgid "Dumping data for table"
msgstr ""
#: libraries/messages.inc.php:287
-#, possible-php-format
+#, php-format
msgid "Dump has been saved to file %s."
msgstr ""
#: libraries/messages.inc.php:288
-#, possible-php-format
+#, php-format
msgid "Dump %s row(s) starting at record # %s"
msgstr ""
@@ -1334,12 +1334,12 @@ msgid "END RAW"
msgstr ""
#: libraries/messages.inc.php:302
-#, possible-php-format
+#, php-format
msgid "%s is available on this MySQL server."
msgstr ""
#: libraries/messages.inc.php:303
-#, possible-php-format
+#, php-format
msgid "%s has been disabled for this MySQL server."
msgstr ""
@@ -1348,7 +1348,7 @@ msgid "Engines"
msgstr ""
#: libraries/messages.inc.php:305
-#, possible-php-format
+#, php-format
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
@@ -1377,7 +1377,7 @@ msgid "Error: relation already exists."
msgstr ""
#: libraries/messages.inc.php:312
-#, possible-php-format
+#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
@@ -1442,7 +1442,7 @@ msgid "Field"
msgstr ""
#: libraries/messages.inc.php:329
-#, possible-php-format
+#, php-format
msgid "Field %s has been dropped"
msgstr ""
@@ -1469,7 +1469,7 @@ msgid "Fields terminated by"
msgstr ""
#: libraries/messages.inc.php:335
-#, possible-php-format
+#, php-format
msgid ""
"File %s already exists on server, change filename or check overwrite option."
msgstr ""
@@ -1491,7 +1491,7 @@ msgid "table name"
msgstr ""
#: libraries/messages.inc.php:340
-#, possible-php-format
+#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
@@ -1515,7 +1515,7 @@ msgid "File to import"
msgstr ""
#: libraries/messages.inc.php:345
-#, possible-php-format
+#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
@@ -1540,7 +1540,7 @@ msgid "Font size"
msgstr ""
#: libraries/messages.inc.php:350
-#, possible-php-format
+#, php-format
msgid "Error creating foreign key on %1$s (check data types)"
msgstr ""
@@ -1816,7 +1816,7 @@ msgid "The file is being processed, please be patient."
msgstr ""
#: libraries/messages.inc.php:421
-#, possible-php-format
+#, php-format
msgid "Import has been successfully finished, %d queries executed."
msgstr ""
@@ -1839,14 +1839,14 @@ msgid "Indexes"
msgstr ""
#: libraries/messages.inc.php:426
-#, possible-php-format
+#, php-format
msgid ""
"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
"removed."
msgstr ""
#: libraries/messages.inc.php:427
-#, possible-php-format
+#, php-format
msgid "Index %s has been dropped"
msgstr ""
@@ -1863,7 +1863,7 @@ msgid "Index type:"
msgstr ""
#: libraries/messages.inc.php:431
-#, possible-php-format
+#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -1920,7 +1920,7 @@ msgid "Insert as new row"
msgstr ""
#: libraries/messages.inc.php:443
-#, possible-php-format
+#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -1963,22 +1963,22 @@ msgid "Column count has to be larger than zero."
msgstr ""
#: libraries/messages.inc.php:453
-#, possible-php-format
+#, php-format
msgid "Invalid column (%s) specified!"
msgstr ""
#: libraries/messages.inc.php:454
-#, possible-php-format
+#, php-format
msgid "Invalid field count in CSV input on line %d."
msgstr ""
#: libraries/messages.inc.php:455
-#, possible-php-format
+#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/messages.inc.php:456
-#, possible-php-format
+#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
@@ -1999,17 +1999,17 @@ msgid "This plugin does not support compressed imports!"
msgstr ""
#: libraries/messages.inc.php:461
-#, possible-php-format
+#, php-format
msgid "%d is not valid row number."
msgstr ""
#: libraries/messages.inc.php:462
-#, possible-php-format
+#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/messages.inc.php:463
-#, possible-php-format
+#, php-format
msgid "Invalid server index: \"%s\""
msgstr ""
@@ -2033,7 +2033,7 @@ msgid "Joins"
msgstr ""
#: libraries/messages.inc.php:469
-#, possible-php-format
+#, php-format
msgid "Jump to database "%s"."
msgstr ""
@@ -2064,7 +2064,7 @@ msgid "Kill"
msgstr ""
#: libraries/messages.inc.php:477
-#, possible-php-format
+#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
@@ -2081,7 +2081,7 @@ msgid "Language"
msgstr ""
#: libraries/messages.inc.php:482
-#, possible-php-format
+#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -2211,7 +2211,7 @@ msgid "Maximal length of created query"
msgstr ""
#: libraries/messages.inc.php:515
-#, possible-php-format
+#, php-format
msgid "Max: %s%s"
msgstr ""
@@ -2251,7 +2251,7 @@ msgid "MIME type"
msgstr ""
#: libraries/messages.inc.php:523
-#, possible-php-format
+#, php-format
msgid ""
"No description is available for this transformation.<br />Please ask the "
"author what %s does."
@@ -2262,7 +2262,7 @@ msgid "Browser transformation"
msgstr ""
#: libraries/messages.inc.php:525
-#, possible-php-format
+#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
@@ -2310,7 +2310,7 @@ msgid "Move table to (database<b>.</b>table):"
msgstr ""
#: libraries/messages.inc.php:535
-#, possible-php-format
+#, php-format
msgid "Table %s has been moved to %s."
msgstr ""
@@ -2397,7 +2397,7 @@ msgid "MySQL connection collation"
msgstr ""
#: libraries/messages.inc.php:553
-#, possible-php-format
+#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
@@ -2424,7 +2424,7 @@ msgid "Next"
msgstr ""
#: libraries/messages.inc.php:560
-#, possible-php-format
+#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
@@ -2502,7 +2502,7 @@ msgid "No Password"
msgstr ""
#: libraries/messages.inc.php:578
-#, possible-php-format
+#, php-format
msgid "The web server does not have permission to save the file %s."
msgstr ""
@@ -2523,7 +2523,7 @@ msgid "No rows selected"
msgstr ""
#: libraries/messages.inc.php:583
-#, possible-php-format
+#, php-format
msgid "Insufficient space to save the file %s."
msgstr ""
@@ -2532,7 +2532,7 @@ msgid "No tables found in database."
msgstr ""
#: libraries/messages.inc.php:585
-#, possible-php-format
+#, php-format
msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
@@ -2551,7 +2551,7 @@ msgid "not present"
msgstr ""
#: libraries/messages.inc.php:589
-#, possible-php-format
+#, php-format
msgid "<b>%s</b> table not found or not set in %s"
msgstr ""
@@ -2576,12 +2576,12 @@ msgid "Number of tables"
msgstr ""
#: libraries/messages.inc.php:595
-#, possible-php-format
+#, php-format
msgid "%s match(es) inside table <i>%s</i>"
msgstr ""
#: libraries/messages.inc.php:596
-#, possible-php-format
+#, php-format
msgid "<b>Total:</b> <i>%s</i> match(es)"
msgstr ""
@@ -2670,12 +2670,12 @@ msgid "Partition maintenance"
msgstr ""
#: libraries/messages.inc.php:621
-#, possible-php-format
+#, php-format
msgid "Partition %s"
msgstr ""
#: libraries/messages.inc.php:622
-#, possible-php-format
+#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
@@ -2818,12 +2818,12 @@ msgid "Transaction buffer size"
msgstr ""
#: libraries/messages.inc.php:651
-#, possible-php-format
+#, php-format
msgid "Schema of the \"%s\" database - Page %s"
msgstr ""
#: libraries/messages.inc.php:652
-#, possible-php-format
+#, php-format
msgid "The \"%s\" table doesn't exist!"
msgstr ""
@@ -3188,7 +3188,7 @@ msgid "Query window"
msgstr ""
#: libraries/messages.inc.php:741
-#, possible-php-format
+#, php-format
msgid "SQL query on database <b>%s</b>:"
msgstr ""
@@ -3201,14 +3201,14 @@ msgid "SQL history"
msgstr ""
#: libraries/messages.inc.php:744
-#, possible-php-format
+#, php-format
msgid ""
"<b>Query statistics</b>: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
#: libraries/messages.inc.php:745
-#, possible-php-format
+#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -3265,7 +3265,7 @@ msgid "Relation deleted"
msgstr ""
#: libraries/messages.inc.php:760
-#, possible-php-format
+#, php-format
msgid ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
@@ -3316,12 +3316,12 @@ msgid "Remove selected users"
msgstr ""
#: libraries/messages.inc.php:772
-#, possible-php-format
+#, php-format
msgid "Database %s has been renamed to %s"
msgstr ""
#: libraries/messages.inc.php:773
-#, possible-php-format
+#, php-format
msgid "Table %s has been renamed to %s"
msgstr ""
@@ -3360,7 +3360,7 @@ msgid "Add slave replication user"
msgstr ""
#: libraries/messages.inc.php:782
-#, possible-php-format
+#, php-format
msgid "Master server changed succesfully to %s"
msgstr ""
@@ -3378,7 +3378,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:786
-#, possible-php-format
+#, php-format
msgid "Unable to connect to master %s."
msgstr ""
@@ -3423,7 +3423,7 @@ msgid "Please select databases:"
msgstr ""
#: libraries/messages.inc.php:795
-#, possible-php-format
+#, php-format
msgid ""
"This server is not configured as master in a replication process. Would you "
"like to <a href=\"%s\">configure</a> it?"
@@ -3465,7 +3465,7 @@ msgid "Error management:"
msgstr ""
#: libraries/messages.inc.php:804
-#, possible-php-format
+#, php-format
msgid "IO Thread %s only"
msgstr ""
@@ -3474,7 +3474,7 @@ msgid "Slave IO Thread not running!"
msgstr ""
#: libraries/messages.inc.php:806
-#, possible-php-format
+#, php-format
msgid ""
"This server is not configured as slave in a replication process. Would you "
"like to <a href=\"%s\">configure</a> it?"
@@ -3509,12 +3509,12 @@ msgid "Slave SQL Thread not running!"
msgstr ""
#: libraries/messages.inc.php:814
-#, possible-php-format
+#, php-format
msgid "SQL Thread %s only"
msgstr ""
#: libraries/messages.inc.php:815
-#, possible-php-format
+#, php-format
msgid ""
"This MySQL server works as %s in <b>replication</b> process. For further "
"information about replication status on the server, please visit the <a href="
@@ -3554,7 +3554,7 @@ msgid "Resource limits"
msgstr ""
#: libraries/messages.inc.php:824
-#, possible-php-format
+#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
@@ -3573,7 +3573,7 @@ msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
#: libraries/messages.inc.php:828
-#, possible-php-format
+#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
@@ -3614,7 +3614,7 @@ msgid "horizontal"
msgstr ""
#: libraries/messages.inc.php:838
-#, possible-php-format
+#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
@@ -3631,7 +3631,7 @@ msgid "Row Statistics"
msgstr ""
#: libraries/messages.inc.php:842
-#, possible-php-format
+#, php-format
msgid "running on %s"
msgstr ""
@@ -3640,12 +3640,12 @@ msgid "Submit Query"
msgstr ""
#: libraries/messages.inc.php:844
-#, possible-php-format
+#, php-format
msgid "Run SQL query/queries on server %s"
msgstr ""
#: libraries/messages.inc.php:845
-#, possible-php-format
+#, php-format
msgid "Run SQL query/queries on database %s"
msgstr ""
@@ -3654,7 +3654,7 @@ msgid "Russian"
msgstr ""
#: libraries/messages.inc.php:848
-#, possible-php-format
+#, php-format
msgid "Save on server in %s directory"
msgstr ""
@@ -3703,7 +3703,7 @@ msgid "as regular expression"
msgstr ""
#: libraries/messages.inc.php:860
-#, possible-php-format
+#, php-format
msgid "Search results for \"<i>%s</i>\" %s:"
msgstr ""
@@ -3784,7 +3784,7 @@ msgid "Runtime Information"
msgstr ""
#: libraries/messages.inc.php:880
-#, possible-php-format
+#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
@@ -4688,7 +4688,7 @@ msgid "Your SQL query has been executed successfully"
msgstr ""
#: libraries/messages.inc.php:1074
-#, possible-php-format
+#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
@@ -4711,7 +4711,7 @@ msgid "Hardware authentication failed"
msgstr ""
#: libraries/messages.inc.php:1079
-#, possible-php-format
+#, php-format
msgid "File %s does not contain any key id"
msgstr ""
@@ -4746,7 +4746,7 @@ msgid "Add column(s)"
msgstr ""
#: libraries/messages.inc.php:1088
-#, possible-php-format
+#, php-format
msgid "Table %s already exists!"
msgstr ""
@@ -4755,7 +4755,7 @@ msgid "Alter column(s)"
msgstr ""
#: libraries/messages.inc.php:1090
-#, possible-php-format
+#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -4780,22 +4780,22 @@ msgid "The table name is empty!"
msgstr ""
#: libraries/messages.inc.php:1096
-#, possible-php-format
+#, php-format
msgid "Table %1$s has been created."
msgstr ""
#: libraries/messages.inc.php:1097
-#, possible-php-format
+#, php-format
msgid "Table %s has been dropped"
msgstr ""
#: libraries/messages.inc.php:1098
-#, possible-php-format
+#, php-format
msgid "Table %s has been emptied"
msgstr ""
#: libraries/messages.inc.php:1099
-#, possible-php-format
+#, php-format
msgid "Table %s has been flushed"
msgstr ""
@@ -4832,7 +4832,7 @@ msgid "Remove index(s)"
msgstr ""
#: libraries/messages.inc.php:1108
-#, possible-php-format
+#, php-format
msgid "%s table(s)"
msgstr ""
@@ -4877,7 +4877,7 @@ msgid "Thai"
msgstr ""
#: libraries/messages.inc.php:1119
-#, possible-php-format
+#, php-format
msgid "Default theme %s not found!"
msgstr ""
@@ -4886,17 +4886,17 @@ msgid "No preview available."
msgstr ""
#: libraries/messages.inc.php:1121
-#, possible-php-format
+#, php-format
msgid "Theme %s not found!"
msgstr ""
#: libraries/messages.inc.php:1122
-#, possible-php-format
+#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
#: libraries/messages.inc.php:1123
-#, possible-php-format
+#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
@@ -4913,12 +4913,12 @@ msgid "Threads"
msgstr ""
#: libraries/messages.inc.php:1127
-#, possible-php-format
+#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
#: libraries/messages.inc.php:1128
-#, possible-php-format
+#, php-format
msgid ""
"Previous import timed out, after resubmitting will continue from position %d."
msgstr ""
@@ -4964,7 +4964,7 @@ msgid "Total"
msgstr ""
#: libraries/messages.inc.php:1138
-#, possible-php-format
+#, php-format
msgid "Tracking of %s.%s is activated."
msgstr ""
@@ -4973,7 +4973,7 @@ msgid "Activate now"
msgstr ""
#: libraries/messages.inc.php:1140
-#, possible-php-format
+#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
@@ -4986,7 +4986,7 @@ msgid "Create version"
msgstr ""
#: libraries/messages.inc.php:1143
-#, possible-php-format
+#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
@@ -5011,12 +5011,12 @@ msgid "Deactivate now"
msgstr ""
#: libraries/messages.inc.php:1149
-#, possible-php-format
+#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
#: libraries/messages.inc.php:1150
-#, possible-php-format
+#, php-format
msgid "Export as %s"
msgstr ""
@@ -5037,7 +5037,7 @@ msgid "Close"
msgstr ""
#: libraries/messages.inc.php:1155
-#, possible-php-format
+#, php-format
msgid "Tracking report for table `%s`"
msgstr ""
@@ -5046,7 +5046,7 @@ msgid "Tracking report"
msgstr ""
#: libraries/messages.inc.php:1157
-#, possible-php-format
+#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
@@ -5139,22 +5139,22 @@ msgid "Username"
msgstr ""
#: libraries/messages.inc.php:1180
-#, possible-php-format
+#, php-format
msgid "Tracking for %s.%s , version %s is activated."
msgstr ""
#: libraries/messages.inc.php:1181
-#, possible-php-format
+#, php-format
msgid "Version %s is created, tracking for %s.%s is activated."
msgstr ""
#: libraries/messages.inc.php:1182
-#, possible-php-format
+#, php-format
msgid "Tracking for %s.%s , version %s is deactivated."
msgstr ""
#: libraries/messages.inc.php:1183
-#, possible-php-format
+#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
@@ -5312,14 +5312,14 @@ msgid "Unselect All"
msgstr ""
#: libraries/messages.inc.php:1213
-#, possible-php-format
+#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
#: libraries/messages.inc.php:1214
-#, possible-php-format
+#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
@@ -5337,7 +5337,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:1218
-#, possible-php-format
+#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -5372,7 +5372,7 @@ msgid "Unknown error in file upload."
msgstr ""
#: libraries/messages.inc.php:1226
-#, possible-php-format
+#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
@@ -5395,7 +5395,7 @@ msgid "Use Host Table"
msgstr ""
#: libraries/messages.inc.php:1231
-#, possible-php-format
+#, php-format
msgid "The user %s already exists!"
msgstr ""
@@ -5420,7 +5420,7 @@ msgid "The selected users have been deleted successfully."
msgstr ""
#: libraries/messages.inc.php:1237
-#, possible-php-format
+#, php-format
msgid "Users having access to "%s""
msgstr ""
@@ -5450,7 +5450,7 @@ msgid "Validate SQL"
msgstr ""
#: libraries/messages.inc.php:1245
-#, possible-php-format
+#, php-format
msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
@@ -5481,14 +5481,14 @@ msgid "View dump (schema) of table"
msgstr ""
#: libraries/messages.inc.php:1252
-#, possible-php-format
+#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/messages.inc.php:1253
-#, possible-php-format
+#, php-format
msgid "View %s has been dropped"
msgstr ""
@@ -5521,7 +5521,7 @@ msgid "Web server"
msgstr ""
#: libraries/messages.inc.php:1262
-#, possible-php-format
+#, php-format
msgid "Welcome to %s"
msgstr ""
@@ -5717,7 +5717,7 @@ msgid "Bzip2"
msgstr ""
#: setup/lib/messages.inc.php:32
-#, possible-php-format
+#, php-format
msgid ""
"[a@?page=form&formset=features#tab_Import_export]Bzip2 compression and "
"decompression[/a] requires functions (%s) which are unavailable on this "
@@ -5897,7 +5897,7 @@ msgid "Submitted form contains errors"
msgstr ""
#: setup/lib/messages.inc.php:74
-#, possible-php-format
+#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5910,7 +5910,7 @@ msgid "Incorrect value"
msgstr ""
#: setup/lib/messages.inc.php:77
-#, possible-php-format
+#, php-format
msgid "Missing data for %s"
msgstr ""
@@ -6192,7 +6192,7 @@ msgid "GZip"
msgstr ""
#: setup/lib/messages.inc.php:151
-#, possible-php-format
+#, php-format
msgid ""
"[a@?page=form&formset=features#tab_Import_export]GZip compression and "
"decompression[/a] requires functions (%s) which are unavailable on this "
@@ -6253,7 +6253,7 @@ msgid ""
msgstr ""
#: setup/lib/messages.inc.php:165
-#, possible-php-format
+#, php-format
msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
@@ -6569,7 +6569,7 @@ msgid "Save directory"
msgstr ""
#: setup/lib/messages.inc.php:238
-#, possible-php-format
+#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -6720,7 +6720,7 @@ msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
#: setup/lib/messages.inc.php:271
-#, possible-php-format
+#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - [a@?"
"page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication"
@@ -6976,7 +6976,7 @@ msgid "Verbose name of this server"
msgstr ""
#: setup/lib/messages.inc.php:328
-#, possible-php-format
+#, php-format
msgid "Set value: %s"
msgstr ""
@@ -7153,14 +7153,14 @@ msgid "Check for latest version"
msgstr ""
#: setup/lib/messages.inc.php:371
-#, possible-php-format
+#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
#: setup/lib/messages.inc.php:372
-#, possible-php-format
+#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
@@ -7194,14 +7194,14 @@ msgid ""
msgstr ""
#: setup/lib/messages.inc.php:379
-#, possible-php-format
+#, php-format
msgid ""
"[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] "
"requires functions (%s) which are unavailable on this system."
msgstr ""
#: setup/lib/messages.inc.php:380
-#, possible-php-format
+#, php-format
msgid ""
"[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] "
"requires functions (%s) which are unavailable on this system."
diff --git a/po/te.po b/po/te.po
index 892925d..26bc4b2 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/th.po b/po/th.po
index 29d81d0..25b0d44 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai <th(a)li.org>\n"
diff --git a/po/tr.po b/po/tr.po
index 9be9510..f4e38e5 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/tt.po b/po/tt.po
index deebcbc..6c4c6d3 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/uk.po b/po/uk.po
index 9eea3c1..f2ffcb4 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: ukrainian <uk(a)li.org>\n"
diff --git a/po/ur.po b/po/ur.po
index 03bed5c..87c01f8 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -4,16 +4,16 @@
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
msgid ""
msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
+"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\n"
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
-"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
+"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -26,7 +26,7 @@ msgid "Cancel"
msgstr ""
#: libraries/auth/config.auth.lib.php:107
-#, possible-php-format
+#, php-format
msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
@@ -61,21 +61,21 @@ msgid "Inline"
msgstr ""
#: libraries/Message.class.php:282
-#, possible-php-format
+#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
msgstr[0] ""
msgstr[1] ""
#: libraries/Message.class.php:301
-#, possible-php-format
+#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
msgstr[0] ""
msgstr[1] ""
#: libraries/Message.class.php:320
-#, possible-php-format
+#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
msgstr[0] ""
@@ -206,7 +206,7 @@ msgid "%B %d, %Y at %I:%M %p"
msgstr ""
#: libraries/messages.inc.php:31
-#, possible-php-format
+#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
msgstr ""
@@ -231,7 +231,7 @@ msgid "Add AUTO_INCREMENT value"
msgstr ""
#: libraries/messages.inc.php:38
-#, possible-php-format
+#, php-format
msgid "Add %s"
msgstr ""
@@ -248,7 +248,7 @@ msgid "Add/Delete Criteria Row"
msgstr ""
#: libraries/messages.inc.php:42
-#, possible-php-format
+#, php-format
msgid "Add %s field(s)"
msgstr ""
@@ -277,7 +277,7 @@ msgid "Add search conditions (body of the \"where\" clause):"
msgstr ""
#: libraries/messages.inc.php:49
-#, possible-php-format
+#, php-format
msgid "Add to index %s column(s)"
msgstr ""
@@ -294,7 +294,7 @@ msgid "Administration"
msgstr ""
#: libraries/messages.inc.php:53
-#, possible-php-format
+#, php-format
msgid "After %s"
msgstr ""
@@ -358,7 +358,7 @@ msgid "Angular links"
msgstr ""
#: libraries/messages.inc.php:68
-#, possible-php-format
+#, php-format
msgid "An index has been added on %s"
msgstr ""
@@ -385,7 +385,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:74
-#, possible-php-format
+#, php-format
msgid "A primary key has been added on %s"
msgstr ""
@@ -482,7 +482,7 @@ msgid "Damaged"
msgstr ""
#: libraries/messages.inc.php:99
-#, possible-php-format
+#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
@@ -526,7 +526,7 @@ msgid "Let every user access this bookmark"
msgstr ""
#: libraries/messages.inc.php:109
-#, possible-php-format
+#, php-format
msgid "Bookmark %s created"
msgstr ""
@@ -623,7 +623,7 @@ msgid "Cannot log in to the MySQL server"
msgstr ""
#: libraries/messages.inc.php:135
-#, possible-php-format
+#, php-format
msgid ""
"Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
"extension. Please check your PHP configuration."
@@ -734,7 +734,7 @@ msgid "Check Privileges"
msgstr ""
#: libraries/messages.inc.php:160
-#, possible-php-format
+#, php-format
msgid "Check privileges for database "%s"."
msgstr ""
@@ -795,12 +795,12 @@ msgid "Compression"
msgstr ""
#: libraries/messages.inc.php:175
-#, possible-php-format
+#, php-format
msgid "Imported file compression will be automatically detected from: %s"
msgstr ""
#: libraries/messages.inc.php:176
-#, possible-php-format
+#, php-format
msgid "Could not load default configuration from: \"%1$s\""
msgstr ""
@@ -822,7 +822,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:179
-#, possible-php-format
+#, php-format
msgid "Please configure the coordinates for table %s"
msgstr ""
@@ -855,7 +855,7 @@ msgid "Copy"
msgstr ""
#: libraries/messages.inc.php:187
-#, possible-php-format
+#, php-format
msgid "Database %s has been copied to %s"
msgstr ""
@@ -864,7 +864,7 @@ msgid "Copy table to (database<b>.</b>table):"
msgstr ""
#: libraries/messages.inc.php:189
-#, possible-php-format
+#, php-format
msgid "Table %s has been copied to %s."
msgstr ""
@@ -881,7 +881,7 @@ msgid "Could not connect to the target"
msgstr ""
#: libraries/messages.inc.php:193
-#, possible-php-format
+#, php-format
msgid ""
"phpMyAdmin was unable to kill thread %s. It probably has already been closed."
msgstr ""
@@ -895,7 +895,7 @@ msgid "CREATE DATABASE before copying"
msgstr ""
#: libraries/messages.inc.php:196
-#, possible-php-format
+#, php-format
msgid "Create an index on %s columns"
msgstr ""
@@ -908,7 +908,7 @@ msgid "Create new database"
msgstr ""
#: libraries/messages.inc.php:199
-#, possible-php-format
+#, php-format
msgid "Create table on database %s"
msgstr ""
@@ -947,7 +947,7 @@ msgid "None"
msgstr ""
#: libraries/messages.inc.php:208
-#, possible-php-format
+#, php-format
msgid "Grant all privileges on database "%s""
msgstr ""
@@ -1008,17 +1008,17 @@ msgid "Database export options"
msgstr ""
#: libraries/messages.inc.php:224
-#, possible-php-format
+#, php-format
msgid "Database %1$s has been created."
msgstr ""
#: libraries/messages.inc.php:225
-#, possible-php-format
+#, php-format
msgid "Database %s has been dropped."
msgstr ""
#: libraries/messages.inc.php:226
-#, possible-php-format
+#, php-format
msgid "'%s' database does not exist."
msgstr ""
@@ -1027,7 +1027,7 @@ msgid "Databases"
msgstr ""
#: libraries/messages.inc.php:228
-#, possible-php-format
+#, php-format
msgid "%s databases have been dropped successfully."
msgstr ""
@@ -1110,7 +1110,7 @@ msgid "Default"
msgstr ""
#: libraries/messages.inc.php:248
-#, possible-php-format
+#, php-format
msgid "%s is the default storage engine on this MySQL server."
msgstr ""
@@ -1158,7 +1158,7 @@ msgid "Delete tracking data for this table"
msgstr ""
#: libraries/messages.inc.php:259
-#, possible-php-format
+#, php-format
msgid "Deleting %s"
msgstr ""
@@ -1276,12 +1276,12 @@ msgid "Dumping data for table"
msgstr ""
#: libraries/messages.inc.php:287
-#, possible-php-format
+#, php-format
msgid "Dump has been saved to file %s."
msgstr ""
#: libraries/messages.inc.php:288
-#, possible-php-format
+#, php-format
msgid "Dump %s row(s) starting at record # %s"
msgstr ""
@@ -1334,12 +1334,12 @@ msgid "END RAW"
msgstr ""
#: libraries/messages.inc.php:302
-#, possible-php-format
+#, php-format
msgid "%s is available on this MySQL server."
msgstr ""
#: libraries/messages.inc.php:303
-#, possible-php-format
+#, php-format
msgid "%s has been disabled for this MySQL server."
msgstr ""
@@ -1348,7 +1348,7 @@ msgid "Engines"
msgstr ""
#: libraries/messages.inc.php:305
-#, possible-php-format
+#, php-format
msgid "This MySQL server does not support the %s storage engine."
msgstr ""
@@ -1377,7 +1377,7 @@ msgid "Error: relation already exists."
msgstr ""
#: libraries/messages.inc.php:312
-#, possible-php-format
+#, php-format
msgid "Error renaming table %1$s to %2$s"
msgstr ""
@@ -1442,7 +1442,7 @@ msgid "Field"
msgstr ""
#: libraries/messages.inc.php:329
-#, possible-php-format
+#, php-format
msgid "Field %s has been dropped"
msgstr ""
@@ -1469,7 +1469,7 @@ msgid "Fields terminated by"
msgstr ""
#: libraries/messages.inc.php:335
-#, possible-php-format
+#, php-format
msgid ""
"File %s already exists on server, change filename or check overwrite option."
msgstr ""
@@ -1491,7 +1491,7 @@ msgid "table name"
msgstr ""
#: libraries/messages.inc.php:340
-#, possible-php-format
+#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
"formatting strings. Additionally the following transformations will happen: %"
@@ -1515,7 +1515,7 @@ msgid "File to import"
msgstr ""
#: libraries/messages.inc.php:345
-#, possible-php-format
+#, php-format
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
@@ -1540,7 +1540,7 @@ msgid "Font size"
msgstr ""
#: libraries/messages.inc.php:350
-#, possible-php-format
+#, php-format
msgid "Error creating foreign key on %1$s (check data types)"
msgstr ""
@@ -1816,7 +1816,7 @@ msgid "The file is being processed, please be patient."
msgstr ""
#: libraries/messages.inc.php:421
-#, possible-php-format
+#, php-format
msgid "Import has been successfully finished, %d queries executed."
msgstr ""
@@ -1839,14 +1839,14 @@ msgid "Indexes"
msgstr ""
#: libraries/messages.inc.php:426
-#, possible-php-format
+#, php-format
msgid ""
"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
"removed."
msgstr ""
#: libraries/messages.inc.php:427
-#, possible-php-format
+#, php-format
msgid "Index %s has been dropped"
msgstr ""
@@ -1863,7 +1863,7 @@ msgid "Index type:"
msgstr ""
#: libraries/messages.inc.php:431
-#, possible-php-format
+#, php-format
msgid "Problems with indexes of table `%s`"
msgstr ""
@@ -1920,7 +1920,7 @@ msgid "Insert as new row"
msgstr ""
#: libraries/messages.inc.php:443
-#, possible-php-format
+#, php-format
msgid "Inserted row id: %1$d"
msgstr ""
@@ -1963,22 +1963,22 @@ msgid "Column count has to be larger than zero."
msgstr ""
#: libraries/messages.inc.php:453
-#, possible-php-format
+#, php-format
msgid "Invalid column (%s) specified!"
msgstr ""
#: libraries/messages.inc.php:454
-#, possible-php-format
+#, php-format
msgid "Invalid field count in CSV input on line %d."
msgstr ""
#: libraries/messages.inc.php:455
-#, possible-php-format
+#, php-format
msgid "Invalid format of CSV input on line %d."
msgstr ""
#: libraries/messages.inc.php:456
-#, possible-php-format
+#, php-format
msgid "Invalid parameter for CSV import: %s"
msgstr ""
@@ -1999,17 +1999,17 @@ msgid "This plugin does not support compressed imports!"
msgstr ""
#: libraries/messages.inc.php:461
-#, possible-php-format
+#, php-format
msgid "%d is not valid row number."
msgstr ""
#: libraries/messages.inc.php:462
-#, possible-php-format
+#, php-format
msgid "Invalid hostname for server %1$s. Please review your configuration."
msgstr ""
#: libraries/messages.inc.php:463
-#, possible-php-format
+#, php-format
msgid "Invalid server index: \"%s\""
msgstr ""
@@ -2033,7 +2033,7 @@ msgid "Joins"
msgstr ""
#: libraries/messages.inc.php:469
-#, possible-php-format
+#, php-format
msgid "Jump to database "%s"."
msgstr ""
@@ -2064,7 +2064,7 @@ msgid "Kill"
msgstr ""
#: libraries/messages.inc.php:477
-#, possible-php-format
+#, php-format
msgid "The %s functionality is affected by a known bug, see %s"
msgstr ""
@@ -2081,7 +2081,7 @@ msgid "Language"
msgstr ""
#: libraries/messages.inc.php:482
-#, possible-php-format
+#, php-format
msgid "Unknown language: %1$s."
msgstr ""
@@ -2211,7 +2211,7 @@ msgid "Maximal length of created query"
msgstr ""
#: libraries/messages.inc.php:515
-#, possible-php-format
+#, php-format
msgid "Max: %s%s"
msgstr ""
@@ -2251,7 +2251,7 @@ msgid "MIME type"
msgstr ""
#: libraries/messages.inc.php:523
-#, possible-php-format
+#, php-format
msgid ""
"No description is available for this transformation.<br />Please ask the "
"author what %s does."
@@ -2262,7 +2262,7 @@ msgid "Browser transformation"
msgstr ""
#: libraries/messages.inc.php:525
-#, possible-php-format
+#, php-format
msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
@@ -2310,7 +2310,7 @@ msgid "Move table to (database<b>.</b>table):"
msgstr ""
#: libraries/messages.inc.php:535
-#, possible-php-format
+#, php-format
msgid "Table %s has been moved to %s."
msgstr ""
@@ -2397,7 +2397,7 @@ msgid "MySQL connection collation"
msgstr ""
#: libraries/messages.inc.php:553
-#, possible-php-format
+#, php-format
msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
@@ -2424,7 +2424,7 @@ msgid "Next"
msgstr ""
#: libraries/messages.inc.php:560
-#, possible-php-format
+#, php-format
msgid "No activity within %s seconds; please log in again"
msgstr ""
@@ -2502,7 +2502,7 @@ msgid "No Password"
msgstr ""
#: libraries/messages.inc.php:578
-#, possible-php-format
+#, php-format
msgid "The web server does not have permission to save the file %s."
msgstr ""
@@ -2523,7 +2523,7 @@ msgid "No rows selected"
msgstr ""
#: libraries/messages.inc.php:583
-#, possible-php-format
+#, php-format
msgid "Insufficient space to save the file %s."
msgstr ""
@@ -2532,7 +2532,7 @@ msgid "No tables found in database."
msgstr ""
#: libraries/messages.inc.php:585
-#, possible-php-format
+#, php-format
msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
@@ -2551,7 +2551,7 @@ msgid "not present"
msgstr ""
#: libraries/messages.inc.php:589
-#, possible-php-format
+#, php-format
msgid "<b>%s</b> table not found or not set in %s"
msgstr ""
@@ -2576,12 +2576,12 @@ msgid "Number of tables"
msgstr ""
#: libraries/messages.inc.php:595
-#, possible-php-format
+#, php-format
msgid "%s match(es) inside table <i>%s</i>"
msgstr ""
#: libraries/messages.inc.php:596
-#, possible-php-format
+#, php-format
msgid "<b>Total:</b> <i>%s</i> match(es)"
msgstr ""
@@ -2670,12 +2670,12 @@ msgid "Partition maintenance"
msgstr ""
#: libraries/messages.inc.php:621
-#, possible-php-format
+#, php-format
msgid "Partition %s"
msgstr ""
#: libraries/messages.inc.php:622
-#, possible-php-format
+#, php-format
msgid "The password for %s was changed successfully."
msgstr ""
@@ -2818,12 +2818,12 @@ msgid "Transaction buffer size"
msgstr ""
#: libraries/messages.inc.php:651
-#, possible-php-format
+#, php-format
msgid "Schema of the \"%s\" database - Page %s"
msgstr ""
#: libraries/messages.inc.php:652
-#, possible-php-format
+#, php-format
msgid "The \"%s\" table doesn't exist!"
msgstr ""
@@ -3188,7 +3188,7 @@ msgid "Query window"
msgstr ""
#: libraries/messages.inc.php:741
-#, possible-php-format
+#, php-format
msgid "SQL query on database <b>%s</b>:"
msgstr ""
@@ -3201,14 +3201,14 @@ msgid "SQL history"
msgstr ""
#: libraries/messages.inc.php:744
-#, possible-php-format
+#, php-format
msgid ""
"<b>Query statistics</b>: Since its startup, %s queries have been sent to the "
"server."
msgstr ""
#: libraries/messages.inc.php:745
-#, possible-php-format
+#, php-format
msgid "Query took %01.4f sec"
msgstr ""
@@ -3265,7 +3265,7 @@ msgid "Relation deleted"
msgstr ""
#: libraries/messages.inc.php:760
-#, possible-php-format
+#, php-format
msgid ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
@@ -3316,12 +3316,12 @@ msgid "Remove selected users"
msgstr ""
#: libraries/messages.inc.php:772
-#, possible-php-format
+#, php-format
msgid "Database %s has been renamed to %s"
msgstr ""
#: libraries/messages.inc.php:773
-#, possible-php-format
+#, php-format
msgid "Table %s has been renamed to %s"
msgstr ""
@@ -3360,7 +3360,7 @@ msgid "Add slave replication user"
msgstr ""
#: libraries/messages.inc.php:782
-#, possible-php-format
+#, php-format
msgid "Master server changed succesfully to %s"
msgstr ""
@@ -3378,7 +3378,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:786
-#, possible-php-format
+#, php-format
msgid "Unable to connect to master %s."
msgstr ""
@@ -3423,7 +3423,7 @@ msgid "Please select databases:"
msgstr ""
#: libraries/messages.inc.php:795
-#, possible-php-format
+#, php-format
msgid ""
"This server is not configured as master in a replication process. Would you "
"like to <a href=\"%s\">configure</a> it?"
@@ -3465,7 +3465,7 @@ msgid "Error management:"
msgstr ""
#: libraries/messages.inc.php:804
-#, possible-php-format
+#, php-format
msgid "IO Thread %s only"
msgstr ""
@@ -3474,7 +3474,7 @@ msgid "Slave IO Thread not running!"
msgstr ""
#: libraries/messages.inc.php:806
-#, possible-php-format
+#, php-format
msgid ""
"This server is not configured as slave in a replication process. Would you "
"like to <a href=\"%s\">configure</a> it?"
@@ -3509,12 +3509,12 @@ msgid "Slave SQL Thread not running!"
msgstr ""
#: libraries/messages.inc.php:814
-#, possible-php-format
+#, php-format
msgid "SQL Thread %s only"
msgstr ""
#: libraries/messages.inc.php:815
-#, possible-php-format
+#, php-format
msgid ""
"This MySQL server works as %s in <b>replication</b> process. For further "
"information about replication status on the server, please visit the <a href="
@@ -3554,7 +3554,7 @@ msgid "Resource limits"
msgstr ""
#: libraries/messages.inc.php:824
-#, possible-php-format
+#, php-format
msgid "Restart insertion with %s rows"
msgstr ""
@@ -3573,7 +3573,7 @@ msgid "Revoke all active privileges from the users and delete them afterwards."
msgstr ""
#: libraries/messages.inc.php:828
-#, possible-php-format
+#, php-format
msgid "You have revoked the privileges for %s"
msgstr ""
@@ -3614,7 +3614,7 @@ msgid "horizontal"
msgstr ""
#: libraries/messages.inc.php:838
-#, possible-php-format
+#, php-format
msgid "in %s mode and repeat headers after %s cells"
msgstr ""
@@ -3631,7 +3631,7 @@ msgid "Row Statistics"
msgstr ""
#: libraries/messages.inc.php:842
-#, possible-php-format
+#, php-format
msgid "running on %s"
msgstr ""
@@ -3640,12 +3640,12 @@ msgid "Submit Query"
msgstr ""
#: libraries/messages.inc.php:844
-#, possible-php-format
+#, php-format
msgid "Run SQL query/queries on server %s"
msgstr ""
#: libraries/messages.inc.php:845
-#, possible-php-format
+#, php-format
msgid "Run SQL query/queries on database %s"
msgstr ""
@@ -3654,7 +3654,7 @@ msgid "Russian"
msgstr ""
#: libraries/messages.inc.php:848
-#, possible-php-format
+#, php-format
msgid "Save on server in %s directory"
msgstr ""
@@ -3703,7 +3703,7 @@ msgid "as regular expression"
msgstr ""
#: libraries/messages.inc.php:860
-#, possible-php-format
+#, php-format
msgid "Search results for \"<i>%s</i>\" %s:"
msgstr ""
@@ -3784,7 +3784,7 @@ msgid "Runtime Information"
msgstr ""
#: libraries/messages.inc.php:880
-#, possible-php-format
+#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
msgstr ""
@@ -4688,7 +4688,7 @@ msgid "Your SQL query has been executed successfully"
msgstr ""
#: libraries/messages.inc.php:1074
-#, possible-php-format
+#, php-format
msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
@@ -4711,7 +4711,7 @@ msgid "Hardware authentication failed"
msgstr ""
#: libraries/messages.inc.php:1079
-#, possible-php-format
+#, php-format
msgid "File %s does not contain any key id"
msgstr ""
@@ -4746,7 +4746,7 @@ msgid "Add column(s)"
msgstr ""
#: libraries/messages.inc.php:1088
-#, possible-php-format
+#, php-format
msgid "Table %s already exists!"
msgstr ""
@@ -4755,7 +4755,7 @@ msgid "Alter column(s)"
msgstr ""
#: libraries/messages.inc.php:1090
-#, possible-php-format
+#, php-format
msgid "Table %1$s has been altered successfully"
msgstr ""
@@ -4780,22 +4780,22 @@ msgid "The table name is empty!"
msgstr ""
#: libraries/messages.inc.php:1096
-#, possible-php-format
+#, php-format
msgid "Table %1$s has been created."
msgstr ""
#: libraries/messages.inc.php:1097
-#, possible-php-format
+#, php-format
msgid "Table %s has been dropped"
msgstr ""
#: libraries/messages.inc.php:1098
-#, possible-php-format
+#, php-format
msgid "Table %s has been emptied"
msgstr ""
#: libraries/messages.inc.php:1099
-#, possible-php-format
+#, php-format
msgid "Table %s has been flushed"
msgstr ""
@@ -4832,7 +4832,7 @@ msgid "Remove index(s)"
msgstr ""
#: libraries/messages.inc.php:1108
-#, possible-php-format
+#, php-format
msgid "%s table(s)"
msgstr ""
@@ -4877,7 +4877,7 @@ msgid "Thai"
msgstr ""
#: libraries/messages.inc.php:1119
-#, possible-php-format
+#, php-format
msgid "Default theme %s not found!"
msgstr ""
@@ -4886,17 +4886,17 @@ msgid "No preview available."
msgstr ""
#: libraries/messages.inc.php:1121
-#, possible-php-format
+#, php-format
msgid "Theme %s not found!"
msgstr ""
#: libraries/messages.inc.php:1122
-#, possible-php-format
+#, php-format
msgid "No valid image path for theme %s found!"
msgstr ""
#: libraries/messages.inc.php:1123
-#, possible-php-format
+#, php-format
msgid "Theme path not found for theme %s!"
msgstr ""
@@ -4913,12 +4913,12 @@ msgid "Threads"
msgstr ""
#: libraries/messages.inc.php:1127
-#, possible-php-format
+#, php-format
msgid "Thread %s was successfully killed."
msgstr ""
#: libraries/messages.inc.php:1128
-#, possible-php-format
+#, php-format
msgid ""
"Previous import timed out, after resubmitting will continue from position %d."
msgstr ""
@@ -4964,7 +4964,7 @@ msgid "Total"
msgstr ""
#: libraries/messages.inc.php:1138
-#, possible-php-format
+#, php-format
msgid "Tracking of %s.%s is activated."
msgstr ""
@@ -4973,7 +4973,7 @@ msgid "Activate now"
msgstr ""
#: libraries/messages.inc.php:1140
-#, possible-php-format
+#, php-format
msgid "Activate tracking for %s.%s"
msgstr ""
@@ -4986,7 +4986,7 @@ msgid "Create version"
msgstr ""
#: libraries/messages.inc.php:1143
-#, possible-php-format
+#, php-format
msgid "Create version %s of %s.%s"
msgstr ""
@@ -5011,12 +5011,12 @@ msgid "Deactivate now"
msgstr ""
#: libraries/messages.inc.php:1149
-#, possible-php-format
+#, php-format
msgid "Deactivate tracking for %s.%s"
msgstr ""
#: libraries/messages.inc.php:1150
-#, possible-php-format
+#, php-format
msgid "Export as %s"
msgstr ""
@@ -5037,7 +5037,7 @@ msgid "Close"
msgstr ""
#: libraries/messages.inc.php:1155
-#, possible-php-format
+#, php-format
msgid "Tracking report for table `%s`"
msgstr ""
@@ -5046,7 +5046,7 @@ msgid "Tracking report"
msgstr ""
#: libraries/messages.inc.php:1157
-#, possible-php-format
+#, php-format
msgid "Show %s with dates from %s to %s by user %s %s"
msgstr ""
@@ -5139,22 +5139,22 @@ msgid "Username"
msgstr ""
#: libraries/messages.inc.php:1180
-#, possible-php-format
+#, php-format
msgid "Tracking for %s.%s , version %s is activated."
msgstr ""
#: libraries/messages.inc.php:1181
-#, possible-php-format
+#, php-format
msgid "Version %s is created, tracking for %s.%s is activated."
msgstr ""
#: libraries/messages.inc.php:1182
-#, possible-php-format
+#, php-format
msgid "Tracking for %s.%s , version %s is deactivated."
msgstr ""
#: libraries/messages.inc.php:1183
-#, possible-php-format
+#, php-format
msgid "Version %s snapshot (SQL code)"
msgstr ""
@@ -5312,14 +5312,14 @@ msgid "Unselect All"
msgstr ""
#: libraries/messages.inc.php:1213
-#, possible-php-format
+#, php-format
msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
#: libraries/messages.inc.php:1214
-#, possible-php-format
+#, php-format
msgid "You have updated the privileges for %s."
msgstr ""
@@ -5337,7 +5337,7 @@ msgid ""
msgstr ""
#: libraries/messages.inc.php:1218
-#, possible-php-format
+#, php-format
msgid "You should upgrade to %s %s or later."
msgstr ""
@@ -5372,7 +5372,7 @@ msgid "Unknown error in file upload."
msgstr ""
#: libraries/messages.inc.php:1226
-#, possible-php-format
+#, php-format
msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
@@ -5395,7 +5395,7 @@ msgid "Use Host Table"
msgstr ""
#: libraries/messages.inc.php:1231
-#, possible-php-format
+#, php-format
msgid "The user %s already exists!"
msgstr ""
@@ -5420,7 +5420,7 @@ msgid "The selected users have been deleted successfully."
msgstr ""
#: libraries/messages.inc.php:1237
-#, possible-php-format
+#, php-format
msgid "Users having access to "%s""
msgstr ""
@@ -5450,7 +5450,7 @@ msgid "Validate SQL"
msgstr ""
#: libraries/messages.inc.php:1245
-#, possible-php-format
+#, php-format
msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
@@ -5481,14 +5481,14 @@ msgid "View dump (schema) of table"
msgstr ""
#: libraries/messages.inc.php:1252
-#, possible-php-format
+#, php-format
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
msgstr ""
#: libraries/messages.inc.php:1253
-#, possible-php-format
+#, php-format
msgid "View %s has been dropped"
msgstr ""
@@ -5521,7 +5521,7 @@ msgid "Web server"
msgstr ""
#: libraries/messages.inc.php:1262
-#, possi
ble-php-format
+#, php-format
msgid "Welcome to %s"
msgstr ""
@@ -5717,7 +5717,7 @@ msgid "Bzip2"
msgstr ""
#: setup/lib/messages.inc.php:32
-#, possible-php-format
+#, php-format
msgid ""
"[a@?page=form&formset=features#tab_Import_export]Bzip2 compression and "
"decompression[/a] requires functions (%s) which are unavailable on this "
@@ -5897,7 +5897,7 @@ msgid "Submitted form contains errors"
msgstr ""
#: setup/lib/messages.inc.php:74
-#, possible-php-format
+#, php-format
msgid "Incorrect IP address: %s"
msgstr ""
@@ -5910,7 +5910,7 @@ msgid "Incorrect value"
msgstr ""
#: setup/lib/messages.inc.php:77
-#, possible-php-format
+#, php-format
msgid "Missing data for %s"
msgstr ""
@@ -6192,7 +6192,7 @@ msgid "GZip"
msgstr ""
#: setup/lib/messages.inc.php:151
-#, possible-php-format
+#, php-format
msgid ""
"[a@?page=form&formset=features#tab_Import_export]GZip compression and "
"decompression[/a] requires functions (%s) which are unavailable on this "
@@ -6253,7 +6253,7 @@ msgid ""
msgstr ""
#: setup/lib/messages.inc.php:165
-#, possible-php-format
+#, php-format
msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
@@ -6569,7 +6569,7 @@ msgid "Save directory"
msgstr ""
#: setup/lib/messages.inc.php:238
-#, possible-php-format
+#, php-format
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -6720,7 +6720,7 @@ msgid "Disable use of INFORMATION_SCHEMA"
msgstr ""
#: setup/lib/messages.inc.php:271
-#, possible-php-format
+#, php-format
msgid ""
"If you feel this is necessary, use additional protection settings - [a@?"
"page=servers&mode=edit&id=%1$d#tab_Server_config]host authentication"
@@ -6976,7 +6976,7 @@ msgid "Verbose name of this server"
msgstr ""
#: setup/lib/messages.inc.php:328
-#, possible-php-format
+#, php-format
msgid "Set value: %s"
msgstr ""
@@ -7153,14 +7153,14 @@ msgid "Check for latest version"
msgstr ""
#: setup/lib/messages.inc.php:371
-#, possible-php-format
+#, php-format
msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
#: setup/lib/messages.inc.php:372
-#, possible-php-format
+#, php-format
msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
@@ -7194,14 +7194,14 @@ msgid ""
msgstr ""
#: setup/lib/messages.inc.php:379
-#, possible-php-format
+#, php-format
msgid ""
"[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] "
"requires functions (%s) which are unavailable on this system."
msgstr ""
#: setup/lib/messages.inc.php:380
-#, possible-php-format
+#, php-format
msgid ""
"[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] "
"requires functions (%s) which are unavailable on this system."
diff --git a/po/uz.po b/po/uz.po
index 0a91af5..245afdf 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index 41d44ac..f282bc0 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index bd95a7f..8a43b20 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 8c2a183..1d4a6e4 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-04-09 11:57+0200\n"
+"POT-Creation-Date: 2010-04-09 14:06+0200\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"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1399-g92cafc0
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via 92cafc0f3e6de258a35edfba10e74e602a99f1c5 (commit)
via 7f0a84b44da7b6732e7998fc9ee5044fa602f4d4 (commit)
via 6d2468d521a2582f71ecda6ad5ad48790b807585 (commit)
via 6382fe2b65f9907fedf32b2de111f6c910767e30 (commit)
via 4a521b8dee68660de0d97b8d4e43b7a190f7348c (commit)
via 0450d0195a8f147bb90480af68e5ca4bec805916 (commit)
via 0d3f4318842850f1acf695a67460703730410184 (commit)
from f9ccd69538a1d934db6a8ca8dd120811b2a7958d (commit)
- Log -----------------------------------------------------------------
commit 92cafc0f3e6de258a35edfba10e74e602a99f1c5
Merge: f9ccd69538a1d934db6a8ca8dd120811b2a7958d 7f0a84b44da7b6732e7998fc9ee5044fa602f4d4
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 14:03:37 2010 +0200
Merge remote branch 'pootle/master'
commit 7f0a84b44da7b6732e7998fc9ee5044fa602f4d4
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:03:29 2010 +0200
Translation update done using Pootle.
commit 6d2468d521a2582f71ecda6ad5ad48790b807585
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:03:11 2010 +0200
Translation update done using Pootle.
commit 6382fe2b65f9907fedf32b2de111f6c910767e30
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:03:07 2010 +0200
Translation update done using Pootle.
commit 4a521b8dee68660de0d97b8d4e43b7a190f7348c
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:02:54 2010 +0200
Translation update done using Pootle.
commit 0450d0195a8f147bb90480af68e5ca4bec805916
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:01:31 2010 +0200
Translation update done using Pootle.
commit 0d3f4318842850f1acf695a67460703730410184
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 9 14:01:19 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/ta.po | 15 ++++++++-------
po/ur.po | 15 ++++++++-------
2 files changed, 16 insertions(+), 14 deletions(-)
diff --git a/po/ta.po b/po/ta.po
index afb69f5..caf1a8f 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -2,19 +2,20 @@
# Copyright (C) 2003 - 2010 phpMyAdmin devel team
# This file is distributed under the same license as the phpMyAdmin package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-09 11:57+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2010-04-09 14:03+0200\n"
+"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
+"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.0.1\n"
#: js/messages.php:50 libraries/messages.inc.php:372
msgid "Go"
@@ -43,13 +44,13 @@ msgstr ""
#: libraries/common.lib.php:411
msgctxt "$mysql_5_1_doc_lang"
msgid "en"
-msgstr ""
+msgstr "en"
#. l10n: Language to use for MySQL 5.0 documentation, please use only languages which do exist in official documentation.
#: libraries/common.lib.php:415
msgctxt "$mysql_5_0_doc_lang"
msgid "en"
-msgstr ""
+msgstr "en"
#: libraries/common.lib.php:1276
msgid "Inline edit of this query"
@@ -83,7 +84,7 @@ msgstr[1] ""
#. l10n: Text direction, use either ltr or rtl
#: libraries/messages.inc.php:19
msgid "ltr"
-msgstr ""
+msgstr "ltr"
#. l10n: Thousands separator
#: libraries/messages.inc.php:21
diff --git a/po/ur.po b/po/ur.po
index ee9dccc..03bed5c 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -2,19 +2,20 @@
# Copyright (C) 2003 - 2010 phpMyAdmin devel team
# This file is distributed under the same license as the phpMyAdmin package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
-#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-09 11:57+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"PO-Revision-Date: 2010-04-09 14:02+0200\n"
+"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: LANGUAGE <LL(a)li.org>\n"
+"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Translate Toolkit 1.5.3\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+"X-Generator: Pootle 2.0.1\n"
#: js/messages.php:50 libraries/messages.inc.php:372
msgid "Go"
@@ -43,13 +44,13 @@ msgstr ""
#: libraries/common.lib.php:411
msgctxt "$mysql_5_1_doc_lang"
msgid "en"
-msgstr ""
+msgstr "en"
#. l10n: Language to use for MySQL 5.0 documentation, please use only languages which do exist in official documentation.
#: libraries/common.lib.php:415
msgctxt "$mysql_5_0_doc_lang"
msgid "en"
-msgstr ""
+msgstr "en"
#: libraries/common.lib.php:1276
msgid "Inline edit of this query"
@@ -83,7 +84,7 @@ msgstr[1] ""
#. l10n: Text direction, use either ltr or rtl
#: libraries/messages.inc.php:19
msgid "ltr"
-msgstr ""
+msgstr "rtl"
#. l10n: Thousands separator
#: libraries/messages.inc.php:21
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2RC1-1392-gf9ccd69
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via f9ccd69538a1d934db6a8ca8dd120811b2a7958d (commit)
from a86d3fee48b27eb07dd363bb60d0799d068b5d40 (commit)
- Log -----------------------------------------------------------------
commit f9ccd69538a1d934db6a8ca8dd120811b2a7958d
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 13:54:15 2010 +0200
Remove no longer needed language file names.
-----------------------------------------------------------------------
Summary of changes:
browse_foreigners.php | 4 +-
config.sample.inc.php | 2 +-
index.php | 2 +-
libraries/config.default.php | 4 +-
libraries/core.lib.php | 6 +-
libraries/display_select_lang.lib.php | 4 +-
libraries/header_meta_style.inc.php | 4 +-
libraries/header_printview.inc.php | 2 +-
libraries/select_lang.lib.php | 134 ++++++++++++++++-----------------
libraries/url_generating.lib.php | 6 +-
navigation.php | 6 +-
pmd_general.php | 2 +-
setup/frames/index.inc.php | 8 +-
test/theme.php | 2 +-
14 files changed, 92 insertions(+), 94 deletions(-)
diff --git a/browse_foreigners.php b/browse_foreigners.php
index b1f2083..69b210e 100644
--- a/browse_foreigners.php
+++ b/browse_foreigners.php
@@ -87,8 +87,8 @@ if (is_array($foreignData['disp_row'])) {
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
- xml:lang="<?php echo $available_languages[$lang][2]; ?>"
- lang="<?php echo $available_languages[$lang][2]; ?>"
+ xml:lang="<?php echo $available_languages[$lang][1]; ?>"
+ lang="<?php echo $available_languages[$lang][1]; ?>"
dir="<?php echo $text_dir; ?>">
<head>
diff --git a/config.sample.inc.php b/config.sample.inc.php
index e044304..e952c80 100644
--- a/config.sample.inc.php
+++ b/config.sample.inc.php
@@ -110,7 +110,7 @@ $cfg['SaveDir'] = '';
* Default language to use, if not browser-defined or user-defined
* (you find all languages in the file libraries/select_lang.lib.php)
* uncomment the desired line:
- * default = 'en-utf-8'
+ * default = 'en'
*/
//$cfg['DefaultLang'] = 'en';
//$cfg['DefaultLang'] = 'de';
diff --git a/index.php b/index.php
index a57be9b..98f4c9f 100644
--- a/index.php
+++ b/index.php
@@ -92,7 +92,7 @@ if (isset($GLOBALS['target']) && is_string($GLOBALS['target']) && !empty($GLOBAL
$main_target .= $url_query;
-$lang_iso_code = $GLOBALS['available_languages'][$GLOBALS['lang']][2];
+$lang_iso_code = $GLOBALS['available_languages'][$GLOBALS['lang']][1];
// start output
diff --git a/libraries/config.default.php b/libraries/config.default.php
index 2d1ca1c..d1426d5 100644
--- a/libraries/config.default.php
+++ b/libraries/config.default.php
@@ -1949,7 +1949,7 @@ $cfg['PDFDefaultPageSize'] = 'A4';
*
* @global string $cfg['DefaultLang']
*/
-$cfg['DefaultLang'] = 'en-utf-8';
+$cfg['DefaultLang'] = 'en';
/**
* Default connection collation
@@ -1961,7 +1961,7 @@ $cfg['DefaultConnectionCollation'] = 'utf8_general_ci';
/**
* Force: always use this language - must be defined in
* libraries/select_lang.lib.php
- * $cfg['Lang'] = 'en-utf-8';
+ * $cfg['Lang'] = 'en';
*
* Regular expression to limit listed languages, e.g. '^(cs|en)' for Czech and
* English only
diff --git a/libraries/core.lib.php b/libraries/core.lib.php
index 69a6aaf..3b8f377 100644
--- a/libraries/core.lib.php
+++ b/libraries/core.lib.php
@@ -225,7 +225,7 @@ function PMA_fatalError($error_message, $message_args = null)
// it could happen PMA_fatalError() is called before language file is loaded
if (! isset($GLOBALS['available_languages'])) {
$GLOBALS['cfg'] = array(
- 'DefaultLang' => 'en-utf-8',
+ 'DefaultLang' => 'en',
'AllowAnywhereRecoding' => false);
// Loads the language file
@@ -237,7 +237,7 @@ function PMA_fatalError($error_message, $message_args = null)
$GLOBALS['strError'] = 'Error';
}
- // $text_dir is set in lang/language-utf-8.inc.php
+ // $text_dir is set in po file
if (isset($text_dir)) {
$GLOBALS['text_dir'] = $text_dir;
}
@@ -262,7 +262,7 @@ function PMA_fatalError($error_message, $message_args = null)
// Displays the error message
// (do not use & for parameters sent by header)
$query_params = array(
- 'lang' => $GLOBALS['available_languages'][$GLOBALS['lang']][2],
+ 'lang' => $GLOBALS['available_languages'][$GLOBALS['lang']][1],
'dir' => $GLOBALS['text_dir'],
'type' => $GLOBALS['strError'],
'error' => $error_message,
diff --git a/libraries/display_select_lang.lib.php b/libraries/display_select_lang.lib.php
index 831f8c5..f91ea0a 100644
--- a/libraries/display_select_lang.lib.php
+++ b/libraries/display_select_lang.lib.php
@@ -65,8 +65,8 @@ function PMA_select_language($use_fieldset = FALSE, $show_doc = TRUE) {
$lang_name = ucfirst(substr(strrchr($tmplang[0], '|'), 1));
// Include native name if non empty
- if (!empty($tmplang[3])) {
- $lang_name = $tmplang[3] . ' - '
+ if (!empty($tmplang[2])) {
+ $lang_name = $tmplang[2] . ' - '
. $lang_name;
}
diff --git a/libraries/header_meta_style.inc.php b/libraries/header_meta_style.inc.php
index c6c6f96..a0cd326 100644
--- a/libraries/header_meta_style.inc.php
+++ b/libraries/header_meta_style.inc.php
@@ -34,7 +34,7 @@ if ($GLOBALS['text_dir'] == 'ltr') {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $GLOBALS['charset']; ?>" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
@@ -46,7 +46,7 @@ if ($GLOBALS['text_dir'] == 'ltr') {
echo 'phpMyAdmin';
}
?></title>
-<?php
+<?php
// goes before our themed CSS
if (defined('PMA_COLORPICKER')) { ?>
<link rel="stylesheet" type="text/css" href="js/colorpicker/css/colorpicker.css" />
diff --git a/libraries/header_printview.inc.php b/libraries/header_printview.inc.php
index 962c590..7001019 100644
--- a/libraries/header_printview.inc.php
+++ b/libraries/header_printview.inc.php
@@ -41,7 +41,7 @@ if ($text_dir == 'ltr') {
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $available_languages[$lang][2]; ?>" lang="<?php echo $available_languages[$lang][2]; ?>" dir="<?php echo $text_dir; ?>">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $available_languages[$lang][1]; ?>" lang="<?php echo $available_languages[$lang][1]; ?>" dir="<?php echo $text_dir; ?>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset; ?>" />
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index f98d1c3..0f1ba8a 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -172,11 +172,9 @@ function PMA_langDetect($str, $envType)
* be specified first;
* - the '|' character (it means 'OR');
* - the full language name.
- * 3. The second value associated to the key is the name of the file to load
- * without the 'inc.php' extension.
- * 4. The third value associated to the key is the language code as defined by
+ * 3. The second value associated to the key is the language code as defined by
* the RFC1766.
- * 5. The fourth value is its native name in html entities.
+ * 4. The third value is its native name in html entities or UTF-8.
*
* Beware that the sorting order (first values associated to keys by
* alphabetical reverse order in the array) is important: 'zh-tw' (chinese
@@ -187,129 +185,129 @@ function PMA_langDetect($str, $envType)
function PMA_langDetails($lang) {
switch ($lang) {
case 'en':
- return array('en|english', 'english-utf-8', 'en', '');
+ return array('en|english', 'en', '');
case 'af':
- return array('af|afrikaans', 'afrikaans-utf-8', 'af', '');
+ return array('af|afrikaans', 'af', '');
case 'ar':
- return array('ar|arabic', 'arabic-utf-8', 'ar', 'العربية');
+ return array('ar|arabic', 'ar', 'العربية');
case 'az':
- return array('az|azerbaijani', 'azerbaijani-utf-8', 'az', 'Azərbaycanca');
+ return array('az|azerbaijani', 'az', 'Azərbaycanca');
case 'bn':
- return array('bn|bangla', 'bangla-utf-8', 'bn', '');
+ return array('bn|bangla', 'bn', '');
case 'be':
- return array('be|belarusian', 'belarusian_cyrillic-utf-8', 'be', 'Беларуская');
+ return array('be|belarusian', 'be', 'Беларуская');
case 'be@latin':
- return array('be[-_]lat|belarusian latin', 'belarusian_latin-utf-8', 'be-lat', 'Biełaruskaja');
+ return array('be[-_]lat|belarusian latin', 'be-lat', 'Biełaruskaja');
case 'bg':
- return array('bg|bulgarian', 'bulgarian-utf-8', 'bg', 'Български');
+ return array('bg|bulgarian', 'bg', 'Български');
case 'bs':
- return array('bs|bosnian', 'bosnian-utf-8', 'bs', 'Bosanski');
+ return array('bs|bosnian', 'bs', 'Bosanski');
case 'ca':
- return array('ca|catalan', 'catalan-utf-8', 'ca', 'Català');
+ return array('ca|catalan', 'ca', 'Català');
case 'cs':
- return array('cs|czech', 'czech-utf-8', 'cs', 'Česky');
+ return array('cs|czech', 'cs', 'Česky');
case 'da':
- return array('da|danish', 'danish-utf-8', 'da', 'Dansk');
+ return array('da|danish', 'da', 'Dansk');
case 'de':
- return array('de|german', 'german-utf-8', 'de', 'Deutsch');
+ return array('de|german', 'de', 'Deutsch');
case 'el':
- return array('el|greek', 'greek-utf-8', 'el', 'Ελληνικά');
+ return array('el|greek', 'el', 'Ελληνικά');
case 'en':
- return array('en|english', 'english-utf-8', 'en', '');
+ return array('en|english', 'en', '');
case 'en_GB':
- return array('en[_-]gb|english (United Kingdom)', 'english-gb-utf-8', 'en', '');
+ return array('en[_-]gb|english (United Kingdom)', 'en-gb', '');
case 'es':
- return array('es|spanish', 'spanish-utf-8', 'es', 'Español');
+ return array('es|spanish', 'es', 'Español');
case 'et':
- return array('et|estonian', 'estonian-utf-8', 'et', 'Eesti');
+ return array('et|estonian', 'et', 'Eesti');
case 'eu':
- return array('eu|basque', 'basque-utf-8', 'eu', 'Euskara');
+ return array('eu|basque', 'eu', 'Euskara');
case 'fa':
- return array('fa|persian', 'persian-utf-8', 'fa', 'فارسی');
+ return array('fa|persian', 'fa', 'فارسی');
case 'fi':
- return array('fi|finnish', 'finnish-utf-8', 'fi', 'Suomi');
+ return array('fi|finnish', 'fi', 'Suomi');
case 'fr':
- return array('fr|french', 'french-utf-8', 'fr', 'Français');
+ return array('fr|french', 'fr', 'Français');
case 'gl':
- return array('gl|galician', 'galician-utf-8', 'gl', 'Galego');
+ return array('gl|galician', 'gl', 'Galego');
case 'he':
- return array('he|hebrew', 'hebrew-utf-8', 'he', 'עברית');
+ return array('he|hebrew', 'he', 'עברית');
case 'hi':
- return array('hi|hindi', 'hindi-utf-8', 'hi', 'हिन्दी');
+ return array('hi|hindi', 'hi', 'हिन्दी');
case 'hr':
- return array('hr|croatian', 'croatian-utf-8', 'hr', 'Hrvatski');
+ return array('hr|croatian', 'hr', 'Hrvatski');
case 'hu':
- return array('hu|hungarian', 'hungarian-utf-8', 'hu', 'Magyar');
+ return array('hu|hungarian', 'hu', 'Magyar');
case 'id':
- return array('id|indonesian', 'indonesian-utf-8', 'id', 'Bahasa Indonesia');
+ return array('id|indonesian', 'id', 'Bahasa Indonesia');
case 'it':
- return array('it|italian', 'italian-utf-8', 'it', 'Italiano');
+ return array('it|italian', 'it', 'Italiano');
case 'ja':
- return array('ja|japanese', 'japanese-utf-8', 'ja', '日本語');
+ return array('ja|japanese', 'ja', '日本語');
case 'ko':
- return array('ko|korean', 'korean-utf-8', 'ko', '한국어');
+ return array('ko|korean', 'ko', '한국어');
case 'ka':
- return array('ka|georgian', 'georgian-utf-8', 'ka', 'ქართული');
+ return array('ka|georgian', 'ka', 'ქართული');
case 'lt':
- return array('lt|lithuanian', 'lithuanian-utf-8', 'lt', 'Lietuvių');
+ return array('lt|lithuanian', 'lt', 'Lietuvių');
case 'lv':
- return array('lv|latvian', 'latvian-utf-8', 'lv', 'Latviešu');
+ return array('lv|latvian', 'lv', 'Latviešu');
case 'mk':
- return array('mk|macedonian', 'macedonian_cyrillic-utf-8', 'mk', 'Macedonian');
+ return array('mk|macedonian', 'mk', 'Macedonian');
case 'mn':
- return array('mn|mongolian', 'mongolian-utf-8', 'mn', 'Монгол');
+ return array('mn|mongolian', 'mn', 'Монгол');
case 'ms':
- return array('ms|malay', 'malay-utf-8', 'ms', 'Bahasa Melayu');
+ return array('ms|malay', 'ms', 'Bahasa Melayu');
case 'nl':
- return array('nl|dutch', 'dutch-utf-8', 'nl', 'Nederlands');
+ return array('nl|dutch', 'nl', 'Nederlands');
case 'nb':
- return array('nb|norwegian', 'norwegian-utf-8', 'nb', 'Norsk');
+ return array('nb|norwegian', 'nb', 'Norsk');
case 'pl':
- return array('pl|polish', 'polish-utf-8', 'pl', 'Polski');
+ return array('pl|polish', 'pl', 'Polski');
case 'pt_BR':
- return array('pt[-_]br|brazilian portuguese', 'brazilian_portuguese-utf-8', 'pt-BR', 'Português');
+ return array('pt[-_]br|brazilian portuguese', 'pt-BR', 'Português');
case 'pt':
- return array('pt|portuguese', 'portuguese-utf-8', 'pt', 'Português');
+ return array('pt|portuguese', 'pt', 'Português');
case 'ro':
- return array('ro|romanian', 'romanian-utf-8', 'ro', 'Română');
+ return array('ro|romanian', 'ro', 'Română');
case 'ru':
- return array('ru|russian', 'russian-utf-8', 'ru', 'Русский');
+ return array('ru|russian', 'ru', 'Русский');
case 'si':
- return array('si|sinhala', 'sinhala-utf-8', 'si', 'සිංහල');
+ return array('si|sinhala', 'si', 'සිංහල');
case 'sk':
- return array('sk|slovak', 'slovak-utf-8', 'sk', 'Slovenčina');
+ return array('sk|slovak', 'sk', 'Slovenčina');
case 'sl':
- return array('sl|slovenian', 'slovenian-utf-8', 'sl', 'Slovenščina');
+ return array('sl|slovenian', 'sl', 'Slovenščina');
case 'sq':
- return array('sq|albanian', 'albanian-utf-8', 'sq', 'Shqip');
+ return array('sq|albanian', 'sq', 'Shqip');
case 'sr@latin':
- return array('sr[-_]lat|serbian latin', 'serbian_latin-utf-8', 'sr-lat', 'Srpski');
+ return array('sr[-_]lat|serbian latin', 'sr-lat', 'Srpski');
case 'sr':
- return array('sr|serbian', 'serbian_cyrillic-utf-8', 'sr', 'Српски');
+ return array('sr|serbian', 'sr', 'Српски');
case 'sv':
- return array('sv|swedish', 'swedish-utf-8', 'sv', 'Svenska');
+ return array('sv|swedish', 'sv', 'Svenska');
case 'ta':
- return array('ta|tamil', 'tamil-utf-8', 'ta', 'தமிழ்');
+ return array('ta|tamil', 'ta', 'தமிழ்');
case 'te':
- return array('te|telugu', 'telugu-utf-8', 'te', 'తెలుగు');
+ return array('te|telugu', 'te', 'తెలుగు');
case 'th':
- return array('th|thai', 'thai-utf-8', 'th', 'ภาษาไทย');
+ return array('th|thai', 'th', 'ภาษาไทย');
case 'tr':
- return array('tr|turkish', 'turkish-utf-8', 'tr', 'Türkçe');
+ return array('tr|turkish', 'tr', 'Türkçe');
case 'tt':
- return array('tt|tatarish', 'tatarish-utf-8', 'tt', 'Tatarça');
+ return array('tt|tatarish', 'tt', 'Tatarça');
case 'uk':
- return array('uk|ukrainian', 'ukrainian-utf-8', 'uk', 'Українська');
+ return array('uk|ukrainian', 'uk', 'Українська');
case 'ur':
- return array('ur|urdu', 'urdu-utf-8', 'ur', 'اُردوُ');
+ return array('ur|urdu', 'ur', 'اُردوُ');
case 'uz@latin':
- return array('uz[-_]lat|uzbek-latin', 'uzbek_latin-utf-8', 'uz-lat', 'O‘zbekcha');
+ return array('uz[-_]lat|uzbek-latin', 'uz-lat', 'O‘zbekcha');
case 'uz':
- return array('uz[-_]cyr|uzbek-cyrillic', 'uzbek_cyrillic-utf-8', 'uz-cyr', 'Ўзбекча');
+ return array('uz[-_]cyr|uzbek-cyrillic', 'uz-cyr', 'Ўзбекча');
case 'zh_TW':
- return array('zh[-_](tw|hk)|chinese traditional', 'chinese_traditional-utf-8', 'zh-TW', '中文');
+ return array('zh[-_](tw|hk)|chinese traditional', 'zh-TW', '中文');
case 'zh_CN':
- return array('zh|chinese simplified', 'chinese_simplified-utf-8', 'zh', '中文');
+ return array('zh|chinese simplified', 'zh', '中文');
}
return array("$lang|$lang", $lang, $lang);
}
@@ -322,7 +320,7 @@ function PMA_langDetails($lang) {
function PMA_langList()
{
/* We can always speak English */
- $result = array('en-utf-8' => PMA_langDetails('en'));
+ $result = array('en' => PMA_langDetails('en'));
/* Open the directory */
$handle = @opendir($GLOBALS['lang_path']);
@@ -440,7 +438,7 @@ if (empty($GLOBALS['convcharset'])) {
if (! PMA_langCheck()) {
// fallback language
- $fall_back_lang = 'en-utf-8';
+ $fall_back_lang = 'en';
$line = __LINE__;
if (! PMA_langSet($fall_back_lang)) {
trigger_error('phpMyAdmin-ERROR: invalid lang code: '
diff --git a/libraries/url_generating.lib.php b/libraries/url_generating.lib.php
index a0c8c60..fddeb7e 100644
--- a/libraries/url_generating.lib.php
+++ b/libraries/url_generating.lib.php
@@ -145,7 +145,7 @@ function PMA_getHiddenFields($values, $pre = '')
* // produces with cookies enabled:
* // script.php?db=mysql&table=rights
* // with cookies disabled:
- * // script.php?server=1&lang=en-utf-8&db=mysql&table=rights
+ * // script.php?server=1&lang=en&db=mysql&table=rights
*
* // NEW style
* $params['myparam'] = 'myvalue';
@@ -156,14 +156,14 @@ function PMA_getHiddenFields($values, $pre = '')
* // produces with cookies enabled:
* // script.php?myparam=myvalue&db=mysql&table=rights
* // with cookies disabled:
- * // script.php?server=1&lang=en-utf-8&myparam=myvalue&db=mysql&table=rights
+ * // script.php?server=1&lang=en&myparam=myvalue&db=mysql&table=rights
*
* // note the missing ?
* echo 'script.php' . PMA_generate_common_url();
* // produces with cookies enabled:
* // script.php
* // with cookies disabled:
- * // script.php?server=1&lang=en-utf-8
+ * // script.php?server=1&lang=en
* </code>
*
* @uses $GLOBALS['server']
diff --git a/navigation.php b/navigation.php
index 3699f76..b3e3107 100644
--- a/navigation.php
+++ b/navigation.php
@@ -136,8 +136,8 @@ require_once './libraries/header_http.inc.php';
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
- xml:lang="<?php echo $available_languages[$lang][2]; ?>"
- lang="<?php echo $available_languages[$lang][2]; ?>"
+ xml:lang="<?php echo $available_languages[$lang][1]; ?>"
+ lang="<?php echo $available_languages[$lang][1]; ?>"
dir="<?php echo $GLOBALS['text_dir']; ?>">
<head>
@@ -577,7 +577,7 @@ function PMA_displayTableList($tables, $visible = false,
echo '<ul id="subel' . $element_counter . '" style="display: none">';
}
foreach ($tables as $group => $table) {
- // only allow grouping if the group has more than 1 table
+ // only allow grouping if the group has more than 1 table
if (isset($table['is' . $sep . 'group']) && $table['tab' . $sep . 'count'] > 1) {
$common_url_query = $GLOBALS['common_url_query']
. '&tbl_group=' . urlencode($tab_group_full . $group);
diff --git a/pmd_general.php b/pmd_general.php
index 0f5a668..01a0a2d 100644
--- a/pmd_general.php
+++ b/pmd_general.php
@@ -21,7 +21,7 @@ $hidden = "hidden";
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][2]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
+<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" lang="<?php echo $GLOBALS['available_languages'][$GLOBALS['lang']][1]; ?>" dir="<?php echo $GLOBALS['text_dir']; ?>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<?php echo $charset ?>" />
<link rel="icon" href="pmd/images/favicon.ico" type="image/x-icon" />
diff --git a/setup/frames/index.inc.php b/setup/frames/index.inc.php
index 6282382..2da815b 100644
--- a/setup/frames/index.inc.php
+++ b/setup/frames/index.inc.php
@@ -77,8 +77,8 @@ if (!$is_https) {
$lang_name = ucfirst(substr(strrchr($each_lang[0], '|'), 1));
// Include native name if non empty
- if (!empty($each_lang[3])) {
- $lang_name = $each_lang[3] . ' - ' . $lang_name;
+ if (!empty($each_lang[2])) {
+ $lang_name = $each_lang[2] . ' - ' . $lang_name;
}
//Is current one active?
@@ -174,8 +174,8 @@ $opts = array(
foreach ($all_languages as $each_lang_key => $each_lang) {
$lang_name = ucfirst(substr(strrchr($each_lang[0], '|'), 1));
// Include native name if non empty
- if (!empty($each_lang[3])) {
- $lang_name = $each_lang[3] . ' - ' . $lang_name;
+ if (!empty($each_lang[2])) {
+ $lang_name = $each_lang[2] . ' - ' . $lang_name;
}
$opts['values'][$each_lang_key] = $lang_name;
}
diff --git a/test/theme.php b/test/theme.php
index 84819ea..06fb45c 100644
--- a/test/theme.php
+++ b/test/theme.php
@@ -15,7 +15,7 @@ chdir('..');
*/
require_once './libraries/common.inc.php';
-$lang_iso_code = $GLOBALS['available_languages'][$GLOBALS['lang']][2];
+$lang_iso_code = $GLOBALS['available_languages'][$GLOBALS['lang']][1];
// start output
header('Content-Type: text/html; charset=' . $GLOBALS['charset']);
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin website branch, master, updated. da0941704fbc83c3ddb65c6f9d2ae1ff93f89b69
by Michal Čihař 09 Apr '10
by Michal Čihař 09 Apr '10
09 Apr '10
The branch, master has been updated
via da0941704fbc83c3ddb65c6f9d2ae1ff93f89b69 (commit)
from 34de4262006d4b28bc64301e16762a2ce3a84d11 (commit)
- Log -----------------------------------------------------------------
commit da0941704fbc83c3ddb65c6f9d2ae1ff93f89b69
Author: Michal Čihař <mcihar(a)novell.com>
Date: Fri Apr 9 13:44:49 2010 +0200
Add urdu.
-----------------------------------------------------------------------
Summary of changes:
data/langnames.py | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/data/langnames.py b/data/langnames.py
index 5c820f8..e99fe0c 100644
--- a/data/langnames.py
+++ b/data/langnames.py
@@ -74,6 +74,7 @@ MAP = {
'tr' : 'turkish',
'tt' : 'tatarish',
'uk' : 'ukrainian',
+ 'ur' : 'urdu',
'uz' : 'uzbek_cyrillic',
'uz@latin' : 'uzbek_latin',
'zh_TW' : 'chinese_traditional',
hooks/post-receive
--
phpMyAdmin website
1
0