[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-2482-g86b11a4

Michal Čihař nijel at users.sourceforge.net
Mon May 3 15:05:40 CEST 2010


The branch, master has been updated
       via  86b11a41ab3cb7ccc059b7ed4e8852667e7c3261 (commit)
       via  45b62e36204c784d01f8533948f6a85722356e4b (commit)
      from  cc0a8b9ebbc046a77b29043e16e57a2c458e0ffd (commit)


- Log -----------------------------------------------------------------
commit 86b11a41ab3cb7ccc059b7ed4e8852667e7c3261
Author: Michal Čihař <mcihar at novell.com>
Date:   Mon May 3 15:05:23 2010 +0200

    Translate time control.

commit 45b62e36204c784d01f8533948f6a85722356e4b
Author: Michal Čihař <mcihar at novell.com>
Date:   Mon May 3 15:02:33 2010 +0200

    Support for translating time part of datetime editor.

-----------------------------------------------------------------------

Summary of changes:
 js/jquery/timepicker.js |   22 ++++++++++++++++++++--
 js/messages.php         |    4 ++++
 po/af.po                |   18 +++++++++++++++++-
 po/ar.po                |   18 +++++++++++++++++-
 po/az.po                |   18 +++++++++++++++++-
 po/be.po                |   18 +++++++++++++++++-
 po/be at latin.po          |   18 +++++++++++++++++-
 po/bg.po                |   18 +++++++++++++++++-
 po/bn.po                |   18 +++++++++++++++++-
 po/bs.po                |   18 +++++++++++++++++-
 po/ca.po                |   18 +++++++++++++++++-
 po/cs.po                |   19 ++++++++++++++++---
 po/da.po                |   18 +++++++++++++++++-
 po/de.po                |   18 +++++++++++++++++-
 po/el.po                |   18 +++++++++++++++++-
 po/en_GB.po             |   18 +++++++++++++++++-
 po/es.po                |   18 +++++++++++++++++-
 po/et.po                |   18 +++++++++++++++++-
 po/eu.po                |   18 +++++++++++++++++-
 po/fa.po                |   18 +++++++++++++++++-
 po/fi.po                |   18 +++++++++++++++++-
 po/fr.po                |   18 +++++++++++++++++-
 po/gl.po                |   18 +++++++++++++++++-
 po/he.po                |   18 +++++++++++++++++-
 po/hi.po                |   14 +++++++++++++-
 po/hr.po                |   18 +++++++++++++++++-
 po/hu.po                |   18 +++++++++++++++++-
 po/id.po                |   18 +++++++++++++++++-
 po/it.po                |   18 +++++++++++++++++-
 po/ja.po                |   18 +++++++++++++++++-
 po/ka.po                |   18 +++++++++++++++++-
 po/ko.po                |   18 +++++++++++++++++-
 po/lt.po                |   18 +++++++++++++++++-
 po/lv.po                |   18 +++++++++++++++++-
 po/mk.po                |   18 +++++++++++++++++-
 po/mn.po                |   18 +++++++++++++++++-
 po/ms.po                |   18 +++++++++++++++++-
 po/nb.po                |   18 +++++++++++++++++-
 po/nl.po                |   18 +++++++++++++++++-
 po/phpmyadmin.pot       |   14 +++++++++++++-
 po/pl.po                |   18 +++++++++++++++++-
 po/pt.po                |   18 +++++++++++++++++-
 po/pt_BR.po             |   18 +++++++++++++++++-
 po/ro.po                |   18 +++++++++++++++++-
 po/ru.po                |   18 +++++++++++++++++-
 po/si.po                |   18 +++++++++++++++++-
 po/sk.po                |   18 +++++++++++++++++-
 po/sl.po                |   18 +++++++++++++++++-
 po/sq.po                |   18 +++++++++++++++++-
 po/sr.po                |   18 +++++++++++++++++-
 po/sr at latin.po          |   18 +++++++++++++++++-
 po/sv.po                |   18 +++++++++++++++++-
 po/ta.po                |   14 +++++++++++++-
 po/te.po                |   19 ++++++++++++++++++-
 po/th.po                |   18 +++++++++++++++++-
 po/tr.po                |   18 +++++++++++++++++-
 po/tt.po                |   18 +++++++++++++++++-
 po/uk.po                |   18 +++++++++++++++++-
 po/ur.po                |   14 +++++++++++++-
 po/uz.po                |   18 +++++++++++++++++-
 po/uz at latin.po          |   18 +++++++++++++++++-
 po/zh_CN.po             |   18 +++++++++++++++++-
 po/zh_TW.po             |   18 +++++++++++++++++-
 63 files changed, 1045 insertions(+), 65 deletions(-)

diff --git a/js/jquery/timepicker.js b/js/jquery/timepicker.js
index 492692d..ea927fd 100644
--- a/js/jquery/timepicker.js
+++ b/js/jquery/timepicker.js
@@ -27,7 +27,15 @@ $.extend($.datepicker._defaults, {
     'stepHours': 1, // Number of hours to step up/down
     'time24h': false, // True if 24h time
     'showTime': false, // Show timepicker with datepicker
-    'altTimeField': '' // Selector for an alternate field to store time into
+    'altTimeField': '', // Selector for an alternate field to store time into
+    'hourText': 'Hour',
+    'minuteText': 'Minute',
+    'secondText': 'Second',
+});
+$.extend($.datepicker.regional[''], {
+    'hourText': 'Hour',
+    'minuteText': 'Minute',
+    'secondText': 'Second',
 });
 
 /**
@@ -220,6 +228,10 @@ Timepicker.prototype = {
         $('#secondSlider').slider('option', 'max', 60 - stepSeconds);
         $('#secondSlider').slider('option', 'step', stepSeconds);
 
+        $('.hour_text').html($.datepicker._get(inst, 'hourText'));
+        $('.minute_text').html($.datepicker._get(inst, 'minuteText'));
+        $('.second_text').html($.datepicker._get(inst, 'secondText'));
+
         this._inputId = input.id;
 
         if (!this._visible) {
@@ -300,7 +312,13 @@ Timepicker.prototype = {
         html += '<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix ui-corner-all">';
         html += '<div class="ui-datepicker-title" style="margin:0">';
         html += '<span class="fragHours">08</span><span class="delim">:</span><span class="fragMinutes">45</span>:</span><span class="fragSeconds">45</span> <span class="fragAmpm"></span></div></div><table>';
-        html += '<tr><th>Hour</th><th>Minute</th><th>Second</th></tr>';
+        html += '<tr><th>';
+        html += '<span class="hour_text">Hour</span>';
+        html += '</th><th>';
+        html += '<span class="minute_text">Minute</span>';
+        html += '</th><th>';
+        html += '<span class="second_text">Second</span>';
+        html += '</th></tr>';
         html += '<tr><td align="center"><div id="hourSlider" class="slider"></div></td><td align="center"><div id="minuteSlider" class="slider"></div></td><td align="center"><div id="secondSlider" class="slider"></div></td></tr>';
         html += '</table>';
 
diff --git a/js/messages.php b/js/messages.php
index 17a744b..31cecf1 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -174,5 +174,9 @@ PMA_printJsValue("$.datepicker.regional['']['dayNamesMin']",
         __('Sa')));
 /* l10n: Column header for week of the year in calendar */
 PMA_printJsValue("$.datepicker.regional['']['weekHeader']", __('Wk'));
+
+PMA_printJsValue("$.datepicker.regional['']['hourText']", __('Hour'));
+PMA_printJsValue("$.datepicker.regional['']['minuteText']", __('Minute'));
+PMA_printJsValue("$.datepicker.regional['']['secondText']", __('Second'));
 ?>
 $.extend($.datepicker._defaults, $.datepicker.regional['']);
diff --git a/po/af.po b/po/af.po
index 8379718..e381d05 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:04+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: afrikaans <af at li.org>\n"
@@ -297,6 +297,22 @@ msgstr "Sa"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "in gebruik"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "Records"
+msgid "Second"
+msgstr "Rekords"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ar.po b/po/ar.po
index 7c5548d..431de3c 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:11+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: arabic <ar at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "السبت"
 msgid "Wk"
 msgstr "ويكي"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "قيد الإستعمال"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "لكل ثانية"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/az.po b/po/az.po
index 867eef7..0cd7b17 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:11+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: azerbaijani <az at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "Şen"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "istifadede"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "saniyede"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/be.po b/po/be.po
index 65ee591..969edfc 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:12+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: belarusian_cyrillic <be at li.org>\n"
@@ -297,6 +297,22 @@ msgstr "Суб"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "выкарыстоўваецца"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "у сэкунду"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/be at latin.po b/po/be at latin.po
index f6e5442..1b84510 100644
--- a/po/be at latin.po
+++ b/po/be at latin.po
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
 "Report-Msgid-Bugs-To: phpmyadmin-devel at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:09+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: belarusian_latin <be at latin@li.org>\n"
@@ -301,6 +301,22 @@ msgstr "Sub"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "vykarystoŭvajecca"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "u sekundu"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/bg.po b/po/bg.po
index 9ed1248..c49ca3a 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:12+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: bulgarian <bg at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "сб"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "Заето"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "на секунда"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/bn.po b/po/bn.po
index e0b8db8..e1a849b 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:11+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: bangla <bn at li.org>\n"
@@ -295,6 +295,22 @@ msgstr "শনিবার"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "in use"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "per second"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/bs.po b/po/bs.po
index 0c07f31..3b55807 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:12+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: bosnian <bs at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "Sub"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "se koristi"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "u sekundi"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ca.po b/po/ca.po
index 0a25e91..1d014cf 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:13+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: catalan <ca at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Dis"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "en ús"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "per segon"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/cs.po b/po/cs.po
index df6a00b..689ce96 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -4,8 +4,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
 "Report-Msgid-Bugs-To: phpmyadmin-devel at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
-"PO-Revision-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
+"PO-Revision-Date: 2010-05-03 15:04+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: czech <cs at li.org>\n"
 "MIME-Version: 1.0\n"
@@ -113,7 +113,6 @@ msgstr "dub"
 
 #. l10n: Short month name
 #: js/messages.php:119
-#| msgid "May"
 msgctxt "Short month name"
 msgid "May"
 msgstr "kvě"
@@ -256,6 +255,20 @@ msgstr "So"
 msgid "Wk"
 msgstr "Týd"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr "Hodiny"
+
+#: js/messages.php:179
+#| msgid "in use"
+msgid "Minute"
+msgstr "Minuty"
+
+#: js/messages.php:180
+#| msgid "per second"
+msgid "Second"
+msgstr "Sekundy"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/da.po b/po/da.po
index 86eeaf4..1977c1e 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:13+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: danish <da at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "lør"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "i brug"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "pr. sekund"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/de.po b/po/de.po
index 441106b..4fde242 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-23 21:07+0200\n"
 "Last-Translator:  <me at michaelkeck.de>\n"
 "Language-Team: german <de at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Sa"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "in Benutzung"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "pro Sekunde"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/el.po b/po/el.po
index 0f6629b..a0f9efe 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:16+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: greek <el at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Σάββατο"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "σε χρήση"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "ανά δευτερόλεπτο"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/en_GB.po b/po/en_GB.po
index 898f947..83cf424 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 16:04+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: english-gb <en_GB at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Sat"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "in use"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "per second"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/es.po b/po/es.po
index 632c5f9..28ef379 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 11:23+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: spanish <es at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Sab"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "en uso"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "por segundo"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/et.po b/po/et.po
index a49125b..83695bc 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:14+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: estonian <et at li.org>\n"
@@ -295,6 +295,22 @@ msgstr "Lau"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "kasutusel"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "sekundis"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/eu.po b/po/eu.po
index 9cabb0b..9e4759b 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-31 10:40+0200\n"
 "Last-Translator:  <hey_neken at mundurat.net>\n"
 "Language-Team: basque <eu at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Lar"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "lanean"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "segunduko"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/fa.po b/po/fa.po
index d1b4ec4..1a98fde 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:17+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: persian <fa at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "شنبه"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "in use"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "در ثانیه"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/fi.po b/po/fi.po
index fd4002b..c41ae5c 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-30 18:08+0200\n"
 "Last-Translator:  <kajouni at gmail.com>\n"
 "Language-Team: finnish <fi at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "La"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "käytössä"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "sekunnissa"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/fr.po b/po/fr.po
index 6dec5b0..d71c8e9 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-20 11:43+0200\n"
 "Last-Translator: Marc <marc at infomarc.info>\n"
 "Language-Team: french <fr at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Sam"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "utilisé"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "par seconde"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/gl.po b/po/gl.po
index 1b314e2..bfa2cd9 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:14+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: galician <gl at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Sá"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "en uso"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "por segundo"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/he.po b/po/he.po
index 1f3163a..539d630 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:15+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: hebrew <he at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "שבת"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "בשימוש"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "לשנייה"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/hi.po b/po/hi.po
index 2720ac9..7d122fb 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-05-01 07:49+0200\n"
 "Last-Translator:  <u4663530 at anu.edu.au>\n"
 "Language-Team: hindi <hi at li.org>\n"
@@ -292,6 +292,18 @@ msgstr "शनिवार"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+msgid "Minute"
+msgstr ""
+
+#: js/messages.php:180
+msgid "Second"
+msgstr ""
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/hr.po b/po/hr.po
index ec07fa6..27d6167 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:13+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: croatian <hr at li.org>\n"
@@ -297,6 +297,22 @@ msgstr "Sub"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "u upotrebi"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "po sekundi"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/hu.po b/po/hu.po
index c91fa9f..894c83a 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:15+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: hungarian <hu at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Szo"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "használatban"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "másodpercenként"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/id.po b/po/id.po
index 152f1dc..a3cdc1a 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-17 21:14+0200\n"
 "Last-Translator: Azhari Harahap <azhari.harahap at yahoo.com>\n"
 "Language-Team: indonesian <id at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Sabtu"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "sedang digunakan"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "per detik"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/it.po b/po/it.po
index a090f98..2495fcf 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-11 11:19+0200\n"
 "Last-Translator: Fabio <fantonifabio at tiscali.it>\n"
 "Language-Team: italian <it at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Sab"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "in uso"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "al secondo"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ja.po b/po/ja.po
index c9d418c..48be557 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 11:22+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: japanese <jp at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "土"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "使用中"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "/秒"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ka.po b/po/ka.po
index fa8b65e..f67e17b 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:14+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: georgian <ka at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "შაბ"
 msgid "Wk"
 msgstr "ვიკი"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "in use"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "წამში"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ko.po b/po/ko.po
index f12bda3..bcbf903 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:16+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: korean <ko at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "토"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "사용중"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "Records"
+msgid "Second"
+msgstr "레코드수"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/lt.po b/po/lt.po
index 2b1f60b..38bb20c 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-16 19:52+0200\n"
 "Last-Translator: Rytis <rytis.s at gmail.com>\n"
 "Language-Team: lithuanian <lt at li.org>\n"
@@ -301,6 +301,22 @@ msgstr "Šeštadienis"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "šiuo metu naudojama"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "per sekundę"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/lv.po b/po/lv.po
index 500f5b5..658eadf 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:16+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: latvian <lv at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "S"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "lietošanā"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "sekundē"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/mk.po b/po/mk.po
index b906cf5..426cf2e 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:16+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: macedonian_cyrillic <mk at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "Саб"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "се користи"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "во секунда"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/mn.po b/po/mn.po
index 884a5c7..d3b0b98 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:17+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: mongolian <mn at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "Бя"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "хэрэглэгдэж байна"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "секундэд"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ms.po b/po/ms.po
index 18e1add..e520824 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:17+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: malay <ms at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "Sab"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "sedang digunakan"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "Records"
+msgid "Second"
+msgstr "Rekod"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/nb.po b/po/nb.po
index dbd8bc4..4a3de82 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-05-03 10:12+0200\n"
 "Last-Translator:  <sven.erik.andersen at gmail.com>\n"
 "Language-Team: norwegian <no at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Lør"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "i bruk"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "per sekund"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/nl.po b/po/nl.po
index 23d6c85..c781122 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-26 15:46+0200\n"
 "Last-Translator:  <rink at initfour.nl>\n"
 "Language-Team: dutch <nl at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Za"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "in gebruik"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "per seconde"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index 8b044ec..05f8efa 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
 "Last-Translator: FULL NAME <EMAIL at ADDRESS>\n"
 "Language-Team: LANGUAGE <LL at li.org>\n"
@@ -257,6 +257,18 @@ msgstr ""
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+msgid "Minute"
+msgstr ""
+
+#: js/messages.php:180
+msgid "Second"
+msgstr ""
+
 #: libraries/auth/config.auth.lib.php:107
 #, possible-php-format
 msgid ""
diff --git a/po/pl.po b/po/pl.po
index c7bb502..ed60eb9 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:17+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: polish <pl at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Sob"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "w użyciu"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "na sekundę"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/pt.po b/po/pt.po
index 879c75a..3d9e777 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:17+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: portuguese <pt at li.org>\n"
@@ -295,6 +295,22 @@ msgstr "Sab"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "em uso"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "por segundo"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 9c6d3df..860554c 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-21 05:17+0200\n"
 "Last-Translator: Maurício Meneghini Fauth <mauriciofauth at gmail.com>\n"
 "Language-Team: brazilian_portuguese <pt_BR at li.org>\n"
@@ -297,6 +297,22 @@ msgstr "Sab"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "em uso"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "por segundo"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ro.po b/po/ro.po
index 618d05a..fcf4b9b 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-13 00:41+0200\n"
 "Last-Translator: <ronaldinia at yahoo.com>\n"
 "Language-Team: romanian <ro at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Sâm"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "în folosință"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "pe secundă"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ru.po b/po/ru.po
index 5073a5a..72f3381 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:23+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: russian <ru at li.org>\n"
@@ -301,6 +301,22 @@ msgstr "Сб"
 msgid "Wk"
 msgstr "Вики"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "используется"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "в секунду"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/si.po b/po/si.po
index 724bb99..2d1b815 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:09+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: sinhala <si at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "සෙනසුරාදා"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "භාවිතා වෙමින් පවතී"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "තප්පරයකට"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/sk.po b/po/sk.po
index e4b0a85..c97b9f7 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:47+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: slovak <sk at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "So"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "práve sa používa"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "za sekundu"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/sl.po b/po/sl.po
index 22cdb9f..ed402a5 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-05-03 00:45+0200\n"
 "Last-Translator:  <dbc334 at gmail.com>\n"
 "Language-Team: slovenian <sl at li.org>\n"
@@ -299,6 +299,22 @@ msgstr "Sob"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "v uporabi"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "na sekundo"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/sq.po b/po/sq.po
index 7a54e3f..c147aeb 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:08+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: albanian <sq at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Sht"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "në përdorim"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "në sekondë"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/sr.po b/po/sr.po
index 9dcd182..fe0d79c 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:47+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: serbian_cyrillic <sr at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Суб"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "се користи"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "у секунди"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/sr at latin.po b/po/sr at latin.po
index 339f33e..105f4a5 100644
--- a/po/sr at latin.po
+++ b/po/sr at latin.po
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
 "Report-Msgid-Bugs-To: phpmyadmin-devel at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:47+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: serbian_latin <sr at latin@li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Sub"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "se koristi"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "u sekundi"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/sv.po b/po/sv.po
index 567105c..0c773ed 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:19+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: swedish <sv at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Lör"
 msgid "Wk"
 msgstr "Wiki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "används"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "per sekund"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ta.po b/po/ta.po
index 8680529..a2dfa1f 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
 "Report-Msgid-Bugs-To: phpmyadmin-devel at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-16 10:43+0200\n"
 "Last-Translator: Sutharshan <sutharshan02 at gmail.com>\n"
 "Language-Team: Tamil <ta at li.org>\n"
@@ -295,6 +295,18 @@ msgstr "சனி"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+msgid "Minute"
+msgstr ""
+
+#: js/messages.php:180
+msgid "Second"
+msgstr ""
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/te.po b/po/te.po
index b895c88..2753f52 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-02 12:04+0200\n"
 "Last-Translator:  <veeven at gmail.com>\n"
 "Language-Team: Telugu <te at li.org>\n"
@@ -303,6 +303,23 @@ msgstr "శని"
 msgid "Wk"
 msgstr "వికీ"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+# మొదటి అనువాదము
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "వాడుకలో ఉన్నది"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "క్షణానికి"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/th.po b/po/th.po
index 32cd0ef..a88bb52 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:19+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: thai <th at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "ส."
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "ใช้อยู่"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "ต่อวินาที"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/tr.po b/po/tr.po
index cf02d53..3e01b26 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-03 11:44+0200\n"
 "Last-Translator:  <hitowerdigit at hotmail.com>\n"
 "Language-Team: turkish <tr at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "Ctesi"
 msgid "Wk"
 msgstr "Viki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "kullanımda"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "saniye başına"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/tt.po b/po/tt.po
index b213e6c..aba7e32 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-30 23:14+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: tatarish <tt at li.org>\n"
@@ -297,6 +297,22 @@ msgstr "Şmb"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "totıla"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "sekund sayın"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/uk.po b/po/uk.po
index 3069023..0a28988 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:19+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: ukrainian <uk at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "Сб"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "використовується"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "за секунду"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/ur.po b/po/ur.po
index 512237b..06b0d97 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
 "Report-Msgid-Bugs-To: phpmyadmin-devel at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-09 14:02+0200\n"
 "Last-Translator: Michal <michal at cihar.com>\n"
 "Language-Team: Urdu <ur at li.org>\n"
@@ -257,6 +257,18 @@ msgstr ""
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+msgid "Minute"
+msgstr ""
+
+#: js/messages.php:180
+msgid "Second"
+msgstr ""
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/uz.po b/po/uz.po
index 9addab0..5bf9615 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:20+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: uzbek_cyrillic <uz at li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Шан"
 msgid "Wk"
 msgstr "Вики"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "ишлатилмоқда"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "секундига"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/uz at latin.po b/po/uz at latin.po
index 373c4fa..fc5b61c 100644
--- a/po/uz at latin.po
+++ b/po/uz at latin.po
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
 "Report-Msgid-Bugs-To: phpmyadmin-devel at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:20+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: uzbek_latin <uz at latin@li.org>\n"
@@ -298,6 +298,22 @@ msgstr "Shan"
 msgid "Wk"
 msgstr "Viki"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "ishlatilmoqda"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "sekundiga"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index cad5f6f..1e256de 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-04-08 13:06+0200\n"
 "Last-Translator: shanyan baishui <Siramizu at gmail.com>\n"
 "Language-Team: chinese_simplified <zh_CN at li.org>\n"
@@ -300,6 +300,22 @@ msgstr "周六"
 msgid "Wk"
 msgstr "维基 (Wiki) (外链,英文)"
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "使用中"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "每秒"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 2361839..b7bf006 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 at lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"POT-Creation-Date: 2010-05-03 15:03+0200\n"
 "PO-Revision-Date: 2010-03-12 09:15+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: chinese_traditional <zh_TW at li.org>\n"
@@ -296,6 +296,22 @@ msgstr "Sat"
 msgid "Wk"
 msgstr ""
 
+#: js/messages.php:178
+msgid "Hour"
+msgstr ""
+
+#: js/messages.php:179
+#, fuzzy
+#| msgid "in use"
+msgid "Minute"
+msgstr "使用中"
+
+#: js/messages.php:180
+#, fuzzy
+#| msgid "per second"
+msgid "Second"
+msgstr "每秒"
+
 #: libraries/auth/config.auth.lib.php:107
 #, php-format
 msgid ""


hooks/post-receive
-- 
phpMyAdmin




More information about the Git mailing list