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
May 2010
- 3 participants
- 164 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-2487-gb8db7a6
by Dieter Adriaenssens 03 May '10
by Dieter Adriaenssens 03 May '10
03 May '10
The branch, master has been updated
via b8db7a63eb9a97d9f35e63f2fdf1e9737d9e7a87 (commit)
via a3a47a429d674bfbac81890c9d24626ed5d3da47 (commit)
via f57a5cfdf91262e63f2e8a9649412d6fec2dbf54 (commit)
via 6b5edbe6db695f364477cf16b907bcd6cedc03f9 (commit)
from f55823f47fd099cbbc3717fdbf0cfec8135927ed (commit)
- Log -----------------------------------------------------------------
commit b8db7a63eb9a97d9f35e63f2fdf1e9737d9e7a87
Merge: f55823f47fd099cbbc3717fdbf0cfec8135927ed a3a47a429d674bfbac81890c9d24626ed5d3da47
Author: Dieter Adriaenssens <ruleant(a)users.sourceforge.net>
Date: Mon May 3 23:25:49 2010 +0200
merge QA_3_3
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/import.lib.php | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 3a522c9..df1988e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -83,6 +83,7 @@ $Id$
+ [core] Include Content Security Policy HTTP headers.
3.3.4.0 (not yet released)
+- bug #2996161 [import] properly escape import value
3.3.3.0 (not yet released)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index 8ef3249..cd50694 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -989,7 +989,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
}
$tempSQLStr .= (($is_varchar) ? "'" : "");
- $tempSQLStr .= (str_replace("'", "\'", (string)$tables[$i][ROWS][$j][$k]));
+ $tempSQLStr .= PMA_sqlAddslashes((string)$tables[$i][ROWS][$j][$k]);
$tempSQLStr .= (($is_varchar) ? "'" : "");
if ($k != ($num_cols - 1)) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, QA_3_3, updated. RELEASE_3_3_2-32-ga3a47a4
by Dieter Adriaenssens 03 May '10
by Dieter Adriaenssens 03 May '10
03 May '10
The branch, QA_3_3 has been updated
via a3a47a429d674bfbac81890c9d24626ed5d3da47 (commit)
from f57a5cfdf91262e63f2e8a9649412d6fec2dbf54 (commit)
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 1 +
libraries/import.lib.php | 2 +-
2 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index cb8090f..f816c2b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@ $Id$
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/… $
3.3.4.0 (not yet released)
+- bug #2996161 [import] properly escape import value
3.3.3.0 (not yet released)
- patch #2982480 [navi] Do not group if there would be one table in group,
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index 2f50c5d..202d91b 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -998,7 +998,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
}
$tempSQLStr .= (($is_varchar) ? "'" : "");
- $tempSQLStr .= (str_replace("'", "\'", (string)$tables[$i][ROWS][$j][$k]));
+ $tempSQLStr .= PMA_sqlAddslashes((string)$tables[$i][ROWS][$j][$k]);
$tempSQLStr .= (($is_varchar) ? "'" : "");
if ($k != ($num_cols - 1)) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-2482-g86b11a4
by Michal Čihař 03 May '10
by Michal Čihař 03 May '10
03 May '10
The branch, master has been updated
via 86b11a41ab3cb7ccc059b7ed4e8852667e7c3261 (commit)
via 45b62e36204c784d01f8533948f6a85722356e4b (commit)
from cc0a8b9ebbc046a77b29043e16e57a2c458e0ffd (commit)
- Log -----------------------------------------------------------------
commit 86b11a41ab3cb7ccc059b7ed4e8852667e7c3261
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 3 15:05:23 2010 +0200
Translate time control.
commit 45b62e36204c784d01f8533948f6a85722356e4b
Author: Michal Čihař <mcihar(a)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(a)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(a)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(a)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(a)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(a)cihar.com>\n"
"Language-Team: afrikaans <af(a)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(a)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(a)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(a)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(a)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(a)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(a)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(a)latin.po b/po/be(a)latin.po
index f6e5442..1b84510 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-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(a)cihar.com>\n"
"Language-Team: belarusian_latin <be@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(a)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(a)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(a)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(a)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(a)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(a)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(a)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(a)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(a)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(a)cihar.com>\n"
"Language-Team: czech <cs(a)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(a)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(a)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(a)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(a)michaelkeck.de>\n"
"Language-Team: german <de(a)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(a)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(a)cihar.com>\n"
"Language-Team: greek <el(a)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(a)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(a)cihar.com>\n"
"Language-Team: english-gb <en_GB(a)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(a)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(a)cihar.com>\n"
"Language-Team: spanish <es(a)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(a)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(a)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(a)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(a)mundurat.net>\n"
"Language-Team: basque <eu(a)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(a)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(a)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(a)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(a)gmail.com>\n"
"Language-Team: finnish <fi(a)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(a)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(a)infomarc.info>\n"
"Language-Team: french <fr(a)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(a)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(a)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(a)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(a)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(a)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(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)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(a)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(a)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(a)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(a)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(a)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(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)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(a)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(a)tiscali.it>\n"
"Language-Team: italian <it(a)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(a)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(a)cihar.com>\n"
"Language-Team: japanese <jp(a)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(a)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(a)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(a)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(a)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(a)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(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)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(a)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(a)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(a)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(a)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(a)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(a)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(a)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(a)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(a)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(a)gmail.com>\n"
"Language-Team: norwegian <no(a)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(a)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(a)initfour.nl>\n"
"Language-Team: dutch <nl(a)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(a)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@ADDRESS>\n"
"Language-Team: LANGUAGE <LL(a)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(a)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(a)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(a)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(a)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(a)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(a)gmail.com>\n"
"Language-Team: brazilian_portuguese <pt_BR(a)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(a)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(a)yahoo.com>\n"
"Language-Team: romanian <ro(a)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(a)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(a)cihar.com>\n"
"Language-Team: russian <ru(a)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(a)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(a)cihar.com>\n"
"Language-Team: sinhala <si(a)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(a)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(a)cihar.com>\n"
"Language-Team: slovak <sk(a)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(a)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(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)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(a)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(a)cihar.com>\n"
"Language-Team: albanian <sq(a)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(a)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(a)cihar.com>\n"
"Language-Team: serbian_cyrillic <sr(a)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(a)latin.po b/po/sr(a)latin.po
index 339f33e..105f4a5 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-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(a)cihar.com>\n"
"Language-Team: serbian_latin <sr@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(a)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(a)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(a)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(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)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(a)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(a)gmail.com>\n"
"Language-Team: Telugu <te(a)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(a)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(a)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(a)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(a)hotmail.com>\n"
"Language-Team: turkish <tr(a)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(a)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(a)cihar.com>\n"
"Language-Team: tatarish <tt(a)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(a)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(a)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(a)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(a)cihar.com>\n"
"Language-Team: Urdu <ur(a)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(a)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(a)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(a)latin.po b/po/uz(a)latin.po
index 373c4fa..fc5b61c 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-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@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(a)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(a)gmail.com>\n"
"Language-Team: chinese_simplified <zh_CN(a)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(a)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(a)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
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-2480-gcc0a8b9
by Michal Čihař 03 May '10
by Michal Čihař 03 May '10
03 May '10
The branch, master has been updated
via cc0a8b9ebbc046a77b29043e16e57a2c458e0ffd (commit)
via 8d049f984dc5d8e4e2101687f0759c0e357c9918 (commit)
via 3e9df020034393e6390b111690a3b5775e6b4c5b (commit)
via 336908816d715e08e4978759f20e8e7ec90248b3 (commit)
via a5d56b2c2ffd0b18cf9e5b6baba1998d439bc200 (commit)
from 095837ff154a07a21369e2794e096a76f4de3da2 (commit)
- Log -----------------------------------------------------------------
commit cc0a8b9ebbc046a77b29043e16e57a2c458e0ffd
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 3 14:47:00 2010 +0200
Update Czech translation.
commit 8d049f984dc5d8e4e2101687f0759c0e357c9918
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 3 14:46:30 2010 +0200
Use context to differentiate May and shortcut for May.
commit 3e9df020034393e6390b111690a3b5775e6b4c5b
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 3 14:45:15 2010 +0200
Update Czech translation.
commit 336908816d715e08e4978759f20e8e7ec90248b3
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 3 14:38:15 2010 +0200
Update po files.
commit a5d56b2c2ffd0b18cf9e5b6baba1998d439bc200
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 3 14:34:21 2010 +0200
Localize calendar using our translation system.
We don't want to use jQuery one to have all messages in one place.
-----------------------------------------------------------------------
Summary of changes:
js/messages.php | 109 ++++++++++++++++-
po/af.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/ar.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/az.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/be.po | 363 ++++++++++++++++++++++++++++++++++++++++------------
po/be(a)latin.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/bg.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/bn.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/bs.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/ca.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/cs.po | 321 ++++++++++++++++++++++++++++++++++------------
po/da.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/de.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/el.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/en_GB.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/es.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/et.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/eu.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/fa.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/fi.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/fr.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/gl.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/he.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/hi.po | 356 +++++++++++++++++++++++++++++++++++++++------------
po/hr.po | 363 ++++++++++++++++++++++++++++++++++++++++------------
po/hu.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/id.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/it.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/ja.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/ka.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/ko.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/lt.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/lv.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/mk.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/mn.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/ms.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/nb.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/nl.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/phpmyadmin.pot | 318 ++++++++++++++++++++++++++++++++++------------
po/pl.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/pt.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/pt_BR.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/ro.po | 363 ++++++++++++++++++++++++++++++++++++++++------------
po/ru.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/si.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/sk.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/sl.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/sq.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/sr.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/sr(a)latin.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/sv.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/ta.po | 356 +++++++++++++++++++++++++++++++++++++++------------
po/te.po | 365 +++++++++++++++++++++++++++++++++++++++++------------
po/th.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/tr.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/tt.po | 361 ++++++++++++++++++++++++++++++++++++++++------------
po/uk.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
po/ur.po | 318 ++++++++++++++++++++++++++++++++++------------
po/uz.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/uz(a)latin.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/zh_CN.po | 364 +++++++++++++++++++++++++++++++++++++++++------------
po/zh_TW.po | 362 ++++++++++++++++++++++++++++++++++++++++------------
62 files changed, 17029 insertions(+), 5067 deletions(-)
diff --git a/js/messages.php b/js/messages.php
index e301378..17a744b 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -22,6 +22,19 @@ require_once './libraries/common.inc.php';
// But this one is needed for PMA_escapeJsString()
require_once './libraries/js_escape.lib.php';
+function PMA_printJsValue($key, $value) {
+ echo $key . ' = ';
+ if (is_array($value)) {
+ echo '[';
+ foreach ($value as $id => $val) {
+ echo "'" . PMA_escapeJsString($val) . "',\n";
+ }
+ echo "];\n";
+ } else {
+ echo "'" . PMA_escapeJsString($value) . "';\n";
+ }
+}
+
$js_messages['strFormEmpty'] = $GLOBALS['strFormEmpty'];
$js_messages['strNotNumber'] = $GLOBALS['strNotNumber'];
$js_messages['strClickToSelect'] = $GLOBALS['strClickToSelect'];
@@ -66,6 +79,100 @@ $js_messages['strChangeDisplay'] = $GLOBALS['strChangeDisplay'];
echo "var PMA_messages = new Array();\n";
foreach ($js_messages as $name => $js_message) {
- echo "PMA_messages['" . $name . "'] = '" . PMA_escapeJsString($js_message) . "';\n";
+ PMA_printJsValue("PMA_messages['" . $name . "']", $js_message);
}
+
+/* Calendar */
+/* l10n: Display text for calendar close link */
+PMA_printJsValue("$.datepicker.regional['']['closeText']", __('Done'));
+/* l10n: Display text for previous month link in calendar */
+PMA_printJsValue("$.datepicker.regional['']['prevText']", __('Prev'));
+/* l10n: Display text for next month link in calendar */
+PMA_printJsValue("$.datepicker.regional['']['nextText']", __('Next'));
+/* l10n: Display text for current month link in calendar */
+PMA_printJsValue("$.datepicker.regional['']['currentText']", __('Today'));
+PMA_printJsValue("$.datepicker.regional['']['monthNames']",
+ array(
+ __('January'),
+ __('February'),
+ __('March'),
+ __('April'),
+ __('May'),
+ __('June'),
+ __('July'),
+ __('August'),
+ __('September'),
+ __('October'),
+ __('November'),
+ __('December')));
+PMA_printJsValue("$.datepicker.regional['']['monthNamesShort']",
+ array(
+/* l10n: Short month name */
+ __('Jan'),
+/* l10n: Short month name */
+ __('Feb'),
+/* l10n: Short month name */
+ __('Mar'),
+/* l10n: Short month name */
+ __('Apr'),
+/* l10n: Short month name */
+ _pgettext('Short month name', 'May'),
+/* l10n: Short month name */
+ __('Jun'),
+/* l10n: Short month name */
+ __('Jul'),
+/* l10n: Short month name */
+ __('Aug'),
+/* l10n: Short month name */
+ __('Sep'),
+/* l10n: Short month name */
+ __('Oct'),
+/* l10n: Short month name */
+ __('Nov'),
+/* l10n: Short month name */
+ __('Dec')));
+PMA_printJsValue("$.datepicker.regional['']['dayNames']",
+ array(
+ __('Sunday'),
+ __('Monday'),
+ __('Tuesday'),
+ __('Wednesday'),
+ __('Thursday'),
+ __('Friday'),
+ __('Saturday')));
+PMA_printJsValue("$.datepicker.regional['']['dayNamesShort']",
+ array(
+/* l10n: Short week day name */
+ __('Sun'),
+/* l10n: Short week day name */
+ __('Mon'),
+/* l10n: Short week day name */
+ __('Tue'),
+/* l10n: Short week day name */
+ __('Wed'),
+/* l10n: Short week day name */
+ __('Thu'),
+/* l10n: Short week day name */
+ __('Fri'),
+/* l10n: Short week day name */
+ __('Sat')));
+PMA_printJsValue("$.datepicker.regional['']['dayNamesMin']",
+ array(
+/* l10n: Minimal week day name */
+ __('Su'),
+/* l10n: Minimal week day name */
+ __('Mo'),
+/* l10n: Minimal week day name */
+ __('Tu'),
+/* l10n: Minimal week day name */
+ __('We'),
+/* l10n: Minimal week day name */
+ __('Th'),
+/* l10n: Minimal week day name */
+ __('Fr'),
+/* l10n: Minimal week day name */
+ __('Sa')));
+/* l10n: Column header for week of the year in calendar */
+PMA_printJsValue("$.datepicker.regional['']['weekHeader']", __('Wk'));
?>
+$.extend($.datepicker._defaults, $.datepicker.regional['']);
diff --git a/po/af.po b/po/af.po
index a5b1c3e..8379718 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,289 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Gaan"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Geen"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Vorige"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Volgende"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+msgid "Today"
+msgstr "totaal"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Biner"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mei"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mei"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Des"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "So"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Ma"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Di"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Fr"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "So"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Ma"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Di"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Wo"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Do"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Fr"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sa"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "So"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Ma"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Di"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Wo"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Do"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Fr"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sa"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -121,82 +396,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "So"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Ma"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Di"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Wo"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Do"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Fr"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sa"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mei"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Des"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2436,10 +2635,6 @@ msgstr "Naam"
msgid "New table"
msgstr "Geen tabelle"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Volgende"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ar.po b/po/ar.po
index ee6f4e6..7c5548d 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr " تنفيذ "
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "ألغ"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "تبرع"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "سابق"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "التالي"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "مجموع كلي"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "ثنائي"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "مارس"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "أبريل"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "مايو"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "يونيو"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "يوليو"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "أغسطس"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "أكتوبر"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "يناير"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "فبراير"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "مارس"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "أبريل"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "مايو"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "يونيو"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "يوليو"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "أغسطس"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "سبتمبر"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "أكتوبر"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "نوفمبر"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "ديسمبر"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "الأحد"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "الإثنين"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "الثلاثاء"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "الجمعة"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "الأحد"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "الإثنين"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "الثلاثاء"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "الأربعاء"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "الخميس"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "الجمعة"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "السبت"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "الأحد"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "الإثنين"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "الثلاثاء"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "الأربعاء"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "الخميس"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "الجمعة"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "السبت"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "ويكي"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -124,82 +402,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "الأحد"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "الإثنين"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "الثلاثاء"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "الأربعاء"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "الخميس"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "الجمعة"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "السبت"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "يناير"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "فبراير"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "مارس"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "أبريل"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "مايو"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "يونيو"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "يوليو"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "أغسطس"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "سبتمبر"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "أكتوبر"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "نوفمبر"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "ديسمبر"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2414,10 +2616,6 @@ msgstr "الاسم"
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "التالي"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/az.po b/po/az.po
index beaaab5..867eef7 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Davam"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Heç biri"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Evvelki"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Sonrakı"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Cemi"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binary"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "May"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "İyun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "İyul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Avq"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Yan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Fev"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "May"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "İyun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "İyul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Avq"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sent"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Noy"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dek"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Baz"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Baz Ert"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Çerş Axş"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Cüme"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Baz"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Baz Ert"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Çerş Axş"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Çerş"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Cüme Axş"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Cüme"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Şen"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Baz"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Baz Ert"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Çerş Axş"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Çerş"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Cüme Axş"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Cüme"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Şen"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -123,82 +399,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Baz"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Baz Ert"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Çerş Axş"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Çerş"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Cüme Axş"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Cüme"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Şen"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Yan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Fev"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "May"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "İyun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "İyul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Avq"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sent"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Noy"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dek"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2461,10 +2661,6 @@ msgstr "Adı"
msgid "New table"
msgstr "Cedvel yoxdur"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Sonrakı"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/be.po b/po/be.po
index 78340b2..65ee591 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,291 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Панеслася"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Скасаваць"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Дадзеныя"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Папярэдняя старонка"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Наступная старонка"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Агулам"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Двайковы"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Сак"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Кра"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Тра"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Чэр"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Ліп"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Жні"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Кас"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Сту"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Лют"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Сак"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Кра"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Тра"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Чэр"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Ліп"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Жні"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Вер"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Кас"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Ліс"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Сьн"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ндз"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Пан"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Аўт"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Пят"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ндз"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Пан"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Аўт"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Сер"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Цач"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Пят"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Суб"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ндз"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Пан"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Аўт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Сер"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Цач"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Пят"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Суб"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +409,6 @@ msgstr "ПіБ"
msgid "EiB"
msgstr "ЭіБ"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ндз"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Пан"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Аўт"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Сер"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Цач"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Пят"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Суб"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Сту"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Лют"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Сак"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Кра"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Тра"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Чэр"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Ліп"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Жні"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Вер"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Кас"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Ліс"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Сьн"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2497,10 +2698,6 @@ msgstr "Назва"
msgid "New table"
msgstr "Няма табліц"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Наступная старонка"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index eeb8a0b..f6e5442 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -15,14 +15,292 @@ msgstr ""
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Paniesłasia"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Skasavać"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Nijakaja"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Papiaredniaja staronka"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Nastupnaja staronka"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Ahułam"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Dvajkovy"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Sak"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Kra"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Tra"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Čer"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Lip"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Žni"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Kas"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Stu"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Lut"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Sak"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Kra"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Tra"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Čer"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Lip"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Žni"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Vier"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Kas"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Lis"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Śn"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ndz"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Pan"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Aŭt"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Piat"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ndz"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Pan"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Aŭt"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Sier"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Cač"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Piat"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sub"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ndz"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Pan"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Aŭt"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Sier"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Cač"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Piat"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sub"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -133,82 +411,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ndz"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Pan"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Aŭt"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Sier"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Cač"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Piat"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sub"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Stu"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Lut"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Sak"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Kra"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Tra"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Čer"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Lip"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Žni"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Vier"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Kas"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Lis"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Śn"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2489,10 +2691,6 @@ msgstr "Nazva"
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Nastupnaja staronka"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/bg.po b/po/bg.po
index 67389b3..9ed1248 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Изпълнение"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Няма"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Предишен"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Следващ"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Общо"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Двоично "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "март"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "април"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "май"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "юни"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "юли"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "август"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "октомври"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "януари"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "февруари"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "март"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "април"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "май"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "юни"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "юли"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "август"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "септември"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "октомври"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "ноември"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "декември"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "нд"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "пн"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "вт"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "пт"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "нд"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "пн"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "вт"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "ср"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "чт"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "пт"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "сб"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "нд"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "пн"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "вт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "ср"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "чт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "пт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "сб"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -129,82 +405,6 @@ msgstr "ПБ"
msgid "EiB"
msgstr "ЕБ"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "нд"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "пн"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "вт"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "ср"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "чт"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "пт"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "сб"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "януари"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "февруари"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "март"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "април"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "май"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "юни"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "юли"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "август"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "септември"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "октомври"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "ноември"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "декември"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2468,10 +2668,6 @@ msgstr "Име"
msgid "New table"
msgstr "Няма таблици"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Следващ"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/bn.po b/po/bn.po
index 71a4ec5..e0b8db8 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,289 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Go"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "ডাটা"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "পূর্ববর্তী"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "পরবর্তী"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "মোট"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "বাইনারী"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "মার্চ"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "এপ্রিল"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "মে"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "জুন"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "জুলাই"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "আগস্ট"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "অক্টোবর"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "জানুয়ারী"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "ফেব্রুয়ারী"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "মার্চ"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "এপ্রিল"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "মে"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "জুন"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "জুলাই"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "আগস্ট"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "সেপ্টেমবর"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "অক্টোবর"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "নভেম্বর"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "ডিসেম্বর"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "রবিবার"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "সোমবার"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "মঙ্গলবার"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "শুক্রবার"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "রবিবার"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "সোমবার"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "মঙ্গলবার"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "বুধবার"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "বৃহস্পতিবার"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "শুক্রবার"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "শনিবার"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "রবিবার"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "সোমবার"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "মঙ্গলবার"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "বুধবার"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "বৃহস্পতিবার"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "শুক্রবার"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "শনিবার"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -130,82 +405,6 @@ msgstr "পেটাবাইট"
msgid "EiB"
msgstr "এক্সাবাইট"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "রবিবার"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "সোমবার"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "মঙ্গলবার"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "বুধবার"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "বৃহস্পতিবার"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "শুক্রবার"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "শনিবার"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "জানুয়ারী"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "ফেব্রুয়ারী"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "মার্চ"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "এপ্রিল"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "মে"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "জুন"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "জুলাই"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "আগস্ট"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "সেপ্টেমবর"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "অক্টোবর"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "নভেম্বর"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "ডিসেম্বর"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2495,10 +2694,6 @@ msgstr "নাম"
msgid "New table"
msgstr "কোন টেবিল নাই"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "পরবর্তী"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/bs.po b/po/bs.po
index 004630e..0c07f31 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Kreni"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "nema"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Prethodna"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Slijedeći"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Ukupno"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binarni"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "maj"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "maj"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ned"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Pon"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Uto"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pet"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ned"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Pon"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Uto"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Sri"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Čet"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pet"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sub"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ned"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Pon"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Uto"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Sri"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Čet"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pet"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sub"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -125,82 +401,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ned"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Pon"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Uto"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Sri"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Čet"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pet"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sub"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "maj"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2460,10 +2660,6 @@ msgstr "Ime"
msgid "New table"
msgstr "Nema tabela"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Slijedeći"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ca.po b/po/ca.po
index 8199d53..0a25e91 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Executa"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Cancel.lar"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Donacions"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Anterior"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Següent"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binari "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Abr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Ago"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Oct"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Gen"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Abr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Ago"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Set"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Oct"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Diu"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Dll"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Dma"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Div"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Diu"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Dll"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Dma"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Dcr"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Dij"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Div"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Dis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Diu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Dll"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Dma"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Dcr"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Dij"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Div"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Dis"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +410,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Diu"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Dll"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Dma"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Dcr"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Dij"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Div"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Dis"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Gen"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Abr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Ago"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Set"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Oct"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2504,10 +2706,6 @@ msgstr "Nom"
msgid "New table"
msgstr "No hi ha taules"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Següent"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/cs.po b/po/cs.po
index 8955a73..df6a00b 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(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
-"PO-Revision-Date: 2010-04-23 16:41+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
+"PO-Revision-Date: 2010-05-03 14:46+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: czech <cs(a)li.org>\n"
"MIME-Version: 1.0\n"
@@ -15,14 +15,247 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Proveď"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Zrušit"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+msgid "Done"
+msgstr "Hotovo"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+msgid "Prev"
+msgstr "Předchozí"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Další"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+msgid "Today"
+msgstr "Dnešek"
+
+#: js/messages.php:96
+msgid "January"
+msgstr "leden"
+
+#: js/messages.php:97
+msgid "February"
+msgstr "únor"
+
+#: js/messages.php:98
+msgid "March"
+msgstr "březen"
+
+#: js/messages.php:99
+msgid "April"
+msgstr "duben"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "květen"
+
+#: js/messages.php:101
+msgid "June"
+msgstr "červen"
+
+#: js/messages.php:102
+msgid "July"
+msgstr "červenec"
+
+#: js/messages.php:103
+msgid "August"
+msgstr "srpen"
+
+#: js/messages.php:104
+msgid "September"
+msgstr "září"
+
+#: js/messages.php:105
+msgid "October"
+msgstr "říjen"
+
+#: js/messages.php:106
+msgid "November"
+msgstr "listopad"
+
+#: js/messages.php:107
+msgid "December"
+msgstr "prosinec"
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "led"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "úno"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "bře"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "dub"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "kvě"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "čen"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "čec"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "srp"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "zář"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "říj"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "lis"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "pro"
+
+#: js/messages.php:136
+msgid "Sunday"
+msgstr "Neděle"
+
+#: js/messages.php:137
+msgid "Monday"
+msgstr "Pondělí"
+
+#: js/messages.php:138
+msgid "Tuesday"
+msgstr "Úterý"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr "Středa"
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr "Čtvrtek"
+
+#: js/messages.php:141
+msgid "Friday"
+msgstr "Pátek"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr "Sobota"
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ned"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Pon"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Úte"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Stř"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Čtv"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pát"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sob"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+msgid "Su"
+msgstr "Ne"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+msgid "Mo"
+msgstr "Po"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+msgid "Tu"
+msgstr "Út"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+msgid "We"
+msgstr "St"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+msgid "Th"
+msgstr "Čt"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+msgid "Fr"
+msgstr "Pá"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+msgid "Sa"
+msgstr "So"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr "Týd"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -131,82 +364,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Neděle"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Pondělí"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Úterý"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Středa"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Čtvrtek"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pátek"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sobota"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "ledna"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "února"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "března"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "dubna"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "května"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "června"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "července"
-
-#: libraries/messages.inc.php:28
-msgid "A
ug"
-msgstr "srpna"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "září"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "října"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "listopadu"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "prosince"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2482,10 +2639,6 @@ msgstr "Název"
msgid "New table"
msgstr "Nová tabulka"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Další"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/da.po b/po/da.po
index ddbbc44..86eeaf4 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Udfør"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Annuller"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Ingen"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Forrige"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Næste"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binært "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "maj"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "maj"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "søn"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "man"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "tir"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "fre"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "søn"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "man"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "tir"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "ons"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "tor"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "fre"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "lør"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "søn"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "man"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "tir"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "ons"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "tor"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "fre"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "lør"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -129,82 +405,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "søn"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "man"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "tir"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "ons"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "tor"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "fre"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "lør"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "maj"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2469,10 +2669,6 @@ msgstr "Navn"
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Næste"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/de.po b/po/de.po
index 87e7ae6..441106b 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "OK"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Abbrechen"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Spenden"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Vorherige"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Nächste"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Insgesamt"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binär"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "März"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "April"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Juni"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Juli"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "August"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Oktober"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Januar"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Februar"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "März"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "April"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Juni"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Juli"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "August"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "September"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Oktober"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "November"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dezember"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "So"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Mo"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Di"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Fr"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "So"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Mo"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Di"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Mi"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Do"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Fr"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sa"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "So"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Mo"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Di"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Mi"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Do"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Fr"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sa"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -134,82 +412,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "So"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Mo"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Di"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Mi"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Do"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Fr"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sa"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Januar"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Februar"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "März"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "April"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Juni"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Juli"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "August"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "September"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Oktober"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "November"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dezember"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2519,10 +2721,6 @@ msgstr "Name"
msgid "New table"
msgstr "keine Tabellen"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Nächste"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/el.po b/po/el.po
index ba5af0b..0f6629b 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Εκτέλεση"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Άκυρο"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Δωρεά"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Προηγούμενο"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Επόμενο"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Σύνολο"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Δυαδικό"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Μαρτίου"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Απριλίου"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Μαΐου"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Ιουνίου"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Ιουλίου"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Αυγούστου"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Οκτωβρίου"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Ιανουαρίου"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Φεβρουαρίου"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Μαρτίου"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Απριλίου"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Μαΐου"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Ιουνίου"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Ιουλίου"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Αυγούστου"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Σεπτεμβρίου"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Οκτωβρίου"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Νοεμβρίου"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Δεκεμβρίου"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Κυριακή"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Δευτέρα"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Τρίτη"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Παρασκευή"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Κυριακή"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Δευτέρα"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Τρίτη"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Τετάρτη"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Πέμπτη"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Παρασκευή"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Σάββατο"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Κυριακή"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Δευτέρα"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Τρίτη"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Τετάρτη"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Πέμπτη"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Παρασκευή"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Σάββατο"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -133,82 +411,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Κυριακή"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Δευτέρα"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Τρίτη"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Τετάρτη"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Πέμπτη"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Παρασκευή"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Σάββατο"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Ιανουαρίου"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Φεβρουαρίου"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Μαρτίου"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Απριλίου"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Μαΐου"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Ιουνίου"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Ιουλίου"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Αυγούστου"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Σεπτεμβρίου"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Οκτωβρίου"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Νοεμβρίου"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Δεκεμβρίου"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2512,10 +2714,6 @@ msgstr "Όνομα"
msgid "New table"
msgstr "Νέος πίνακας"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Επόμενο"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/en_GB.po b/po/en_GB.po
index 7910590..898f947 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Go"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Cancel"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Donate"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Previous"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Next"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binary"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "May"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Oct"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "May"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Oct"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Sun"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Mon"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Tue"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Fri"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Sun"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Mon"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Tue"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Wed"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Thu"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Fri"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sat"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Sun"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Mon"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Tue"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Wed"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Thu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Fri"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sat"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -127,82 +405,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Sun"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Mon"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Tue"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Wed"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Thu"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Fri"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sat"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "May"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Oct"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2487,10 +2689,6 @@ msgstr "Name"
msgid "New table"
msgstr "New table"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Next"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/es.po b/po/es.po
index e86e9cd..632c5f9 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Continuar"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Cancelar"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Donación"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Previo"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Próxima"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binario "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Abr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "May"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Ago"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Oct"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Ene"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Abr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "May"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Ago"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Oct"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dic"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Dom"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Lun"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Mar"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Vie"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Dom"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Lun"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Mar"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Mie"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Jue"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Vie"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sab"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Dom"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Lun"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Mar"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Mie"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Jue"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Vie"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sab"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +410,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Dom"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Lun"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Mie"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Jue"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Vie"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sab"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Ene"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Abr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "May"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Ago"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Oct"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dic"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2530,10 +2732,6 @@ msgstr "Nombre"
msgid "New table"
msgstr "No existen tablas"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Próxima"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/et.po b/po/et.po
index afdfdfb..a49125b 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,289 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Mine"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Katkesta"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Andmed"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Eelmine"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Järgmine"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Kokku"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binaarne"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mär"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Veb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mär"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Det"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Püh"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Esm"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Tei"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Ree"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Püh"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Esm"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Tei"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Kol"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Nel"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Ree"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Lau"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Püh"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Esm"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Tei"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Kol"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Nel"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Ree"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Lau"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -131,82 +406,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Püh"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Esm"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Tei"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Kol"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Nel"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Ree"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Lau"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Veb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mär"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Det"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2484,10 +2683,6 @@ msgstr "Nimi"
msgid "New table"
msgstr "Pole tabeleid"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Järgmine"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/eu.po b/po/eu.po
index f866ffd..9cabb0b 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,290 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Joan"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Batez"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Aurrekoa"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Hurrengoa"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Gutira"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binarioa "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Api"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Eka"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Uzt"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Abu"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Urr"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Urt"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Ots"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Api"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Eka"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Uzt"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Abu"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Ira"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Urr"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Aza"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Abe"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Iga"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Astel"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Astea"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Osti"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Iga"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Astel"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Astea"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Astez"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Oste"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Osti"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Lar"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Iga"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Astel"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Astea"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Astez"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Oste"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Osti"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Lar"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -125,82 +401,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Iga"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Astel"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Astea"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Astez"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Oste"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Osti"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Lar"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Urt"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Ots"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Api"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Eka"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Uzt"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Abu"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Ira"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Urr"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Aza"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Abe"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2463,10 +2663,6 @@ msgstr "Izena"
msgid "New table"
msgstr "Taularik ez"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Hurrengoa"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/fa.po b/po/fa.po
index 1be0f51..d1b4ec4 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "تاييد"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "خير"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "قبل"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "بعد"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "جمع كل"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "دودويي"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "مارس"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "آوريل"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "مي"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "ژوئن"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "جولاي"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "آگوست"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "اكتبر"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "ژانويه"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "فوريه"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "مارس"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "آوريل"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "مي"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "ژوئن"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "جولاي"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "آگوست"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "سپتامبر"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "اكتبر"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "نوامبر"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "دسامبر"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "يكشنبه"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "دوشنبه"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "سهشنبه"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "جمعه"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "يكشنبه"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "دوشنبه"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "سهشنبه"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "چهارشنبه"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "پنجشنبه"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "جمعه"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "شنبه"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "يكشنبه"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "دوشنبه"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "سهشنبه"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "چهارشنبه"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "پنجشنبه"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "جمعه"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "شنبه"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -121,82 +397,6 @@ msgstr "پتا بايت"
msgid "EiB"
msgstr "اگزا بايت"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "يكشنبه"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "دوشنبه"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "سهشنبه"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "چهارشنبه"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "پنجشنبه"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "جمعه"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "شنبه"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "ژانويه"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "فوريه"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "مارس"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "آوريل"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "مي"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "ژوئن"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "جولاي"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "آگوست"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "سپتامبر"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "اكتبر"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "نوامبر"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "دسامبر"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2437,10 +2637,6 @@ msgstr "اسم"
msgid "New table"
msgstr "No tables"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "بعد"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/fi.po b/po/fi.po
index 233bfab..fd4002b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-04-30 18:08+0200\n"
"Last-Translator: <kajouni(a)gmail.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Siirry"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Peruuta"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Lahjoita"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Edellinen"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Seuraava"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Yhteensä"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binääritietoa"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Maalis"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Huhti"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Touko"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Kesä"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Heinä"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Elo"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Loka"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Tammi"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Helmi"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Maalis"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Huhti"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Touko"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Kesä"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Heinä"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Elo"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Syys"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Loka"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Marras"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Joulu"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Su"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Ma"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Ti"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pe"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Su"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Ma"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Ti"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Ke"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "To"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pe"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "La"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Su"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Ma"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Ti"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Ke"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "To"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pe"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "La"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -134,82 +412,6 @@ msgstr "Pt"
msgid "EiB"
msgstr "Et"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Su"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Ma"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Ti"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Ke"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "To"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pe"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "La"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Tammi"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Helmi"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Maalis"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Huhti"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Touko"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Kesä"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Heinä"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Elo"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Syys"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Loka"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Marras"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Joulu"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2491,10 +2693,6 @@ msgstr "Nimi"
msgid "New table"
msgstr "Ei tauluja"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Seuraava"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/fr.po b/po/fr.po
index 76f9560..6dec5b0 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-04-20 11:43+0200\n"
"Last-Translator: Marc <marc(a)infomarc.info>\n"
"Language-Team: french <fr(a)li.org>\n"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Exécuter"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Annuler"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Faire un don"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Précédent"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Suivant"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binaire"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mars"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Avril"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Juin"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Juillet"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Août"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Octobre"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Janvier"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Février"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mars"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Avril"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Juin"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Juillet"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Août"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Septembre"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Octobre"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Novembre"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Décembre"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Dim"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Lun"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Mar"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Ven"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Dim"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Lun"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Mar"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Mer"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Jeu"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Ven"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sam"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Dim"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Lun"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Mar"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Mer"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Jeu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Ven"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sam"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -127,82 +405,6 @@ msgstr "Pio"
msgid "EiB"
msgstr "Eio"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Dim"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Lun"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Mer"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Jeu"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Ven"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sam"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Janvier"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Février"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mars"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Avril"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Juin"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Juillet"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Août"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Septembre"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Octobre"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Novembre"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Décembre"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2512,10 +2714,6 @@ msgstr "Nom"
msgid "New table"
msgstr "Nouvelle table"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Suivant"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/gl.po b/po/gl.po
index f11b274..1b314e2 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Executar"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Cancelar"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Doar"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Anterior"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Seguinte"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binario "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Abr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Maio"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Xuño"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Xullo"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Ago"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Out"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Xan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Abr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Maio"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Xuño"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Xullo"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Ago"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Set"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Out"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Do"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Lu"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Ma"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Ve"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Do"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Lu"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Ma"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Mé"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Xo"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Ve"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sá"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Do"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Lu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Ma"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Mé"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Xo"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Ve"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sá"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +410,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Do"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Lu"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Ma"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Mé"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Xo"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Ve"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sá"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Xan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Abr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Maio"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Xuño"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Xullo"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Ago"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Set"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Out"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2502,10 +2704,6 @@ msgstr "Nome"
msgid "New table"
msgstr "Sen táboas"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Seguinte"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/he.po b/po/he.po
index fbe58ae..1f3163a 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "סע"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "ללא"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "הקודם"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "הבא"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "סה\"כ"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "בינארי"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "מרץ"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "אפריל"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "מאי"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "יוני"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "יולי"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "אוגוסט"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "אוקטובר"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "ינואר"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "פברואר"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "מרץ"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "אפריל"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "מאי"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "יוני"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "יולי"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "אוגוסט"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "ספטמבר"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "אוקטובר"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "נובמבר"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "דצמבר"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "יום ראשון"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "יום שני"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "יום שלישי"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "יום שישי"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "יום ראשון"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "יום שני"
+
+#. l10n: Short week day name
+#: js/messages.php:150 li
braries/messages.inc.php:27
+msgid "Tue"
+msgstr "יום שלישי"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "יום רביעי"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "יום חמישי"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "יום שישי"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "שבת"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "יום ראשון"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "יום שני"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "יום שלישי"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "יום רביעי"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "יום חמישי"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "יום שישי"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "שבת"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -128,82 +404,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "יום ראשון"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "יום שני"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "יום שלישי"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "יום רביעי"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "יום חמישי"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "יום שישי"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "שבת"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "ינואר"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "פברואר"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "מרץ"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "אפריל"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "מאי"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "יוני"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "יולי"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "אוגוסט"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "ספטמבר"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "אוקטובר"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "נובמבר"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "דצמבר"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2444,10 +2644,6 @@ msgstr "שם"
msgid "New table"
msgstr "אין טבלאות"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "הבא"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/hi.po b/po/hi.po
index b2077c6..2720ac9 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-05-01 07:49+0200\n"
"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
@@ -14,14 +14,284 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "आगे"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "रद्द"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+msgid "Done"
+msgstr ""
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+msgid "Prev"
+msgstr ""
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr " अगला"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+msgid "Today"
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "बइनरी"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "मार्च"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "अप्रैल"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "मई"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "जून"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "जुलाई"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "अगस्त"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "अक्तूबर"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "जनवरी"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "फरवरी"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "मार्च"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "अप्रैल"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "मई"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "जून"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "जुलाई"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "अगस्त"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "सितम्बर"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "अक्तूबर"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "नवम्बर"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "दिसमबर"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "रविवार"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "सोमवार"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "मन्गलवार"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "शुक्रवार"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "रविवार"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "सोमवार"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "मन्गलवार"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "बुधवार"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "गुरुवार"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "शुक्रवार"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "शनिवार"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "रविवार"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "सोमवार"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "मन्गलवार"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "बुधवार"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "गुरुवार"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "शुक्रवार"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "शनिवार"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -126,82 +396,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "रविवार"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "सोमवार"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "मन्गलवार"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "बुधवार"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "गुरुवार"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "शुक्रवार"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "शनिवार"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "जनवरी"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "फरवरी"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "मार्च"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "अप्रैल"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "मई"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "जून"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "जुलाई"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "अगस्त"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "सितम्बर"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "अक्तूबर"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "नवम्बर"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "दिसमबर"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2393,10 +2587,6 @@ msgstr "नाम"
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr " अगला"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/hr.po b/po/hr.po
index 8da1e2a..ec07fa6 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,291 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Kreni"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Odustani"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Podaci"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Prethodni"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Sljedeće"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Ukupno"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binarno"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Ožu"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Tra"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Svi"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Lip"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Srp"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Kol"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Lis"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Sij"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Velj"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Ožu"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Tra"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Svi"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Lip"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Srp"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Kol"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Ruj"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Lis"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Stu"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Pro"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ned"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Pon"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Uto"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pet"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ned"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Pon"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Uto"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Sri"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Čet"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pet"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sub"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ned"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Pon"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Uto"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Sri"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Čet"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pet"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sub"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +409,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ned"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Pon"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Uto"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Sri"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Čet"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pet"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sub"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Sij"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Velj"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Ožu"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Tra"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Svi"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Lip"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Srp"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Kol"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Ruj"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Lis"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Stu"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Pro"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2491,10 +2692,6 @@ msgstr "Naziv"
msgid "New table"
msgstr "Nema tablica"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Sljedeće"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/hu.po b/po/hu.po
index 5f02330..c91fa9f 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Indítás"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Mégse"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Adományozás"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Előző"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Következő"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Összesen"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Bináris"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "márc."
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "ápr."
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "máj."
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "jún."
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "júl."
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "aug."
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "okt."
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "jan."
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "febr."
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "márc."
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "ápr."
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "máj."
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "jún."
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "júl."
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "aug."
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "szept."
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "okt."
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "nov."
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "dec."
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "V"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "H"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "K"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "P"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "V"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "H"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "K"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Sze"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Cs"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "P"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Szo"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "V"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "H"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "K"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Sze"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Cs"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "P"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Szo"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -131,82 +409,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "V"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "H"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "K"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Sze"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Cs"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "P"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Szo"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "jan."
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "febr."
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "márc."
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "ápr."
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "máj."
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "jún."
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "júl."
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "aug."
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "szept."
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "okt."
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "nov."
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "dec."
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2505,10 +2707,6 @@ msgstr "Név"
msgid "New table"
msgstr "Nincs tábla"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Következő"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/id.po b/po/id.po
index 6846d0a..152f1dc 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-04-17 21:14+0200\n"
"Last-Translator: Azhari Harahap <azhari.harahap(a)yahoo.com>\n"
"Language-Team: indonesian <id(a)li.org>\n"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Go"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Batal"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "tanpa"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Sebelumnya"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Berikutnya"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Jumlah"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binari"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Maret"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "April"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mei"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Juni"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Juli"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Agustus"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Oktober"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Januari"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Februari"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Maret"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "April"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mei"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Juni"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Juli"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Agustus"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "September"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Oktober"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nopember"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Desember"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Minggu"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Senin"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Selasa"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Jumat"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Minggu"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Senin"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Selasa"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Rabu"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Kamis"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Jumat"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sabtu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Minggu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Senin"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Selasa"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Rabu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Kamis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Jumat"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sabtu"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -127,82 +405,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Minggu"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Senin"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Selasa"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Rabu"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Kamis"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Jumat"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sabtu"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Januari"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Februari"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Maret"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "April"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mei"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Juni"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Juli"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Agustus"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "September"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Oktober"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nopember"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Desember"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2469,10 +2671,6 @@ msgstr "Nama"
msgid "New table"
msgstr "Tabel tidak ditemukan"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Berikutnya"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/it.po b/po/it.po
index ba2ea54..a090f98 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-04-11 11:19+0200\n"
"Last-Translator: Fabio <fantonifabio(a)tiscali.it>\n"
"Language-Team: italian <it(a)li.org>\n"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Esegui"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Annulla"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Dona"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Precedente"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Prossimo"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Totale"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binario"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "mag"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "giu"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "lug"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "ago"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "ott"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "gen"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "mag"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "giu"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "lug"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "ago"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "set"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "ott"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "dic"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Dom"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Lun"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Mar"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Ven"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Dom"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Lun"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Mar"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Mer"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Gio"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Ven"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sab"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Dom"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Lun"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Mar"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Mer"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Gio"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Ven"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sab"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -129,82 +407,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Dom"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Lun"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Mer"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Gio"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Ven"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sab"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "gen"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "mag"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "giu"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "lug"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "ago"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "set"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "ott"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "dic"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2506,10 +2708,6 @@ msgstr "Nome"
msgid "New table"
msgstr "Nuova tabella"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Prossimo"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ja.po b/po/ja.po
index 9c38bd9..c9d418c 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,288 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "実行する"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "キャンセル"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "なし"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "前"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "次へ"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "合計"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " バイナリ"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "8 月"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "9 月"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "10 月"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "11 月"
+
+#: js/messages.php:102
+#, fuzzy
+msgid "July"
+msgstr "日"
+
+#: js/messages.php:103
+msgid "August"
+msgstr ""
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+msgid "October"
+msgstr ""
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "1 月','2 月','3 月','4 月','5 月','6 月"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "7 月"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "8 月"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "9 月"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "10 月"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "11 月"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+#, fuzzy
+msgid "Jul"
+msgstr "日"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr ""
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "日"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "月"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "火"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "金"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "日"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "月"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "火"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "水"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "木"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "金"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "土"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "日"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "月"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "火"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "水"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "木"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "金"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "土"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -128,83 +402,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "日"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "月"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "火"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "水"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "木"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "金"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "土"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "1 月','2 月','3 月','4 月','5 月','6 月"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "7 月"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "8 月"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "9 月"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "10 月"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "11 月"
-
-#: libraries/messages.inc.php:28
-#, fuzzy
-msgid "Jul"
-msgstr "日"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr ""
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2467,10 +2664,6 @@ msgstr "名前"
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "次へ"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ka.po b/po/ka.po
index 3872697..fa8b65e 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "გადასვლა"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "გაუქმება"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "შემოწირულობა"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "წინა"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "შემდეგი"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "სულ"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "ბინარული"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "მარ"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "აპრ"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "მაი"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "ივნ"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "ივლ"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "აგვ"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "ოქტ"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "იან"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "თებ"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "მარ"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "აპრ"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "მაი"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "ივნ"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "ივლ"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "აგვ"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "სექ"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "ოქტ"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "ნოე"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "დეკ"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "კვი"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "ორშ"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "სამ"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "პარ"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "კვი"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "ორშ"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "სამ"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "ოთხ"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "ხუთ"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "პარ"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "შაბ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "კვი"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "ორშ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "სამ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "ოთხ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "ხუთ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "პარ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "შაბ"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "ვიკი"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -131,82 +409,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "კვი"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "ორშ"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "სამ"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "ოთხ"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "ხუთ"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "პარ"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "შაბ"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "იან"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "თებ"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "მარ"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "აპრ"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "მაი"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "ივნ"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "ივლ"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "აგვ"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "სექ"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "ოქტ"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "ნოე"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "დეკ"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2493,10 +2695,6 @@ msgstr "სახელი"
msgid "New table"
msgstr "ცხრილები არაა"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "შემდეგი"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ko.po b/po/ko.po
index 33231cc..f12bda3 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "실행"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "없음"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "이전"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "다음"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "전체 사용량"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "바이너리"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "물오름달"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "잎새달"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "푸른달"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "누리달"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "견우직녀달"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "타오름달"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "하늘연달"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "해오름달"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "시샘달"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "물오름달"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "잎새달"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "푸른달"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "누리달"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "견우직녀달"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "타오름달"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "열매달"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "하늘연달"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "미틈달"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "매듭달"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "일"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "월"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "화"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "금"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "일"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "월"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "화"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "수"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "목"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "금"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "토"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "일"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "월"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "화"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "수"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "목"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "금"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "토"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -121,82 +397,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "일"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "월"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "화"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "수"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "목"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "금"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "토"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "해오름달"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "시샘달"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "물오름달"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "잎새달"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "푸른달"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "누리달"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "견우직녀달"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "타오름달"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "열매달"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "하늘연달"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "미틈달"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "매듭달"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2438,10 +2638,6 @@ msgstr "이름"
msgid "New table"
msgstr "테이블이 없습니다"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "다음"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/lt.po b/po/lt.po
index 61467ec..2b1f60b 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-04-16 19:52+0200\n"
"Last-Translator: Rytis <rytis.s(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
@@ -15,14 +15,292 @@ msgstr ""
"100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Vykdyti"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Atšaukti"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Paremti"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Praėjęs"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Sekantis"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Viso"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Dvejetainis"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "kovo"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "balandžio"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "gegužės"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "birželio"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "liepos"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "rugpjūčio"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "spalio"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "sausio"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "vasario"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "kovo"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "balandžio"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "gegužės"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "birželio"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "liepos"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "rugpjūčio"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "rugsėjo"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "spalio"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "lapkričio"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "gruodžio"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Sekmadienis"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Pirmadienis"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Antradienis"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Penktadienis"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Sekmadienis"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Pirmadienis"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Antradienis"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Trečiadienis"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Ketvirtadienis"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Penktadienis"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Šeštadienis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Sekmadienis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Pirmadienis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Antradienis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Trečiadienis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Ketvirtadienis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Penktadienis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Šeštadienis"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -131,82 +409,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Sekmadienis"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Pirmadienis"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Antradienis"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Trečiadienis"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Ketvirtadienis"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Penktadienis"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Šeštadienis"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "sausio"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "vasario"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "kovo"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "balandžio"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "gegužės"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "birželio"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "liepos"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "rugpjūčio"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "rugsėjo"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "spalio"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "lapkričio"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "gruodžio"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2472,10 +2674,6 @@ msgstr "Pavadinimas"
msgid "New table"
msgstr "No tables"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Sekantis"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/lv.po b/po/lv.po
index a4f2afc..500f5b5 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Aiziet!"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Nav"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Iepriekšējie"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Nākamie"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Kopā"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binārais"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jūn"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jūl"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jūn"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jūl"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Sv"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "P"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "O"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pk"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Sv"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "P"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "O"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "T"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "C"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pk"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "S"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Sv"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "P"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "O"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "T"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "C"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pk"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "S"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -127,82 +403,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Sv"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "P"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "O"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "T"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "C"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pk"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "S"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jūn"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jūl"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2457,10 +2657,6 @@ msgstr "Nosaukums"
msgid "New table"
msgstr "Nav tabulu"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Nākamie"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/mk.po b/po/mk.po
index d49413d..b906cf5 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "OK"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "нема"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Претходна"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Следен"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Вкупно"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Бинарен"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "мар"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "апр"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "мај"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "јун"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "јул"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "авг"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "окт"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "јан"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "феб"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "мар"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "апр"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "мај"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "јун"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "јул"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "авг"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "сеп"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "окт"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "нов"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "дек"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Нед"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Пон"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Вто"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Пет"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Нед"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Пон"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Вто"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Сре"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Чет"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Пет"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Саб"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Нед"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Пон"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Вто"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Сре"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Чет"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Пет"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Саб"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -129,82 +405,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Нед"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Пон"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Вто"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Сре"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Чет"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Пет"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Саб"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "јан"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "феб"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "мар"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "апр"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "мај"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "јун"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "јул"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "авг"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "сеп"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "окт"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "нов"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "дек"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2491,10 +2691,6 @@ msgstr "Име"
msgid "New table"
msgstr "Нема табела"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Следен"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/mn.po b/po/mn.po
index 634f48e..884a5c7 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Яв"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Болих"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Байхгүй"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Өмнөх"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Цааш"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Нийт"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Хоёртын "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "3-р"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "4-р"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "5-р"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "6-р"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "7-р"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "8-р"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "10р"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "1-р"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "2-р"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "3-р"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "4-р"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "5-р"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "6-р"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "7-р"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "8-р"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "9-р"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "10р"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "11р"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "12р"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ня"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Да"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Мя"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Ба"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ня"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Да"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Мя"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Лх"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Пү"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Ба"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Бя"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ня"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Да"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Мя"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Лх"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Пү"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Ба"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Бя"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -127,82 +403,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ня"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Да"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Мя"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Лх"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Пү"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Ба"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Бя"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "1-р"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "2-р"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "3-р"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "4-р"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "5-р"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "6-р"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "7-р"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "8-р"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "9-р"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "10р"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "11р"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "12р"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2448,10 +2648,6 @@ msgstr "Нэр"
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Цааш"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ms.po b/po/ms.po
index 5754470..18e1add 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Pergi"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Tiada"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Terdahulu"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Berikut"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Jumlah"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binari"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mac"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mei"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Ogos"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mac"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mei"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Ogos"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sept"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dis"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Aha"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Isn"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Sel"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Jum"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Aha"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Isn"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Sel"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Rab"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Kha"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Jum"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sab"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Aha"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Isn"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Sel"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Rab"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Kha"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Jum"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sab"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -121,82 +397,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Aha"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Isn"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Sel"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Rab"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Kha"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Jum"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sab"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mac"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mei"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Ogos"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sept"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dis"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2444,10 +2644,6 @@ msgstr "Nama"
msgid "New table"
msgstr "Tiada Jadual"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Berikut"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/nb.po b/po/nb.po
index 2d26616..dbd8bc4 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-05-03 10:12+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Utfør"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Avbryt"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Doner"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Forrige"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Neste"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Totalt"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binær "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Des"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Søn"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Man"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Tir"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Fre"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Søn"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Man"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Tir"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Ons"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Tor"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Fre"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Lør"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Søn"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Man"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Tir"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Ons"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Tor"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Fre"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Lør"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -127,82 +405,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Søn"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Man"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Tir"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Ons"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Tor"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Fre"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Lør"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Des"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2486,10 +2688,6 @@ msgstr "Navn"
msgid "New table"
msgstr "Ny tabell"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Neste"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/nl.po b/po/nl.po
index 54b6827..23d6c85 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Start"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Annuleren"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Doneer"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Vorige"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Volgende"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Totaal"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binair "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mei"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Oct"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mei"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sept"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Oct"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Zo"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Ma"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Di"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Vr"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Zo"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Ma"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Di"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Wo"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Do"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Vr"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Za"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Zo"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Ma"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Di"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Wo"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Do"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Vr"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Za"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +410,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Zo"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Ma"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Di"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Wo"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Do"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Vr"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Za"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mei"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sept"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Oct"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2514,10 +2716,6 @@ msgstr "Naam"
msgid "New table"
msgstr "Geen Tabellen"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Volgende"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index bb1f927..8b044ec 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -17,14 +17,246 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr ""
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+msgid "Done"
+msgstr ""
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+msgid "Prev"
+msgstr ""
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr ""
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+msgid "Today"
+msgstr ""
+
+#: js/messages.php:96
+msgid "January"
+msgstr ""
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+msgid "March"
+msgstr ""
+
+#: js/messages.php:99
+msgid "April"
+msgstr ""
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr ""
+
+#: js/messages.php:101
+msgid "June"
+msgstr ""
+
+#: js/messages.php:102
+msgid "July"
+msgstr ""
+
+#: js/messages.php:103
+msgid "August"
+msgstr ""
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+msgid "October"
+msgstr ""
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:119
+msgctxt "Short month name"
+msgid "May"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr ""
+
+#: js/messages.php:136
+msgid "Sunday"
+msgstr ""
+
+#: js/messages.php:137
+msgid "Monday"
+msgstr ""
+
+#: js/messages.php:138
+msgid "Tuesday"
+msgstr ""
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+msgid "Friday"
+msgstr ""
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+msgid "Su"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+msgid "Mo"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+msgid "Tu"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+msgid "We"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+msgid "Th"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+msgid "Fr"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+msgid "Sa"
+msgstr ""
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, possible-php-format
msgid ""
@@ -124,82 +356,6 @@ msgstr ""
msgid "EiB"
msgstr ""
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr ""
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2384,10 +2540,6 @@ msgstr ""
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr ""
-
#: libraries/messages.inc.php:552
#, possible-php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/pl.po b/po/pl.po
index f1b46d9..c7bb502 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Wykonaj"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Anuluj"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Przekazanie darowizny"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Poprzednie"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Następne"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Sumarycznie"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binarne "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Kwi"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Maj"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Cze"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Lip"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Sie"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Paź"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Sty"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Lut"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Kwi"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Maj"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Cze"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Lip"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Sie"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Wrz"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Paź"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Lis"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Gru"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Nie"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Pon"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Wto"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pią"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Nie"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Pon"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Wto"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Śro"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Czw"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pią"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sob"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Nie"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Pon"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Wto"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Śro"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Czw"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pią"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sob"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +410,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Nie"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Pon"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Wto"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Śro"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Czw"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pią"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sob"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Sty"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Lut"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Kwi"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Maj"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Cze"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Lip"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Sie"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Wrz"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Paź"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Lis"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Gru"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2491,10 +2693,6 @@ msgstr "Nazwa"
msgid "New table"
msgstr "Brak tabel"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Następne"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/pt.po b/po/pt.po
index 36a716b..879c75a 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,289 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Executa"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Dados"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Anterior"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Próximo"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binário "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Abr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Ago"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Out"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Fev"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Abr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Ago"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Set"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Out"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dez"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Dom"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Seg"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Ter"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Sex"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Dom"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Seg"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Ter"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Qua"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Qui"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Sex"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sab"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Dom"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Seg"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Ter"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Qua"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Qui"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Sex"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sab"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -125,82 +400,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Dom"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Seg"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Ter"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Qua"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Qui"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Sex"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sab"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Fev"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Abr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Ago"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Set"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Out"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dez"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2468,10 +2667,6 @@ msgstr "Nome"
msgid "New table"
msgstr "Sem tablelas"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Próximo"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 696ccdb..9c6d3df 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,289 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Executar"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Cancelar"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Dados"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Anterior"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Próximo"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Binário "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Abr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Ago"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Out"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Fev"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Abr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Ago"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Set"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Out"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dez"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Dom"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Seg"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Ter"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Sex"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Dom"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Seg"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Ter"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Qua"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Qui"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Sex"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sab"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Dom"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Seg"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Ter"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Qua"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Qui"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Sex"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sab"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +407,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Dom"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Seg"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Ter"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Qua"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Qui"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Sex"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sab"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Fev"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Abr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Ago"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Set"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Out"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dez"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2482,10 +2681,6 @@ msgstr "Nome"
msgid "New table"
msgstr "Nova tabela"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Próximo"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ro.po b/po/ro.po
index 2c3ad0c..618d05a 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -15,14 +15,291 @@ msgstr ""
"20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Execută"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Renunță"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Date"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Anterior"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Următorul"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Total"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binar"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Mai"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Iun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Iul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Oct"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Ian"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Mai"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Iun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Iul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Oct"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Noi"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Dum"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Lun"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Mar"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Vin"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Dum"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Lun"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Mar"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Mie"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Joi"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Vin"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sâm"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Dum"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Lun"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Mar"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Mie"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Joi"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Vin"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sâm"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -138,82 +415,6 @@ msgstr "PiO"
msgid "EiB"
msgstr "EiO"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Dum"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Lun"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Mie"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Joi"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Vin"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sâm"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Ian"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Mai"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Iun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Iul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Oct"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Noi"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2501,10 +2702,6 @@ msgstr "Nume"
msgid "New table"
msgstr "Nu există tabele"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Următorul"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ru.po b/po/ru.po
index bfb3c87..5073a5a 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -15,14 +15,292 @@ msgstr ""
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "OK"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Отмена"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Пожертвование"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Назад"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Следующий"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Всего"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Двоичный"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Мар"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Апр"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Май"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Июн"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Июл"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Авг"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Окт"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Янв"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Фев"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Мар"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Апр"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Май"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Июн"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Июл"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Авг"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Сен"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Окт"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Ноя"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Дек"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Вс"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Пн"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Вт"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Пт"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Вс"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Пн"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Вт"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Ср"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Чт"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Пт"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Сб"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Вс"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Пн"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Вт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Ср"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Чт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Пт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Сб"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Вики"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -133,82 +411,6 @@ msgstr "ПБ"
msgid "EiB"
msgstr "ЭБ"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Вс"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Пн"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Вт"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Ср"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Чт"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Пт"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Сб"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Янв"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Фев"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Мар"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Апр"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Май"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Июн"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Июл"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Авг"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Сен"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Окт"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Ноя"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Дек"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2507,10 +2709,6 @@ msgstr "Имя"
msgid "New table"
msgstr "Нет таблиц"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Следующий"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/si.po b/po/si.po
index 8401441..724bb99 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -13,14 +13,289 @@ msgstr ""
"Language: si\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "යන්න"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "දත්ත"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "පෙර"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "මීලඟ"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "මුළු එකතුව"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "ද්වීමය"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "මාර්තු"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "අප්රේල්"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "මැයි"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "ජූනි"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "ජූලි"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "අගෝස්තු"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "ඔක්තෝම්බර්"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "ජනවාරි"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "පෙබරවාරි"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "මාර්තු"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "අප්රේල්"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "මැයි"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "ජූනි"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "ජූලි"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "අගෝස්තු"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "සැප්තැම්බර්"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "ඔක්තෝම්බර්"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "නොවැම්බර්"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "දෙසැම්බර්"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "ඉරිදා"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "සදුදා"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "අගහරුවදා"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "සිකුරාදා:"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "ඉරිදා"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "සදුදා"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "අගහරුවදා"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "බදාදා"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "බ්රහස්පතින්දා"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "සිකුරාදා:"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "සෙනසුරාදා"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "ඉරිදා"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "සදුදා"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "අගහරුවදා"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "බදාදා"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "බ්රහස්පතින්දා"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "සිකුරාදා:"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "සෙනසුරාදා"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -130,82 +405,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "ඉරිදා"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "සදුදා"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "අගහරුවදා"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "බදාදා"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "බ්රහස්පතින්දා"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "සිකුරාදා:"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "සෙනසුරාදා"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "ජනවාරි"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "පෙබරවාරි"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "මාර්තු"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "අප්රේල්"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "මැයි"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "ජූනි"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "ජූලි"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "අගෝස්තු"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "සැප්තැම්බර්"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "ඔක්තෝම්බර්"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "නොවැම්බර්"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "දෙසැම්බර්"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2485,10 +2684,6 @@ msgstr "නම"
msgid "New table"
msgstr "වගු නොමැත"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "මීලඟ"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/sk.po b/po/sk.po
index 009324e..e4b0a85 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Vykonaj"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Zrušiť"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Žiadny"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Predchádzajúci"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Ďalší"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Celkom"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binárny"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Máj"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jún"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Júl"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Máj"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jún"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Júl"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ne"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Po"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Út"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pi"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ne"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Po"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Út"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "St"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Št"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pi"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "So"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ne"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Po"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Út"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "St"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Št"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pi"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "So"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -131,82 +409,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ne"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Po"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Út"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "St"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Št"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pi"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "So"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Máj"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jún"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Júl"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2487,10 +2689,6 @@ msgstr "Názov"
msgid "New table"
msgstr "Žiadne tabuľky"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Ďalší"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/sl.po b/po/sl.po
index be5db5b..22cdb9f 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-05-03 00:45+0200\n"
"Last-Translator: <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
@@ -15,14 +15,290 @@ msgstr ""
"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Izvedi"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Prekliči"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Daruj"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Prejšnji"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Naslednji"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Skupaj"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Dvojiško"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "maj"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "avg"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "maj"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "avg"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ned"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Pon"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+m
sgstr "Tor"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pet"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ned"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Pon"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Tor"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Sre"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Čet"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pet"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sob"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ned"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Pon"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Tor"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Sre"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Čet"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pet"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sob"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -133,82 +409,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ned"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Pon"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Tor"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Sre"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Čet"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pet"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sob"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "maj"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "avg"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2448,10 +2648,6 @@ msgstr "Ime"
msgid "New table"
msgstr "Nova tabela"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Naslednji"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/sq.po b/po/sq.po
index c77c8a6..7a54e3f 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,290 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Zbato"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Asnjë lloj"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Paraardhësi"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Në vazhdim"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Gjithsej"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binar"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Pri"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Maj"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Qer"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Kor"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Gsh"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Tet"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Shk"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Pri"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Maj"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Qer"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Kor"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Gsh"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sht"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Tet"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nën"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dhj"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Djl"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Hën"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Mar"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pre"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Djl"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Hën"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Mar"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Mër"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Enj"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pre"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sht"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Djl"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Hën"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Mar"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Mër"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Enj"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pre"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sht"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -127,82 +403,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Djl"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Hën"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Mër"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Enj"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pre"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sht"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Shk"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Pri"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Maj"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Qer"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Kor"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Gsh"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sht"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Tet"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nën"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dhj"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2460,10 +2660,6 @@ msgstr "Emri"
msgid "New table"
msgstr "Asnjë tabelë"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Në vazhdim"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/sr.po b/po/sr.po
index 9f3502a..9dcd182 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -15,14 +15,289 @@ msgstr ""
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Крени"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Откажи"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Подаци"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Претходна"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Следећи"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Укупно"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Бинарни"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "мар"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "апр"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "мај"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "јун"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "јул"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "авг"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "окт"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "јан"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "феб"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "мар"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "апр"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "мај"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "јун"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "јул"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "авг"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "сеп"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "окт"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "нов"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "дец"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Нед"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Пон"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Уто"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Пет"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Нед"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Пон"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Уто"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Сре"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Чет"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Пет"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Суб"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Нед"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Пон"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Уто"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Сре"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Чет"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Пет"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Суб"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +407,6 @@ msgstr "ПБ"
msgid "EiB"
msgstr "ЕБ"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Нед"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Пон"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Уто"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Сре"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Чет"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Пет"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Суб"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "јан"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "феб"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "мар"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "апр"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "мај"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "јун"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "јул"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "авг"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "сеп"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "окт"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "нов"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "дец"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2487,10 +2686,6 @@ msgstr "Име"
msgid "New table"
msgstr "Нема табела"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Следећи"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index 6d1b1bb..339f33e 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -15,14 +15,289 @@ msgstr ""
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Kreni"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Otkaži"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Podaci"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Prethodna"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Sledeći"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Ukupno"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binarni"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "maj"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "avg"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "maj"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "avg"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ned"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Pon"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Uto"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Pet"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ned"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Pon"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Uto"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Sre"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Čet"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Pet"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sub"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ned"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Pon"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Uto"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Sre"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Čet"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Pet"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sub"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +407,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ned"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Pon"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Uto"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Sre"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Čet"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Pet"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sub"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "maj"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "avg"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2488,10 +2687,6 @@ msgstr "Ime"
msgid "New table"
msgstr "Nema tabela"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Sledeći"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/sv.po b/po/sv.po
index d4840f7..567105c 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Kör"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Avbryt"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Donera"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Föregående"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Nästa"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Totalt"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binär"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "mars"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "april"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "maj"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "juni"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "juli"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "augusti"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "oktober"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "januari"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "februari"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "mars"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "april"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "maj"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "juni"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "juli"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "augusti"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "september"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "oktober"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "november"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "december"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Sön"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Mån"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Tis"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Fre"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Sön"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Mån"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Tis"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Ons"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Tors"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Fre"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Lör"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Sön"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Mån"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Tis"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Ons"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Tors"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Fre"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Lör"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Wiki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -132,82 +410,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Sön"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Mån"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Tis"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Ons"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Tors"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Fre"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Lör"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "januari"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "februari"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "mars"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "april"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "maj"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "juni"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "juli"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "augusti"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "september"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "oktober"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "november"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "december"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2497,10 +2699,6 @@ msgstr "Namn"
msgid "New table"
msgstr "Inga tabeller"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Nästa"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ta.po b/po/ta.po
index 5d3b279..8680529 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan <sutharshan02(a)gmail.com>\n"
"Language-Team: Tamil <ta(a)li.org>\n"
@@ -17,14 +17,284 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr ""
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "விலக்கு"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+msgid "Done"
+msgstr ""
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+msgid "Prev"
+msgstr ""
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr ""
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+msgid "Today"
+msgstr ""
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Jan"
+msgid "January"
+msgstr "தை"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "பங்குனி"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "சித்திரை"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "வைகாசி"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "ஆணி"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "ஆடி"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "ஆவணி"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "ஐப்பசி"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "தை"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "மாசி"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "பங்குனி"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "சித்திரை"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "வைகாசி"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "ஆணி"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "ஆடி"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "ஆவணி"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "புரட்டாதி"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "ஐப்பசி"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "காத்திகை"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "மார்கழி"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "ஞாயிறு"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "திங்கள்"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "செவ்வாய்"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "வெள்ளி"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "ஞாயிறு"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "திங்கள்"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "செவ்வாய்"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "புதன்"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "வியாழன்"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "வெள்ளி"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "சனி"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "ஞாயிறு"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "திங்கள்"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "செவ்வாய்"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "புதன்"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "வியாழன்"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "வெள்ளி"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "சனி"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -129,82 +399,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "ஞாயிறு"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "திங்கள்"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "செவ்வாய்"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "புதன்"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "வியாழன்"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "வெள்ளி"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "சனி"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "தை"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "மாசி"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "பங்குனி"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "சித்திரை"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "வைகாசி"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "ஆணி"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "ஆடி"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "ஆவணி"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "புரட்டாதி"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "ஐப்பசி"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "காத்திகை"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "மார்கழி"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2389,10 +2583,6 @@ msgstr ""
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr ""
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/te.po b/po/te.po
index 6b91f3a..b895c88 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -17,14 +17,292 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "వెళ్ళు"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "రద్దుచేయి"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+msgid "Done"
+msgstr ""
+
+# మొదటి అనువాదము
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "క్రితము"
+
+# మొదటి అనువాదము
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "తదుపరి"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "మొత్తం"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Jan"
+msgid "January"
+msgstr "జన"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "మార్చి"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "ఏప్రి"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "మే"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "జూన్"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "జూలై"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "ఆగ"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "అక్టో"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "జన"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "ఫిబ్ర"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "మార్చి"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "ఏప్రి"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "మే"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "జూన్"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "జూలై"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "ఆగ"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "సెప్టె"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "అక్టో"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "నవం"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "డిసెం"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "ఆది"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "సోమ"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "మంగళ"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "శుక్ర"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "ఆది"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "సోమ"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "మంగళ"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "బుధ"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "గురు"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "శుక్ర"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "శని"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "ఆది"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "సోమ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "మంగళ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "బుధ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "గురు"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "శుక్ర"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "శని"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "వికీ"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -124,82 +402,6 @@ msgstr ""
msgid "EiB"
msgstr ""
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "ఆది"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "సోమ"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "మంగళ"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "బుధ"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "గురు"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "శుక్ర"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "శని"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "జన"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "ఫిబ్ర"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "మార్చి"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "ఏప్రి"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "మే"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "జూన్"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "జూలై"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "ఆగ"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "సెప్టె"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "అక్టో"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "నవం"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "డిసెం"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2414,11 +2616,6 @@ msgstr "పేరు"
msgid "New table"
msgstr ""
-# మొదటి అనువాదము
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "తదుపరి"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/th.po b/po/th.po
index 55fab40..32cd0ef 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "ลงมือ"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "ไม่มี"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "ก่อนหน้า"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "ต่อไป"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "รวม"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " ข้อมูลไบนารี "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "มี.ค."
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "เม.ย."
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "พ.ค."
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "มิ.ย."
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "ก.ค."
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "ส.ค."
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "ต.ค."
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "ม.ค."
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "ก.พ."
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "มี.ค."
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "เม.ย."
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "พ.ค."
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "มิ.ย."
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "ก.ค."
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "ส.ค."
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "ก.ย."
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "ต.ค."
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "พ.ย."
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "ธ.ค."
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "อา."
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "จ."
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "อ."
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "ศ."
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "อา."
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "จ."
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "อ."
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "พ."
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "พฤ."
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "ศ."
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "ส."
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "อา."
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "จ."
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "อ."
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "พ."
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "พฤ."
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "ศ."
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "ส."
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -123,82 +399,6 @@ msgstr "เพตตะไบต์"
msgid "EiB"
msgstr "เอกซะไบต์"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "อา."
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "จ."
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "อ."
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "พ."
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "พฤ."
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "ศ."
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "ส."
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "ม.ค."
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "ก.พ."
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "มี.ค."
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "เม.ย."
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "พ.ค."
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "มิ.ย."
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "ก.ค."
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "ส.ค."
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "ก.ย."
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "ต.ค."
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "พ.ย."
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "ธ.ค."
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2435,10 +2635,6 @@ msgstr "ชื่อ"
msgid "New table"
msgstr "ไม่มีตาราง"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "ต่อไป"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/tr.po b/po/tr.po
index d24afe8..cf02d53 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Git"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "İptal"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Bağış"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Önceki"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "İleri"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Toplam"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binari"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mart"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Nis"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "May"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Haz"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Tem"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Ağu"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Ekim"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Ocak"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Şubat"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mart"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Nis"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "May"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Haz"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Tem"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Ağu"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Eylül"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Ekim"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Kas"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Ara"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Paz"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Ptesi"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Salı"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Cu"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Paz"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Ptesi"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Salı"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Çar"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Per"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Cu"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Ctesi"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Paz"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Ptesi"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Salı"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Çar"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Per"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Cu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Ctesi"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Viki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -126,82 +404,6 @@ msgstr "PiB"
msgid "EiB"
msgstr "EiB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Paz"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Ptesi"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Salı"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Çar"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Per"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Cu"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Ctesi"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Ocak"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Şubat"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mart"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Nis"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "May"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Haz"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Tem"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Ağu"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Eylül"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Ekim"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Kas"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Ara"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2504,10 +2706,6 @@ msgstr "İsim"
msgid "New table"
msgstr "Yeni tablo"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "İleri"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/tt.po b/po/tt.po
index 6db2648..b213e6c 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,289 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Äydä"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+msgid "Done"
+msgstr "Eçtälek"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Uzğan"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Kiläse"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Tulayım"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Binar"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Äpr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "May"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Yün"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Yül"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Ökt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Ğın"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Äpr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "May"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Yün"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Yül"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sen"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Ökt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nöy"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dek"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Ykş"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Dşm"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Sşm"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Cmğ"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Ykş"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Dşm"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Sşm"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Çrş"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Pnc"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Cmğ"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Şmb"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Ykş"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Dşm"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Sşm"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Çrş"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Pnc"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Cmğ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Şmb"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -129,82 +404,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Ykş"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Dşm"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Sşm"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Çrş"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Pnc"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Cmğ"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Şmb"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Ğın"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Äpr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "May"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Yün"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Yül"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sen"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Ökt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nöy"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dek"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2476,10 +2675,6 @@ msgstr "Adı"
msgid "New table"
msgstr "Berär genä dä tüşämä yuq"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Kiläse"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/uk.po b/po/uk.po
index 553bef5..3069023 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "Вперед"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "Немає"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Назад"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Дальше"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Разом"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr " Двійковий "
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Бер"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Квт"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Трв"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Чрв"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Лип"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Сер"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Жов"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Січ"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Лют"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Бер"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Квт"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Трв"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Чрв"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Лип"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Сер"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Вер"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Жов"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Лис"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Гру"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Нд"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Пн"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Вт"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Пт"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Нд"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Пн"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Вт"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Ср"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Чт"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Пт"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Сб"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Нд"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Пн"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Вт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Ср"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Чт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Пт"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Сб"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -123,82 +399,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Нд"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Пн"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Вт"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Ср"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Чт"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Пт"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Сб"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Січ"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Лют"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Бер"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Квт"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Трв"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Чрв"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Лип"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Сер"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Вер"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Жов"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Лис"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Гру"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2423,10 +2623,6 @@ msgstr "Назва"
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Дальше"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/ur.po b/po/ur.po
index 6d642fc..512237b 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+0200\n"
"PO-Revision-Date: 2010-04-09 14:02+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Urdu <ur(a)li.org>\n"
@@ -17,14 +17,246 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr ""
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+msgid "Done"
+msgstr ""
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+msgid "Prev"
+msgstr ""
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr ""
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+msgid "Today"
+msgstr ""
+
+#: js/messages.php:96
+msgid "January"
+msgstr ""
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+msgid "March"
+msgstr ""
+
+#: js/messages.php:99
+msgid "April"
+msgstr ""
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr ""
+
+#: js/messages.php:101
+msgid "June"
+msgstr ""
+
+#: js/messages.php:102
+msgid "July"
+msgstr ""
+
+#: js/messages.php:103
+msgid "August"
+msgstr ""
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+msgid "October"
+msgstr ""
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:119
+msgctxt "Short month name"
+msgid "May"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr ""
+
+#: js/messages.php:136
+msgid "Sunday"
+msgstr ""
+
+#: js/messages.php:137
+msgid "Monday"
+msgstr ""
+
+#: js/messages.php:138
+msgid "Tuesday"
+msgstr ""
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+msgid "Friday"
+msgstr ""
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/mes
sages.php:162
+msgid "Su"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+msgid "Mo"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+msgid "Tu"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+msgid "We"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+msgid "Th"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+msgid "Fr"
+msgstr ""
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+msgid "Sa"
+msgstr ""
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -124,82 +356,6 @@ msgstr ""
msgid "EiB"
msgstr ""
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr ""
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr ""
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr ""
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2384,10 +2540,6 @@ msgstr ""
msgid "New table"
msgstr ""
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr ""
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/uz.po b/po/uz.po
index 678ffc3..9addab0 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "OK"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Бекор қилиш"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Садақа"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Орқага"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Кейинги"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Жами"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Иккилик"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Мар"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Апр"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "Май"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Июн"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Июл"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Авг"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Окт"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Янв"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Фев"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Мар"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Апр"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "Май"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Июн"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Июл"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Авг"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Сен"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Окт"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Ноя"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Дек"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Якш"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Душ"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Сеш"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Жум"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Якш"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Душ"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Сеш"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Чор"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Пай"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Жум"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Шан"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Якш"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Душ"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Сеш"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Чор"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Пай"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Жум"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Шан"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Вики"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -131,82 +409,6 @@ msgstr "ПБ"
msgid "EiB"
msgstr "ЭБ"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Якш"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Душ"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Сеш"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Чор"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Пай"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Жум"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Шан"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Янв"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Фев"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Мар"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Апр"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "Май"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Июн"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Июл"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Авг"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Сен"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Окт"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Ноя"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Дек"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2519,10 +2721,6 @@ msgstr "Номи"
msgid "New table"
msgstr "Янги жадвал"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Кейинги"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index 1037ab4..373c4fa 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,292 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "OK"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "Bekor qilish"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "Sadaqa"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "Orqaga"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "Keyingi"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "Jami"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "Ikkilik"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "May"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Iyun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Iyul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Avg"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Okt"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Yanv"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Fev"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "May"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Iyun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Iyul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Avg"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sen"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Okt"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Noya"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dek"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Yaksh"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Dush"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Sesh"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Jum"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Yaksh"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Dush"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Sesh"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Chor"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Pay"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Jum"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Shan"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Yaksh"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Dush"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Sesh"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Chor"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Pay"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Jum"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Shan"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "Viki"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -131,82 +409,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Yaksh"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Dush"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Sesh"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Chor"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Pay"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Jum"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Shan"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Yanv"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Fev"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "May"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Iyun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Iyul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Avg"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sen"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Okt"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Noya"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dek"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2532,10 +2734,6 @@ msgstr "Nomi"
msgid "New table"
msgstr "Yangi jadval"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "Keyingi"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index a96576c..cad5f6f 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -14,14 +14,292 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "执行"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr "取消"
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "Donate"
+msgid "Done"
+msgstr "捐助 (外链,英文)"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "上一个"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "下一个"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "总计"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "二进制"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "三月"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "四月"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "五月"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "六月"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "七月"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "八月"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "十月"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "一月"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "二月"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "三月"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "四月"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "五月"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "六月"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "七月"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "八月"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "九月"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "十月"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "十一月"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "十二月"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "周日"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "周一"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "周二"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "周五"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "周日"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "周一"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "周二"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "周三"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "周四"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "周五"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "周六"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "周日"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "周一"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "周二"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "周三"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "周四"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "周五"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "周六"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+#, fuzzy
+#| msgid "Wiki"
+msgid "Wk"
+msgstr "维基 (Wiki) (外链,英文)"
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -121,82 +399,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "周日"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "周一"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "周二"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "周三"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "周四"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "周五"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "周六"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "一月"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "二月"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "三月"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "四月"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "五月"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "六月"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "七月"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "八月"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "九月"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "十月"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "十一月"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "十二月"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2432,10 +2634,6 @@ msgstr "名字"
msgid "New table"
msgstr "新数据表"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "下一个"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 8077ff3..2361839 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-05-03 14:00+0200\n"
+"POT-Creation-Date: 2010-05-03 14:46+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"
@@ -12,14 +12,290 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Translate Toolkit 1.5.3\n"
-#: js/messages.php:50 libraries/messages.inc.php:369
+#: js/messages.php:63 libraries/messages.inc.php:369
msgid "Go"
msgstr "執行"
-#: js/messages.php:51 libraries/messages.inc.php:131
+#: js/messages.php:64 libraries/messages.inc.php:131
msgid "Cancel"
msgstr ""
+#. l10n: Display text for calendar close link
+#: js/messages.php:87
+#, fuzzy
+#| msgid "None"
+msgid "Done"
+msgstr "不適用"
+
+#. l10n: Display text for previous month link in calendar
+#: js/messages.php:89
+#, fuzzy
+#| msgid "Previous"
+msgid "Prev"
+msgstr "前一頁"
+
+#. l10n: Display text for next month link in calendar
+#: js/messages.php:91 libraries/messages.inc.php:551
+msgid "Next"
+msgstr "下一個"
+
+#. l10n: Display text for current month link in calendar
+#: js/messages.php:93
+#, fuzzy
+#| msgid "Total"
+msgid "Today"
+msgstr "總共"
+
+#: js/messages.php:96
+#, fuzzy
+#| msgid "Binary"
+msgid "January"
+msgstr "二進制碼"
+
+#: js/messages.php:97
+msgid "February"
+msgstr ""
+
+#: js/messages.php:98
+#, fuzzy
+#| msgid "Mar"
+msgid "March"
+msgstr "Mar"
+
+#: js/messages.php:99
+#, fuzzy
+#| msgid "Apr"
+msgid "April"
+msgstr "Apr"
+
+#: js/messages.php:100 libraries/messages.inc.php:28
+msgid "May"
+msgstr "May"
+
+#: js/messages.php:101
+#, fuzzy
+#| msgid "Jun"
+msgid "June"
+msgstr "Jun"
+
+#: js/messages.php:102
+#, fuzzy
+#| msgid "Jul"
+msgid "July"
+msgstr "Jul"
+
+#: js/messages.php:103
+#, fuzzy
+#| msgid "Aug"
+msgid "August"
+msgstr "Aug"
+
+#: js/messages.php:104
+msgid "September"
+msgstr ""
+
+#: js/messages.php:105
+#, fuzzy
+#| msgid "Oct"
+msgid "October"
+msgstr "Oct"
+
+#: js/messages.php:106
+msgid "November"
+msgstr ""
+
+#: js/messages.php:107
+msgid "December"
+msgstr ""
+
+#. l10n: Short month name
+#: js/messages.php:111 libraries/messages.inc.php:28
+msgid "Jan"
+msgstr "Jan"
+
+#. l10n: Short month name
+#: js/messages.php:113 libraries/messages.inc.php:28
+msgid "Feb"
+msgstr "Feb"
+
+#. l10n: Short month name
+#: js/messages.php:115 libraries/messages.inc.php:28
+msgid "Mar"
+msgstr "Mar"
+
+#. l10n: Short month name
+#: js/messages.php:117 libraries/messages.inc.php:28
+msgid "Apr"
+msgstr "Apr"
+
+#. l10n: Short month name
+#: js/messages.php:119
+#, fuzzy
+#| msgid "May"
+msgctxt "Short month name"
+msgid "May"
+msgstr "May"
+
+#. l10n: Short month name
+#: js/messages.php:121 libraries/messages.inc.php:28
+msgid "Jun"
+msgstr "Jun"
+
+#. l10n: Short month name
+#: js/messages.php:123 libraries/messages.inc.php:28
+msgid "Jul"
+msgstr "Jul"
+
+#. l10n: Short month name
+#: js/messages.php:125 libraries/messages.inc.php:28
+msgid "Aug"
+msgstr "Aug"
+
+#. l10n: Short month name
+#: js/messages.php:127 libraries/messages.inc.php:28
+msgid "Sep"
+msgstr "Sep"
+
+#. l10n: Short month name
+#: js/messages.php:129 libraries/messages.inc.php:28
+msgid "Oct"
+msgstr "Oct"
+
+#. l10n: Short month name
+#: js/messages.php:131 libraries/messages.inc.php:28
+msgid "Nov"
+msgstr "Nov"
+
+#. l10n: Short month name
+#: js/messages.php:133 libraries/messages.inc.php:28
+msgid "Dec"
+msgstr "Dec"
+
+#: js/messages.php:136
+#, fuzzy
+#| msgid "Sun"
+msgid "Sunday"
+msgstr "Sun"
+
+#: js/messages.php:137
+#, fuzzy
+#| msgid "Mon"
+msgid "Monday"
+msgstr "Mon"
+
+#: js/messages.php:138
+#, fuzzy
+#| msgid "Tue"
+msgid "Tuesday"
+msgstr "Tue"
+
+#: js/messages.php:139
+msgid "Wednesday"
+msgstr ""
+
+#: js/messages.php:140
+msgid "Thursday"
+msgstr ""
+
+#: js/messages.php:141
+#, fuzzy
+#| msgid "Fri"
+msgid "Friday"
+msgstr "Fri"
+
+#: js/messages.php:142
+msgid "Saturday"
+msgstr ""
+
+#. l10n: Short week day name
+#: js/messages.php:146 libraries/messages.inc.php:27
+msgid "Sun"
+msgstr "Sun"
+
+#. l10n: Short week day name
+#: js/messages.php:148 libraries/messages.inc.php:27
+msgid "Mon"
+msgstr "Mon"
+
+#. l10n: Short week day name
+#: js/messages.php:150 libraries/messages.inc.php:27
+msgid "Tue"
+msgstr "Tue"
+
+#. l10n: Short week day name
+#: js/messages.php:152 libraries/messages.inc.php:27
+msgid "Wed"
+msgstr "Wed"
+
+#. l10n: Short week day name
+#: js/messages.php:154 libraries/messages.inc.php:27
+msgid "Thu"
+msgstr "Thu"
+
+#. l10n: Short week day name
+#: js/messages.php:156 libraries/messages.inc.php:27
+msgid "Fri"
+msgstr "Fri"
+
+#. l10n: Short week day name
+#: js/messages.php:158 libraries/messages.inc.php:27
+msgid "Sat"
+msgstr "Sat"
+
+#. l10n: Minimal week day name
+#: js/messages.php:162
+#, fuzzy
+#| msgid "Sun"
+msgid "Su"
+msgstr "Sun"
+
+#. l10n: Minimal week day name
+#: js/messages.php:164
+#, fuzzy
+#| msgid "Mon"
+msgid "Mo"
+msgstr "Mon"
+
+#. l10n: Minimal week day name
+#: js/messages.php:166
+#, fuzzy
+#| msgid "Tue"
+msgid "Tu"
+msgstr "Tue"
+
+#. l10n: Minimal week day name
+#: js/messages.php:168
+#, fuzzy
+#| msgid "Wed"
+msgid "We"
+msgstr "Wed"
+
+#. l10n: Minimal week day name
+#: js/messages.php:170
+#, fuzzy
+#| msgid "Thu"
+msgid "Th"
+msgstr "Thu"
+
+#. l10n: Minimal week day name
+#: js/messages.php:172
+#, fuzzy
+#| msgid "Fri"
+msgid "Fr"
+msgstr "Fri"
+
+#. l10n: Minimal week day name
+#: js/messages.php:174
+#, fuzzy
+#| msgid "Sat"
+msgid "Sa"
+msgstr "Sat"
+
+#. l10n: Column header for week of the year in calendar
+#: js/messages.php:176
+msgid "Wk"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:107
#, php-format
msgid ""
@@ -128,82 +404,6 @@ msgstr "PB"
msgid "EiB"
msgstr "EB"
-#: libraries/messages.inc.php:27
-msgid "Sun"
-msgstr "Sun"
-
-#: libraries/messages.inc.php:27
-msgid "Mon"
-msgstr "Mon"
-
-#: libraries/messages.inc.php:27
-msgid "Tue"
-msgstr "Tue"
-
-#: libraries/messages.inc.php:27
-msgid "Wed"
-msgstr "Wed"
-
-#: libraries/messages.inc.php:27
-msgid "Thu"
-msgstr "Thu"
-
-#: libraries/messages.inc.php:27
-msgid "Fri"
-msgstr "Fri"
-
-#: libraries/messages.inc.php:27
-msgid "Sat"
-msgstr "Sat"
-
-#: libraries/messages.inc.php:28
-msgid "Jan"
-msgstr "Jan"
-
-#: libraries/messages.inc.php:28
-msgid "Feb"
-msgstr "Feb"
-
-#: libraries/messages.inc.php:28
-msgid "Mar"
-msgstr "Mar"
-
-#: libraries/messages.inc.php:28
-msgid "Apr"
-msgstr "Apr"
-
-#: libraries/messages.inc.php:28
-msgid "May"
-msgstr "May"
-
-#: libraries/messages.inc.php:28
-msgid "Jun"
-msgstr "Jun"
-
-#: libraries/messages.inc.php:28
-msgid "Jul"
-msgstr "Jul"
-
-#: libraries/messages.inc.php:28
-msgid "Aug"
-msgstr "Aug"
-
-#: libraries/messages.inc.php:28
-msgid "Sep"
-msgstr "Sep"
-
-#: libraries/messages.inc.php:28
-msgid "Oct"
-msgstr "Oct"
-
-#: libraries/messages.inc.php:28
-msgid "Nov"
-msgstr "Nov"
-
-#: libraries/messages.inc.php:28
-msgid "Dec"
-msgstr "Dec"
-
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
@@ -2440,10 +2640,6 @@ msgstr "名稱"
msgid "New table"
msgstr "沒有資料表"
-#: libraries/messages.inc.php:551
-msgid "Next"
-msgstr "下一個"
-
#: libraries/messages.inc.php:552
#, php-format
msgid "No activity within %s seconds; please log in again"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-2473-gab57b74
by Marc Delisle 03 May '10
by Marc Delisle 03 May '10
03 May '10
The branch, master has been updated
via ab57b74d4094a6b4a41ff85ce50715b64ee2deea (commit)
from 08892388fe88d5fcd57d2aa079a5cd93851ccdd9 (commit)
- Log -----------------------------------------------------------------
commit ab57b74d4094a6b4a41ff85ce50715b64ee2deea
Author: Marc Delisle <marc(a)infomarc.info>
Date: Mon May 3 07:35:37 2010 -0400
similar messages had been merged
-----------------------------------------------------------------------
Summary of changes:
server_privileges.php | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/server_privileges.php b/server_privileges.php
index 78f7d90..a1481bf 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -480,7 +480,7 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = TRUE)
array('Show_view', 'SHOW VIEW', $GLOBALS['strPrivDescShowView']),
array('Create_routine', 'CREATE ROUTINE', $GLOBALS['strPrivDescCreateRoutine']),
array('Alter_routine', 'ALTER ROUTINE', $GLOBALS['strPrivDescAlterRoutine']),
- array('Execute', 'EXECUTE', $GLOBALS['strPrivDescExecute5']),
+ array('Execute', 'EXECUTE', $GLOBALS['strPrivDescExecute']),
);
// this one is for a db-specific priv: Create_view_priv
if (isset($row['Create_view_priv'])) {
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-2472-g0889238
by Michal Čihař 03 May '10
by Michal Čihař 03 May '10
03 May '10
The branch, master has been updated
via 08892388fe88d5fcd57d2aa079a5cd93851ccdd9 (commit)
via dccb9b2ad5f99420bf956756a16e5f97064e49c5 (commit)
via 82c44598eb1a9d330e47b3ce317bdce547c0ae11 (commit)
via 93bec41a9e55faff3eeb792ad78dbb68899692bc (commit)
via c0ae6a93331a52bbbd38fd11146fb2739b74a727 (commit)
from f44a58726305e6ce836f5d1ea18a332cc8ccf280 (commit)
- Log -----------------------------------------------------------------
commit 08892388fe88d5fcd57d2aa079a5cd93851ccdd9
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 3 10:12:20 2010 +0200
Translation update done using Pootle.
commit dccb9b2ad5f99420bf956756a16e5f97064e49c5
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 3 10:12:16 2010 +0200
Translation update done using Pootle.
commit 82c44598eb1a9d330e47b3ce317bdce547c0ae11
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 3 10:12:03 2010 +0200
Translation update done using Pootle.
commit 93bec41a9e55faff3eeb792ad78dbb68899692bc
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 3 10:11:48 2010 +0200
Translation update done using Pootle.
commit c0ae6a93331a52bbbd38fd11146fb2739b74a727
Author: sven.erik.andersen <sven.erik.andersen(a)gmail.com>
Date: Mon May 3 10:11:36 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/nb.po | 65 +++++--------------------------------------------------------
1 files changed, 6 insertions(+), 59 deletions(-)
diff --git a/po/nb.po b/po/nb.po
index fe82b62..f7988ca 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -4,13 +4,13 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-20 07:54+0200\n"
-"PO-Revision-Date: 2010-04-06 14:28+0200\n"
+"PO-Revision-Date: 2010-05-03 10:12+0200\n"
"Last-Translator: <sven.erik.andersen(a)gmail.com>\n"
"Language-Team: norwegian <no(a)li.org>\n"
+"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -5938,19 +5938,18 @@ msgstr "Jokertegnene _ og % må beskyttes med en \\ for å bruke dem direkte"
#: server_synchronize.php:1129
msgid "Enter manually"
-msgstr ""
+msgstr "Skriv inn manuelt"
#: server_synchronize.php:1130
-#, fuzzy
#| msgid "Insecure connection"
msgid "Current connection"
-msgstr "Usikker tilkobling"
+msgstr "Nåværende tilkobling"
#: server_synchronize.php:1159
-#, fuzzy, php-format
+#, php-format
#| msgid "Configuration file"
msgid "Configuration: %s"
-msgstr "Konfigurasjonsfil"
+msgstr "Konfigurasjon: %s"
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
@@ -7704,13 +7703,11 @@ msgid "ZIP"
msgstr "ZIP"
#: tbl_relation.php:405
-#, fuzzy
#| msgid "Internal relations"
msgid "Internal relation"
msgstr "Interne relasjoner"
#: tbl_relation.php:413
-#, fuzzy
#| msgid "Foreign key limit"
msgid "Foreign key constraint"
msgstr "Fremmednøkkelbegrensning"
@@ -7772,53 +7769,3 @@ msgstr "Fremmednøkkelbegrensning"
#~ msgid "Tracking Mechanism"
#~ msgstr "Overvåkningsmekanisme"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT * query"
-#~ msgid "Select all"
-#~ msgstr "Velg alle"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT ... query"
-#~ msgid "Select"
-#~ msgstr "Velg alle"
-
-#, fuzzy
-#~| msgid "Insert"
-#~ msgctxt "Create INSERT query"
-#~ msgid "Insert"
-#~ msgstr "Sett inn"
-
-#, fuzzy
-#~| msgid "Updated"
-#~ msgctxt "Create UPDATE query"
-#~ msgid "Update"
-#~ msgstr "Oppdatert"
-
-#, fuzzy
-#~| msgid "Delete"
-#~ msgctxt "Create DELETE query"
-#~ msgid "Delete"
-#~ msgstr "Slett"
-
-#~ msgid "%1$d row(s) affected."
-#~ msgstr "%1$d rad(er) berørt."
-
-#~ msgid "utf-8"
-#~ msgstr "utf-8"
-
-#~ msgid "Jan0"
-#~ msgstr "Jan0"
-
-#~ msgid "Jan1"
-#~ msgstr "Jan1"
-
-#~ msgid "Jan2"
-#~ msgstr "Jan2"
-
-#~ msgid ""
-#~ "Structure Difference' ;\n"
-#~ "$strStructureForView = 'Structure for view"
-#~ msgstr "Strukturdifferanse"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin localized documentation branch, master, updated. 4749a478a64691b14a3ae29ce353ecd5b91a2cbf
by Michal Čihař 03 May '10
by Michal Čihař 03 May '10
03 May '10
The branch, master has been updated
via 4749a478a64691b14a3ae29ce353ecd5b91a2cbf (commit)
via 4b48cc5ba3f980e5ca6ff3c07fdbd1ced5fc4aa5 (commit)
via b77af8872be92de143eda76341711aec36e2afd6 (commit)
via f8ad225996bd7f3ef82968120f2aaebc877b65e5 (commit)
via ff4395e6ea2867a3e71d940b3bfdee30db7adba8 (commit)
via 1873f4b842c270de263e3f6d96eab420ef7ab051 (commit)
via 73f1c343e4efa90fc4851f6edccc5b78a334228e (commit)
via 8e4d2bf0d975f2d60fd511192d2e00ca49a7de3e (commit)
via c826fe539ea51c58a556f1167ae93056b0b05247 (commit)
via 8e44a0d7c6fa09ba4d021281af8a52db990e59ad (commit)
via 31fb99bf3d84e6e744bf3f6a010e00c3ba47b29f (commit)
via 7e0fb0ff2d51c33dce12fa9c203ccc6980040bdf (commit)
via 8f477556627a62bbf06b3b8d9885a5f76fa35b5a (commit)
via a46fafb32f39fab5a217a928b444e817b22ff556 (commit)
via 8f7d1e004a140d5b31c5738363502d7db64b74cf (commit)
via 68e35bc3fb921dc741e73e60f69647d5dda3aaa8 (commit)
via 6ff5f590c88f50e4ffe1a11fb34c965c473f9e50 (commit)
via 88e764ed8319a43baaa3d94288fe494cc7f1415f (commit)
from 24eea6f4412af99ddf0f2777c849e337b136b61a (commit)
- Log -----------------------------------------------------------------
commit 4749a478a64691b14a3ae29ce353ecd5b91a2cbf
Author: Michal Čihař <mcihar(a)novell.com>
Date: Mon May 3 08:42:22 2010 +0200
Regenerate docs.
commit 4b48cc5ba3f980e5ca6ff3c07fdbd1ced5fc4aa5
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 03:02:22 2010 +0200
Translation update done using Pootle.
commit b77af8872be92de143eda76341711aec36e2afd6
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 03:01:45 2010 +0200
Translation update done using Pootle.
commit f8ad225996bd7f3ef82968120f2aaebc877b65e5
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 03:00:29 2010 +0200
Translation update done using Pootle.
commit ff4395e6ea2867a3e71d940b3bfdee30db7adba8
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:58:58 2010 +0200
Translation update done using Pootle.
commit 1873f4b842c270de263e3f6d96eab420ef7ab051
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:58:03 2010 +0200
Translation update done using Pootle.
commit 73f1c343e4efa90fc4851f6edccc5b78a334228e
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:54:18 2010 +0200
Translation update done using Pootle.
commit 8e4d2bf0d975f2d60fd511192d2e00ca49a7de3e
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:52:40 2010 +0200
Translation update done using Pootle.
commit c826fe539ea51c58a556f1167ae93056b0b05247
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:51:21 2010 +0200
Translation update done using Pootle.
commit 8e44a0d7c6fa09ba4d021281af8a52db990e59ad
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:48:13 2010 +0200
Translation update done using Pootle.
commit 31fb99bf3d84e6e744bf3f6a010e00c3ba47b29f
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:47:29 2010 +0200
Translation update done using Pootle.
commit 7e0fb0ff2d51c33dce12fa9c203ccc6980040bdf
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:46:40 2010 +0200
Translation update done using Pootle.
commit 8f477556627a62bbf06b3b8d9885a5f76fa35b5a
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:46:24 2010 +0200
Translation update done using Pootle.
commit a46fafb32f39fab5a217a928b444e817b22ff556
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:46:13 2010 +0200
Translation update done using Pootle.
commit 8f7d1e004a140d5b31c5738363502d7db64b74cf
Author: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>
Date: Sun May 2 02:45:56 2010 +0200
Translation update done using Pootle.
commit 68e35bc3fb921dc741e73e60f69647d5dda3aaa8
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 30 10:50:25 2010 +0200
Translation update done using Pootle.
commit 6ff5f590c88f50e4ffe1a11fb34c965c473f9e50
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 30 10:50:04 2010 +0200
Translation update done using Pootle.
commit 88e764ed8319a43baaa3d94288fe494cc7f1415f
Author: Michal Čihař <michal(a)cihar.com>
Date: Fri Apr 30 10:49:53 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
output/cs/Documentation.html | 11 ++++----
output/pt_BR/Documentation.html | 50 +++++++++++++++++++-------------------
output/pt_BR/translators.html | 4 +-
po/cs.po | 43 ++-------------------------------
po/pt_BR.po | 43 ++++++++++++++++++++++-----------
pot/ca-full.pot | 13 +---------
pot/ca-html.pot | 2 +-
pot/ca-txt.pot | 2 +-
pot/cs-full.pot | 13 +---------
pot/cs-html.pot | 2 +-
pot/cs-txt.pot | 2 +-
pot/de-full.pot | 13 +---------
pot/de-html.pot | 2 +-
pot/de-txt.pot | 2 +-
pot/en_GB-full.pot | 4 +-
pot/en_GB-html.pot | 2 +-
pot/en_GB-txt.pot | 2 +-
pot/es-full.pot | 13 +---------
pot/es-html.pot | 2 +-
pot/es-txt.pot | 2 +-
pot/fi-full.pot | 13 +---------
pot/fi-html.pot | 2 +-
pot/fi-txt.pot | 2 +-
pot/fr-full.pot | 13 +---------
pot/fr-html.pot | 2 +-
pot/fr-txt.pot | 2 +-
pot/gl-full.pot | 13 +---------
pot/gl-html.pot | 2 +-
pot/gl-txt.pot | 2 +-
pot/hu-full.pot | 13 +---------
pot/hu-html.pot | 2 +-
pot/hu-txt.pot | 2 +-
pot/hy-full.pot | 13 +---------
pot/hy-html.pot | 2 +-
pot/hy-txt.pot | 2 +-
pot/it-full.pot | 13 +---------
pot/it-html.pot | 2 +-
pot/it-txt.pot | 2 +-
pot/ja-full.pot | 13 +---------
pot/ja-html.pot | 2 +-
pot/ja-txt.pot | 2 +-
pot/ka-full.pot | 13 +---------
pot/ka-html.pot | 2 +-
pot/ka-txt.pot | 2 +-
pot/lt-full.pot | 13 +---------
pot/lt-html.pot | 2 +-
pot/lt-txt.pot | 2 +-
pot/mn-full.pot | 13 +---------
pot/mn-html.pot | 2 +-
pot/mn-txt.pot | 2 +-
pot/nb-full.pot | 13 +---------
pot/nb-html.pot | 2 +-
pot/nb-txt.pot | 2 +-
pot/nl-full.pot | 13 +---------
pot/nl-html.pot | 2 +-
pot/nl-txt.pot | 2 +-
pot/pl-full.pot | 13 +---------
pot/pl-html.pot | 2 +-
pot/pl-txt.pot | 2 +-
pot/pt_BR-full.pot | 13 +---------
pot/pt_BR-html.pot | 2 +-
pot/pt_BR-txt.pot | 2 +-
pot/ro-full.pot | 13 +---------
pot/ro-html.pot | 2 +-
pot/ro-txt.pot | 2 +-
pot/sk-full.pot | 13 +---------
pot/sk-html.pot | 2 +-
pot/sk-txt.pot | 2 +-
pot/sv-full.pot | 13 +---------
pot/sv-html.pot | 2 +-
pot/sv-txt.pot | 2 +-
pot/tr-full.pot | 13 +---------
pot/tr-html.pot | 2 +-
pot/tr-txt.pot | 2 +-
pot/zh_CN-full.pot | 13 +---------
pot/zh_CN-html.pot | 2 +-
pot/zh_CN-txt.pot | 2 +-
pot/zh_TW-full.pot | 13 +---------
pot/zh_TW-html.pot | 2 +-
pot/zh_TW-txt.pot | 2 +-
80 files changed, 141 insertions(+), 426 deletions(-)
diff --git a/output/cs/Documentation.html b/output/cs/Documentation.html
index 358931e..035ad0c 100644
--- a/output/cs/Documentation.html
+++ b/output/cs/Documentation.html
@@ -272,7 +272,7 @@ cd phpMyAdmin
mkdir config # vytvoří adresář pro ukládání
chmod o+rw config # umožní zápis všem uživatelům
</pre>
- And to edit an existing configuration, copy it over first:
+ Pro úpravu aktuální konfigurace ji nejdříve zkopírujte:
<pre>
cp config.inc.php config/ # zkopírovat aktuální konfiguraci pro úpravy
chmod o+w config/config.inc.php # povolit zápis pro všechny
@@ -463,7 +463,8 @@ authentication mode, you don't need to fill the user/password fields inside
the <a href="#cfg_Servers" class="configrule">$cfg['Servers']</a> array.</li>
</ul>
-<h4>'<abbr title="HyperText Transfer Protocol">HTTP</abbr>' authentication mode</h4>
+<h4>Přihlašování pomocí '<abbr title="HyperText Transfer Protocol">HTTP</abbr>'
+autentizace</h4>
<ul><li>Uses <abbr title="HyperText Transfer Protocol">HTTP</abbr> Basic
authentication method and allows you to log in as any valid MySQL user.</li>
@@ -481,7 +482,7 @@ along with '<abbr title="HyperText Transfer Protocol">HTTP</abbr>'
authentication mode.</li>
</ul>
-<h4>'cookie' authentication mode</h4>
+<h4>Přihlašování pomocí 'cookies'</h4>
<ul><li>You can use this method as a replacement for the <abbr title="HyperText
Transfer Protocol">HTTP</abbr> authentication (for example, if you're
@@ -3272,11 +3273,11 @@ In your <i>php.ini</i> you will find a line</p>
<pre>mysql.default_socket = /tmp/mysql.sock</pre>
-<p> change it to</p>
+<p> změňte na</p>
<pre>mysql.default_socket = /var/lib/mysql/mysql.sock</pre>
-<p> Then restart apache and it will work.</p>
+<p> Poté restartujte apache a bude to fungovat.</p>
<p> Here is a fix suggested by Brad Ummer:</p>
diff --git a/output/pt_BR/Documentation.html b/output/pt_BR/Documentation.html
index 15001b8..349c5bb 100644
--- a/output/pt_BR/Documentation.html
+++ b/output/pt_BR/Documentation.html
@@ -401,29 +401,29 @@ encontrado em <tt>scripts/upgrade_tables_mysql_4_1_2+.sql</tt>.</p>
<h3 id="authentication_modes">Usando os modos de autenticação</h3>
-<ul><li><abbr title="HyperText Transfer Protocol">HTTP</abbr> and cookie
-authentication modes are recommended in a <b>multi-user environment</b>
-where you want to give users access to their own database and don't want
-them to play around with others.<br />
- Nevertheless be aware that MS Internet Explorer seems to be really buggy
-about cookies, at least till version 6, and PHP 4.1.1 is also a bit buggy in
-this area!<br />
- Even in a <b>single-user environment</b>, you might prefer to use <abbr
-title="HyperText Transfer Protocol">HTTP</abbr> or cookie mode so that your
-user/password pair are not in clear in the configuration file.
+<ul><li>Os métodos de autenticação por <abbr title="HyperText Transfer
+Protocol">HTTP</abbr> e por cookies são recomendados em um ambiente
+multi-usuário quando você da acesso ao proprietário da base de dados e não
+quer que a base de dados seja utilizada por outros usuários.<br />
+ Não obstante estar ciente de que o MS Internet Explorer parece realmente ser
+um bugador de cookies, pelo menos até a versão 6, e PHP 4.1.1 também é um
+pouco bugador nesta área!<br />
+ Mesmo no <b>ambiente mono-usuário</b>, você pode preferir pelo uso do <abbr
+title="HyperText Transfer Protocol">HTTP</abbr> ou o modo de cookie para que
+o seu par usuário/senha não seja removido do arquivo de configuração.
</li>
- <li><abbr title="HyperText Transfer Protocol">HTTP</abbr> and cookie
-authentication modes are more secure: the MySQL login information does not
-need to be set in the phpMyAdmin configuration file (except possibly for the
-<a href="#controluser">controluser</a>).<br />
- However, keep in mind that the password travels in plain text, unless you
-are using the HTTPS protocol.<br />
- In cookie mode, the password is stored, encrypted with the blowfish
-algorithm, in a temporary cookie.</li>
+ <li>Os modos de autenticação <abbr title="HyperText Transfer
+Protocol">HTTP</abbr> e cookie são muito seguros: a informação de login do
+MySQL não precisa estar definida no arquivo de configuração do phpMyAdmin
+(exceto, possivelmente, para o <a href="#controluser">controluser</a>).<br />
+ No entanto, lembre-se que a senha trafega em texto simples, a menos que você
+esteja usando o protocolo HTTPS.<br />
+ No modo cookie, a senha é armazenada, encriptada com o algoritmo blowfish,
+em um cookie temporário.</li>
- <li id="pmausr">Note: starting with phpMyAdmin 2.6.1, this section is only applicable if
-your MySQL server is running with <tt>--skip-show-database</tt>.<br /><br />
+ <li id="pmausr">Nota: iniciando com o phpMyAdmin 2.6.1, esta seção é apenas aplicada se o
+seu servidor MySQL estiver rodando com <tt>--skip-show-database</tt>.<br /><br />
For '<abbr title="HyperText Transfer Protocol">HTTP</abbr>' and 'cookie'
modes, phpMyAdmin needs a controluser that has <b>only</b> the
@@ -1450,10 +1450,10 @@ MySQL servers behind the firewall where your <abbr title="HyperText Transfer
Protocol">HTTP</abbr> server is placed.
</dd>
- <dt id ="cfg_Error_Handler_display">$cfg['Error_Handler']['display'] boolean</dt>
+ <dt id ="cfg_Error_Handler_display">$cfg['Error_Handler']['display'] booleano</dt>
<dd>Whether to display errors from PHP or not.</dd>
- <dt id ="cfg_Error_Handler_gather">$cfg['Error_Handler']['gather'] boolean</dt>
+ <dt id ="cfg_Error_Handler_gather">$cfg['Error_Handler']['gather'] booleano</dt>
<dd>Whether to gather errors from PHP or not.</dd>
<dt id="cfg_LeftFrameLight">$cfg['LeftFrameLight'] booleano</dt>
@@ -4723,7 +4723,7 @@ Copyright (C) 2001-2010 Marc Delisle <marc_at_infomarc.info>
Garvin Hicking <me_at_supergarv.de>
Michael Keck <mkkeck_at_users.sourceforge.net>
Sebastian Mendel <cybot_tm_at_users.sourceforge.net>
- [check <a href="#credits">credits</a> for more details]
+ [veja os <a href="#credits">créditos</a> para mais detalhes]
</pre>
<p>
@@ -5243,8 +5243,8 @@ cross-platform data compression library by Jean-loup Gailly and Mark Adler.</li>
<ul id="footer">
<li>Copyright © 2003 - 2010 <a
-href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
-team</a></li>
+href="http://www.phpmyadmin.net/home_page/team.php">Equipe de
+desenvolvimento do phpMyAdmin</a></li>
<li><a href="LICENSE">Licença</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Doações</a></li>
<li class="last"><a href="http://validator.w3.org/check/referer">HTML</a> e <a
diff --git a/output/pt_BR/translators.html b/output/pt_BR/translators.html
index a0089a8..21cb174 100644
--- a/output/pt_BR/translators.html
+++ b/output/pt_BR/translators.html
@@ -481,8 +481,8 @@ forneçam suporte por e-mail.</span></p>
<ul id="footer">
<li>Copyright © 2003 - 2010 <a
-href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel
-team</a></li>
+href="http://www.phpmyadmin.net/home_page/team.php">Equipe de
+desenvolvimento do phpMyAdmin</a></li>
<li><a href="LICENSE">Licença</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Doações</a></li>
<li class="last"><a href="http://validator.w3.org/check/referer">HTML</a> e <a
diff --git a/po/cs.po b/po/cs.po
index 45d100d..b8d6fd6 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: po 4a\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-22 20:27+0300\n"
-"PO-Revision-Date: 2010-04-23 16:48+0200\n"
+"PO-Revision-Date: 2010-04-30 10:50+0200\n"
"Last-Translator: Michal <michal(a)cihar.com>\n"
"Language-Team: Czech <cs(a)li.org>\n"
"Language: cs\n"
@@ -7214,7 +7214,7 @@ msgstr "mysql.default_socket = /tmp/mysql.sock"
#. type: Content of: <html><body><div><p>
#: ../phpmyadmin/Documentation.html:3203
msgid "change it to"
-msgstr ""
+msgstr "změňte na"
#. type: Content of: <html><body><div><pre>
#: ../phpmyadmin/Documentation.html:3205
@@ -7225,7 +7225,7 @@ msgstr "mysql.default_socket = /var/lib/mysql/mysql.sock"
#. type: Content of: <html><body><div><p>
#: ../phpmyadmin/Documentation.html:3207
msgid "Then restart apache and it will work."
-msgstr ""
+msgstr "Poté restartujte apache a bude to fungovat."
#. type: Content of: <html><body><div><p>
#: ../phpmyadmin/Documentation.html:3209
@@ -12718,40 +12718,3 @@ msgstr ""
#~ msgid "<a href=\"#glossary\">Glossary</a>"
#~ msgstr "<a href=\"#glossary\">Slovníček</a>"
-
-#. type: Content of: <html><body><div><p>
-#: ../phpmyadmin/Documentation.html:4493
-msgid ""
-"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. The tables whose names are not "
-"preceded by a ‘+’ sign are already present in the target database."
-msgstr ""
-
-#. type: Content of: <html><body><div><p>
-#: ../phpmyadmin/Documentation.html:4487
-msgid ""
-"After successfully passing through the authentication phase, the source and "
-"target database table names will be displayed. It will be a tabular "
-"representation."
-msgstr ""
-
-#. type: Content of: <html><body><div><p>
-#: ../phpmyadmin/Documentation.html:4513
-msgid ""
-"The difference is depicted by the red and green buttons with S and D "
-"letters, indicating that either Structure or Data are not up to date. By "
-"clicking on them, they will turn grey, what means that they will be "
-"synchronised."
-msgstr ""
-
-#. type: Content of: <html><body><div><p>
-#: ../phpmyadmin/Documentation.html:4479
-msgid ""
-"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."
-msgstr ""
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 04f6322..e7d631f 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin-docs VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
-"PO-Revision-Date: 2010-04-06 16:59+0200\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\n"
+"PO-Revision-Date: 2010-05-02 03:02+0200\n"
"Last-Translator: Maurício Meneghini Fauth <mauriciofauth(a)gmail.com>\n"
"Language-Team: none\n"
"MIME-Version: 1.0\n"
@@ -1003,6 +1003,10 @@ msgid ""
"where you want to give users access to their own database and don't want "
"them to play around with others."
msgstr ""
+"Os métodos de autenticação por <abbr title=\"HyperText Transfer Protocol"
+"\">HTTP</abbr> e por cookies são recomendados em um ambiente multi-usuário "
+"quando você da acesso ao proprietário da base de dados e não quer que a base "
+"de dados seja utilizada por outros usuários."
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:382
@@ -1011,6 +1015,9 @@ msgid ""
"about cookies, at least till version 6, and PHP 4.1.1 is also a bit buggy in "
"this area!"
msgstr ""
+"Não obstante estar ciente de que o MS Internet Explorer parece realmente ser "
+"um bugador de cookies, pelo menos até a versão 6, e PHP 4.1.1 também é um "
+"pouco bugador nesta área!"
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:385
@@ -1019,6 +1026,9 @@ msgid ""
"title=\"HyperText Transfer Protocol\">HTTP</abbr> or cookie mode so that "
"your user/password pair are not in clear in the configuration file."
msgstr ""
+"Mesmo no <b>ambiente mono-usuário</b>, você pode preferir pelo uso do <abbr "
+"title=\"HyperText Transfer Protocol\">HTTP</abbr> ou o modo de cookie para "
+"que o seu par usuário/senha não seja removido do arquivo de configuração."
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:390
@@ -1028,6 +1038,10 @@ msgid ""
"need to be set in the phpMyAdmin configuration file (except possibly for the "
"<a href=\"#controluser\">controluser</a>)."
msgstr ""
+"Os modos de autenticação <abbr title=\"HyperText Transfer Protocol\">HTTP</"
+"abbr> e cookie são muito seguros: a informação de login do MySQL não precisa "
+"estar definida no arquivo de configuração do phpMyAdmin (exceto, "
+"possivelmente, para o <a href=\"#controluser\">controluser</a>)."
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:394
@@ -1035,6 +1049,8 @@ msgid ""
"However, keep in mind that the password travels in plain text, unless you "
"are using the HTTPS protocol."
msgstr ""
+"No entanto, lembre-se que a senha trafega em texto simples, a menos que você "
+"esteja usando o protocolo HTTPS."
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:396
@@ -1042,6 +1058,8 @@ msgid ""
"In cookie mode, the password is stored, encrypted with the blowfish "
"algorithm, in a temporary cookie."
msgstr ""
+"No modo cookie, a senha é armazenada, encriptada com o algoritmo blowfish, "
+"em um cookie temporário."
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:399
@@ -1049,6 +1067,8 @@ msgid ""
"Note: starting with phpMyAdmin 2.6.1, this section is only applicable if "
"your MySQL server is running with <tt>--skip-show-database</tt>."
msgstr ""
+"Nota: iniciando com o phpMyAdmin 2.6.1, esta seção é apenas aplicada se o "
+"seu servidor MySQL estiver rodando com <tt>--skip-show-database</tt>."
#. type: Content of: <html><body><div><ul><li>
#: ../phpmyadmin/Documentation.html:402
@@ -3213,9 +3233,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1396
-#, fuzzy
msgid "$cfg['Error_Handler']['display'] boolean"
-msgstr "$cfg['ErrorIconic'] booleano"
+msgstr "$cfg['Error_Handler']['display'] booleano"
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:1397
@@ -3224,9 +3243,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1399
-#, fuzzy
msgid "$cfg['Error_Handler']['gather'] boolean"
-msgstr "$cfg['SQLQuery']['Validate'] booleano"
+msgstr "$cfg['Error_Handler']['gather'] booleano"
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:1400
@@ -4511,9 +4529,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1878
-#, fuzzy
msgid "$cfg['DefaultDisplay'] string"
-msgstr "$cfg['DefaultLang'] string"
+msgstr "$cfg['DefaultDisplay'] string"
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:1879
@@ -4527,9 +4544,8 @@ msgstr ""
#. type: Content of: <html><body><div><dl><dt>
#: ../phpmyadmin/Documentation.html:1887
-#, fuzzy
msgid "$cfg['HeaderFlipType'] string"
-msgstr "$cfg['MySQLManualType'] string"
+msgstr "$cfg['HeaderFlipType'] string"
#. type: Content of: <html><body><div><dl><dd>
#: ../phpmyadmin/Documentation.html:1889
@@ -10082,7 +10098,7 @@ msgstr "Direitos autorais"
#. type: Content of: <html><body><div><pre>
#: ../phpmyadmin/Documentation.html:4573
-#, fuzzy, no-wrap
+#, no-wrap
msgid ""
"Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller.com>\n"
"Copyright (C) 2001-2010 Marc Delisle <marc_at_infomarc.info>\n"
@@ -10096,7 +10112,7 @@ msgid ""
" [check <a href=\"#credits\">credits</a> for more details]\n"
msgstr ""
"Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller.com>\n"
-"Copyright (C) 2001-2009 Marc Delisle <marc_at_infomarc.info>\n"
+"Copyright (C) 2001-2010 Marc Delisle <marc_at_infomarc.info>\n"
" Olivier Müller <om_at_omnis.ch>\n"
" Robin Johnson <robbat2_at_users.sourceforge.net>\n"
" Alexander M. Turek <me_at_derrabus.de>\n"
@@ -11375,12 +11391,11 @@ msgstr ""
#. type: Content of: <html><body><ul><li>
#: ../phpmyadmin/Documentation.html:5091 ../phpmyadmin/translators.html:463
-#, fuzzy
msgid ""
"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">phpMyAdmin devel team</a>"
msgstr ""
-"Copyright © 2003 - 2009 <a href=\"http://www.phpmyadmin.net/home_page/"
+"Copyright © 2003 - 2010 <a href=\"http://www.phpmyadmin.net/home_page/"
"team.php\">Equipe de desenvolvimento do phpMyAdmin</a>"
#. type: Content of: <html><body><ul><li>
diff --git a/pot/ca-full.pot b/pot/ca-full.pot
index 20f2414..0ee712a 100644
--- a/pot/ca-full.pot
+++ b/pot/ca-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ca-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# ca-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ca-html.pot b/pot/ca-html.pot
index 6dae407..963735a 100644
--- a/pot/ca-html.pot
+++ b/pot/ca-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ca-txt.pot b/pot/ca-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/ca-txt.pot
+++ b/pot/ca-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/cs-full.pot b/pot/cs-full.pot
index ca9b74e..fd68745 100644
--- a/pot/cs-full.pot
+++ b/pot/cs-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# cs-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# cs-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/cs-html.pot b/pot/cs-html.pot
index 03bd262..c945edb 100644
--- a/pot/cs-html.pot
+++ b/pot/cs-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-C
reation-Date: 2010-05-03 08:35+0300\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/pot/cs-txt.pot b/pot/cs-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/cs-txt.pot
+++ b/pot/cs-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/de-full.pot b/pot/de-full.pot
index d7ded2a..488066b 100644
--- a/pot/de-full.pot
+++ b/pot/de-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# de-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# de-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/de-html.pot b/pot/de-html.pot
index dadc2ac..16bd316 100644
--- a/pot/de-html.pot
+++ b/pot/de-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/de-txt.pot b/pot/de-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/de-txt.pot
+++ b/pot/de-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/en_GB-full.pot b/pot/en_GB-full.pot
index 454a037..b86f654 100644
--- a/pot/en_GB-full.pot
+++ b/pot/en_GB-full.pot
@@ -9,7 +9,7 @@ msgstr ""
"#-#-#-#-# en_GB-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:28+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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"
@@ -19,7 +19,7 @@ msgstr ""
"#-#-#-#-# en_GB-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:36+0300\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/pot/en_GB-html.pot b/pot/en_GB-html.pot
index cd526e3..66b083b 100644
--- a/pot/en_GB-html.pot
+++ b/pot/en_GB-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:28+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/en_GB-txt.pot b/pot/en_GB-txt.pot
index 3289cd2..d2a5cfa 100644
--- a/pot/en_GB-txt.pot
+++ b/pot/en_GB-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:36+0300\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/pot/es-full.pot b/pot/es-full.pot
index 718848f..f37a646 100644
--- a/pot/es-full.pot
+++ b/pot/es-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# es-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# es-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/es-html.pot b/pot/es-html.pot
index e752d8b..32305ff 100644
--- a/pot/es-html.pot
+++ b/pot/es-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/es-txt.pot b/pot/es-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/es-txt.pot
+++ b/pot/es-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/fi-full.pot b/pot/fi-full.pot
index 714125d..3b43e06 100644
--- a/pot/fi-full.pot
+++ b/pot/fi-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fi-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# fi-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/fi-html.pot b/pot/fi-html.pot
index 894a39a..c48740c 100644
--- a/pot/fi-html.pot
+++ b/pot/fi-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/fi-txt.pot b/pot/fi-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/fi-txt.pot
+++ b/pot/fi-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/fr-full.pot b/pot/fr-full.pot
index bd20613..f01fb37 100644
--- a/pot/fr-full.pot
+++ b/pot/fr-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# fr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# fr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/fr-html.pot b/pot/fr-html.pot
index 9984291..89f8f4a 100644
--- a/pot/fr-html.pot
+++ b/pot/fr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/fr-txt.pot b/pot/fr-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/fr-txt.pot
+++ b/pot/fr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/gl-full.pot b/pot/gl-full.pot
index 983d5d3..42bb1f4 100644
--- a/pot/gl-full.pot
+++ b/pot/gl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# gl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# gl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/gl-html.pot b/pot/gl-html.pot
index e2d19ad..c60cb45 100644
--- a/pot/gl-html.pot
+++ b/pot/gl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/gl-txt.pot b/pot/gl-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/gl-txt.pot
+++ b/pot/gl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/hu-full.pot b/pot/hu-full.pot
index a2876fa..764123c 100644
--- a/pot/hu-full.pot
+++ b/pot/hu-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hu-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# hu-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/hu-html.pot b/pot/hu-html.pot
index edb8932..532c758 100644
--- a/pot/hu-html.pot
+++ b/pot/hu-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/hu-txt.pot b/pot/hu-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/hu-txt.pot
+++ b/pot/hu-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/hy-full.pot b/pot/hy-full.pot
index 7845944..e601944 100644
--- a/pot/hy-full.pot
+++ b/pot/hy-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# hy-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:28+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# hy-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/hy-html.pot b/pot/hy-html.pot
index e22006e..8aa71ef 100644
--- a/pot/hy-html.pot
+++ b/pot/hy-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:28+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/hy-txt.pot b/pot/hy-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/hy-txt.pot
+++ b/pot/hy-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/it-full.pot b/pot/it-full.pot
index 234841f..6cde407 100644
--- a/pot/it-full.pot
+++ b/pot/it-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# it-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# it-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:55+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/it-html.pot b/pot/it-html.pot
index 509fb2f..22670f0 100644
--- a/pot/it-html.pot
+++ b/pot/it-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/it-txt.pot b/pot/it-txt.pot
index a8a4075..1f7ffe6 100644
--- a/pot/it-txt.pot
+++ b/pot/it-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:55+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ja-full.pot b/pot/ja-full.pot
index bee0b2e..2d1b1db 100644
--- a/pot/ja-full.pot
+++ b/pot/ja-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ja-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# ja-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ja-html.pot b/pot/ja-html.pot
index cb16fb6..121d1bc 100644
--- a/pot/ja-html.pot
+++ b/pot/ja-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ja-txt.pot b/pot/ja-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/ja-txt.pot
+++ b/pot/ja-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ka-full.pot b/pot/ka-full.pot
index c9f54e9..aa89bf0 100644
--- a/pot/ka-full.pot
+++ b/pot/ka-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ka-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# ka-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ka-html.pot b/pot/ka-html.pot
index e119590..ea63535 100644
--- a/pot/ka-html.pot
+++ b/pot/ka-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ka-txt.pot b/pot/ka-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/ka-txt.pot
+++ b/pot/ka-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/lt-full.pot b/pot/lt-full.pot
index 293a80a..a8fd4c3 100644
--- a/pot/lt-full.pot
+++ b/pot/lt-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# lt-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# lt-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/lt-html.pot b/pot/lt-html.pot
index c188f84..b82850a 100644
--- a/pot/lt-html.pot
+++ b/pot/lt-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/lt-txt.pot b/pot/lt-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/lt-txt.pot
+++ b/pot/lt-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/mn-full.pot b/pot/mn-full.pot
index c77667b..4cf1a35 100644
--- a/pot/mn-full.pot
+++ b/pot/mn-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# mn-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# mn-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/mn-html.pot b/pot/mn-html.pot
index 03c7a08..b48e812 100644
--- a/pot/mn-html.pot
+++ b/pot/mn-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/mn-txt.pot b/pot/mn-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/mn-txt.pot
+++ b/pot/mn-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/nb-full.pot b/pot/nb-full.pot
index ba4d045..441bcca 100644
--- a/pot/nb-full.pot
+++ b/pot/nb-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nb-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# nb-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/nb-html.pot b/pot/nb-html.pot
index cafcf32..cc0d10d 100644
--- a/pot/nb-html.pot
+++ b/pot/nb-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/nb-txt.pot b/pot/nb-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/nb-txt.pot
+++ b/pot/nb-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/nl-full.pot b/pot/nl-full.pot
index a6c6463..fd6f535 100644
--- a/pot/nl-full.pot
+++ b/pot/nl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# nl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# nl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/nl-html.pot b/pot/nl-html.pot
index d661f06..68c2083 100644
--- a/pot/nl-html.pot
+++ b/pot/nl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/nl-txt.pot b/pot/nl-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/nl-txt.pot
+++ b/pot/nl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/pl-full.pot b/pot/pl-full.pot
index 5a86c1a..5216859 100644
--- a/pot/pl-full.pot
+++ b/pot/pl-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pl-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# pl-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/pl-html.pot b/pot/pl-html.pot
index 2a46dc4..e7dee15 100644
--- a/pot/pl-html.pot
+++ b/pot/pl-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/pl-txt.pot b/pot/pl-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/pl-txt.pot
+++ b/pot/pl-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/pt_BR-full.pot b/pot/pt_BR-full.pot
index e4314e9..0ea7d97 100644
--- a/pot/pt_BR-full.pot
+++ b/pot/pt_BR-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# pt_BR-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# pt_BR-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/pt_BR-html.pot b/pot/pt_BR-html.pot
index 7db77a8..9950c3e 100644
--- a/pot/pt_BR-html.pot
+++ b/pot/pt_BR-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/pt_BR-txt.pot b/pot/pt_BR-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/pt_BR-txt.pot
+++ b/pot/pt_BR-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ro-full.pot b/pot/ro-full.pot
index 18478e7..d72ac8a 100644
--- a/pot/ro-full.pot
+++ b/pot/ro-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# ro-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# ro-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ro-html.pot b/pot/ro-html.pot
index 31ec590..be7d9f4 100644
--- a/pot/ro-html.pot
+++ b/pot/ro-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/ro-txt.pot b/pot/ro-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/ro-txt.pot
+++ b/pot/ro-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/sk-full.pot b/pot/sk-full.pot
index d73a1b8..f7de1a1 100644
--- a/pot/sk-full.pot
+++ b/pot/sk-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# sk-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:28+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# sk-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:36+0300\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/pot/sk-html.pot b/pot/sk-html.pot
index 6897fc9..11437d9 100644
--- a/pot/sk-html.pot
+++ b/pot/sk-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:28+0300\n"
+"POT-Creation-Date: 2010-05-03 08:36+0300\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/pot/sk-txt.pot b/pot/sk-txt.pot
index 3289cd2..d2a5cfa 100644
--- a/pot/sk-txt.pot
+++ b/pot/sk-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:36+0300\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/pot/sv-full.pot b/pot/sv-full.pot
index fee7f56..56071cd 100644
--- a/pot/sv-full.pot
+++ b/pot/sv-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# sv-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# sv-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/sv-html.pot b/pot/sv-html.pot
index ceecde6..61c12c9 100644
--- a/pot/sv-html.pot
+++ b/pot/sv-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/sv-txt.pot b/pot/sv-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/sv-txt.pot
+++ b/pot/sv-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/tr-full.pot b/pot/tr-full.pot
index b9e244d..6428ae3 100644
--- a/pot/tr-full.pot
+++ b/pot/tr-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# tr-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# tr-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/tr-html.pot b/pot/tr-html.pot
index b34d0d3..d201cb4 100644
--- a/pot/tr-html.pot
+++ b/pot/tr-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/tr-txt.pot b/pot/tr-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/tr-txt.pot
+++ b/pot/tr-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/zh_CN-full.pot b/pot/zh_CN-full.pot
index b0327dd..4d05305 100644
--- a/pot/zh_CN-full.pot
+++ b/pot/zh_CN-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# zh_CN-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# zh_CN-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/zh_CN-html.pot b/pot/zh_CN-html.pot
index d048fc2..d3fd460 100644
--- a/pot/zh_CN-html.pot
+++ b/pot/zh_CN-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/zh_CN-txt.pot b/pot/zh_CN-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/zh_CN-txt.pot
+++ b/pot/zh_CN-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/zh_TW-full.pot b/pot/zh_TW-full.pot
index 110a84d..a6e2a2b 100644
--- a/pot/zh_TW-full.pot
+++ b/pot/zh_TW-full.pot
@@ -6,20 +6,9 @@
#, fuzzy
msgid ""
msgstr ""
-"#-#-#-#-# zh_TW-html.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\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"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=utf-8\n"
-"Content-Transfer-Encoding: ENCODING\n"
-"#-#-#-#-# zh_TW-txt.pot (phpMyAdmin documentation VERSION) #-#-#-#-#\n"
-"Project-Id-Version: phpMyAdmin documentation VERSION\n"
-"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/zh_TW-html.pot b/pot/zh_TW-html.pot
index a257af9..a0428fb 100644
--- a/pot/zh_TW-html.pot
+++ b/pot/zh_TW-html.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 20:27+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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/pot/zh_TW-txt.pot b/pot/zh_TW-txt.pot
index 3289cd2..1f7ffe6 100644
--- a/pot/zh_TW-txt.pot
+++ b/pot/zh_TW-txt.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin documentation VERSION\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
-"POT-Creation-Date: 2010-04-22 15:56+0300\n"
+"POT-Creation-Date: 2010-05-03 08:35+0300\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"
hooks/post-receive
--
phpMyAdmin localized documentation
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_3_2-2467-gf44a587
by Michal Čihař 03 May '10
by Michal Čihař 03 May '10
03 May '10
The branch, master has been updated
via f44a58726305e6ce836f5d1ea18a332cc8ccf280 (commit)
via 34e48a1db7e6ae2ee9f65c34afdc2640edf28410 (commit)
via 30d50d497429bed5a38ab56674fefcc0543668d5 (commit)
via 84bb80c94ecbbfc6ec1234854fc421bb376b5dc6 (commit)
via 654a7f3974055da10e8e9fbf90e491c2e6d01ee5 (commit)
via f80623579ecb6cbc66763faf8f61ce35e289d941 (commit)
via b3874c802010bab677f4d4ada18010f2a282e583 (commit)
via 54da47e49080896e8fd3d6750a8be05b7aecec67 (commit)
via 401090964b3971e1694ff29f742eead670f551ba (commit)
via b8f3def1a024b355ae2ed7ceaa3c0d8be237b3a5 (commit)
via 5bc8e56423332c56d0e2d8fb72cfad07a7257b73 (commit)
via 785a01728ec479676e82285774951747603391dd (commit)
via f1ab41a0c7f5e578ec04c8f0290fc5765456eb84 (commit)
via fe606142b3be7f7de9f19f0e772ddba815f88b45 (commit)
via d925399c3612039b33f803db524be48642ef67df (commit)
via 90aeada661fbec7df8abd0c789cf1d0683cc315c (commit)
via c20ed6643176c3c8e9096eed75674abea0b4845c (commit)
via 5362e080ea1e171b1564d015a7fa774e43eef1d2 (commit)
via 06c73aaae529e3e03718b42ebe39fde1bf65c163 (commit)
via a9bb8e4a0abc1bfa1e42f30e9694ec36fda0fc86 (commit)
via 1577910e30c46e05f2a165cd8c571eb1aa47f03e (commit)
via 558fc583a76262cb563935146589e216b3b6183a (commit)
via c61a0e18dc3aa2d6c1bb2319864f88b9d119d114 (commit)
via 58926277ca88c87788ff36603a9af46ec1605e83 (commit)
via 1dadf05ed79ce86bf5c3721747d20c37eef8c2cc (commit)
via 8d20e645638e0b619108943c6dc76631dc2ec697 (commit)
via 2f4ad331e93ea1e3354124ce90416df3b1664fd0 (commit)
via 55bd6c59624a7e283059d65873ce89890e225cb9 (commit)
via decdf151c15418582ad14040a643e0808b2e13cd (commit)
via 5c0541cc2192e93b5f01fcc8ce88ef2beac7b2b3 (commit)
via 70e712a3927b6ad41d7ef498ec2912ad80a1f139 (commit)
via 01ab1cf63a84dcc81c28da665642579ce5339c55 (commit)
via 5a70b97d66997640337466d1b0f001530fae3fb1 (commit)
via f27601f49c589e0268f8b83cf99687c16c3bf511 (commit)
via 979a216529514c9ca66c8c80eeff0e06b7c42449 (commit)
via 7cd83d217ab25a03784d3de6f6b5bfa35d5ff7cb (commit)
via b952a3f42f417e3b39358c1cac8ab7d97d4731a8 (commit)
via 5ab267240490404e3ebccb759a71dd7635606c84 (commit)
via 84530814420d9980b3f79cc423e5a0e665d2409b (commit)
via 63f774f43a4892d9f675a37487d3f652bca79a5e (commit)
via d748dfbed76ea8ffad007179df80119f0dc8dd85 (commit)
via fd74c6fde7ef747f6b4123cf0c95b132647ed4e0 (commit)
via 55686de29c9564db242219fb76e2f359477b2faa (commit)
via 059ab47d6e52572bda3c9a6ec16765ac6e622014 (commit)
via 45aae10249ac473f5830a01305606207cb4576b8 (commit)
via 1f343595b6895cf7f478cae129f82d88bef78b41 (commit)
via 59b44d3e387bcb9c2914cdd5643369be42e8742d (commit)
via df8fcfe628236eabc20e4b08bc14e2e48b0afa06 (commit)
via 28b185a1b0cc0aa8f70447be5d96f5db329d375d (commit)
via 45e38209948535bb9cfcbef6ecb499b742a9805f (commit)
via 9d8659a2965a18430f1ee52446428859d1ae661a (commit)
via 8f6d297c50676681f595108b011960ebe9960459 (commit)
via f00ef1ad09dbe751256a3defa23b59622ff79785 (commit)
via 94e987dafdc4805d9109d2891b9a96e47ea1dcb3 (commit)
via 42e65e9554f0ad4506659eadb99d900147a8197e (commit)
via 450247a73e6ae2bbd146df918f7533203babf3a9 (commit)
via c7a5debae1a616d39070f601b1be5a548c5767e0 (commit)
via e3f5c3a6d9b6fd88195765ccf97eb388e950b27a (commit)
via 757ad24e0adf019feb5b9af579a9022b1d5fe469 (commit)
via 36817873a6353b2d99df01a78143b82c7231c3be (commit)
via 4b6388493903705ae31a6c436ef28b78df7a5ffb (commit)
via 23b573d659445317e66ff06947eeeef43313b95a (commit)
via 27901278c325004014c88cf370dfabb8f4cfc532 (commit)
via 3437164c132d9805fadc6f772e4c20f86762b45b (commit)
via 138faa1c0b76c602ff6bbf938abf5a8637365520 (commit)
via d81541128ce6769616e793c792a86d43e677e057 (commit)
via 92bb3a768d6416c03878c4557cf0a38eb3c1929d (commit)
via e70070d3f9256b07d468772e80aa62ce972caa8a (commit)
via 77da4dbc72cc04b8757485f9b1904e3fe0f59d7f (commit)
via 3c9487612d7e05879bc59143a572e5342f437e74 (commit)
via 71a00ecbec013fedd4f173d68dad2fb31edd2e61 (commit)
via 7cfb63b5f7a1c69a03e56f2ee648d6aa18c4fd4c (commit)
via b0b882f7e0aabac5b160db62458b480d1359fc2a (commit)
via 031e59a423c2d8cfd8c5b25e68e4b94bab1317d4 (commit)
via 1db136f70912fe2484d29801dbeb6b696037de2d (commit)
via d332522f3aaffbc0341fdb6fe0dfbf7e6070e0f4 (commit)
via 628e94b2a575d309e8db00c895df229d732467b5 (commit)
via 75cbba5a170ab4234e5090f99e81504db2e7af01 (commit)
via 226985f41f33305a1896ed9c46d1921d92e4e7d0 (commit)
via 59bb9d2593ef787fb7480790020ab98fbe050343 (commit)
via 57a94c5a39e325beb53a129e540484029e51fd04 (commit)
via a4ffc2b8a95ffcf2762d9b1374602a77b4455dcc (commit)
via 22fc53efd77f3bcbb734d3bae8788907009bb2ec (commit)
via 8723446a2eb970340adc431216252c24102be550 (commit)
via 8ac6211e57e8eca94f1f988b97c224e7fe624bbe (commit)
via d341ece2e3c27d88bc13a30bc9d155f39153dcda (commit)
via c6a90d49c616a611a9fb187ebab7b97770c0374d (commit)
via fd2b1b6984841ca3467c8aed5c0147457cf39b7c (commit)
via 31c506c38a61640ed4b405eb86c08597b04a027d (commit)
via 54f21f173d70d7ab524e3d6cd7b34e173ee750b6 (commit)
via 5c4ff5ed9b88a1181d3a5db857779def8521c91c (commit)
via 320d2c086a865a6988a1837c3f4891ddd7304cc9 (commit)
via 2a3136a6e37e576a8489c32e1ab608f3609b0779 (commit)
via 23f59392444359dc706caa440d04d3b4bb65229a (commit)
via b0b7a9fe379e3e88429355e705196072d253563c (commit)
via 2c4e834c7ead4ee984beaff5de1bb23544f11554 (commit)
via 8a27f222082d68ab55a04750c265bd9ee1c86a80 (commit)
via 4ce2d7027d5e2de62150310da2d628b0c900bd03 (commit)
via 74cadfe540090bc12d1920593f16114e58b9e940 (commit)
via 1db00e871eaf826403a0031353375780311f08cb (commit)
via 5014f2ef116f02166c0ca48866744a1f2955c727 (commit)
via d2f1c5a06021ff4f9128416a1a83fa896d719784 (commit)
via c392007d59141e5d5273e490d19271de11069512 (commit)
via 4344b3a2385402a74ea58f9854d75e006d89581e (commit)
via 08bd578f5ee4a6854f73e1710cbd9883c560b161 (commit)
via bc414e21446906268fc35b1402645ea8333d4fd3 (commit)
via 378ae8134baeab70b638b537ce0d3045102d08f3 (commit)
via 1e7f4947c0cd26fb6693b9409f2cc3bebea87fe5 (commit)
via 574b00e0f7df3b5d0f2900c40281b4918b2afa19 (commit)
via 6893930b4fe9ea59c2a22b4ac7eccb8637d21482 (commit)
via ff8d7d27b7beb980f507cde43629fac636396f04 (commit)
via 43d55e9dbacd2e73abbe384eede011cb1731126b (commit)
via 85d5c6b47f17d0db9795a5abcba24c51f2d21a4b (commit)
via e76c922001727ac5e6b36c117805ea5361c87655 (commit)
via 880070ba0c83ce6941a4fe4b4b83f5ba11308e63 (commit)
via b83ab29971bc0dedc3676efe61f517a4cfd7efa3 (commit)
via 35bd442d3f90e7bd3f57a6cf7fe377a7e4000cf3 (commit)
via ec1695dec3a6c867aee2d0b1b5b057b35e320f4b (commit)
via 985675b01f865da2149a63444cdce3e89c0e15b8 (commit)
via 340d7fcb25029add9d4a7c3d0917cedcfca95ad1 (commit)
via fb7147a7c45b4e03cbfd6a976f20e7438fd89693 (commit)
via 256a2ad345d481cff541756f14be2d24f939a887 (commit)
via 189dd40096ead31117791af31bcf9a103873ae64 (commit)
via 40f5233ab87bc580b6f2feceb429a3f01ba97de3 (commit)
via 4b4788946edfda1299f7709d849795d745a9618a (commit)
via 108593480ce342652c84a5cfdd2d015e97fc57b1 (commit)
via 319c704b0138ea3b4b0c3c5290e61de92e8102d1 (commit)
via cf1d0cb42651a397a56395519789b3b7bb5369cd (commit)
via 0ffeb54e24e1113ff94d577c027587aa5b6ed2e2 (commit)
via d691f9ed51d904f0a0f2a670548d7a0f9c224680 (commit)
via 917a59f433214089c4a2921aac8c51d90848356b (commit)
via 4716327864970f87f5ff54f54fd2645e88aa4b80 (commit)
via 62b2f5f75da12b263e3e57a7383f551b706865ec (commit)
via c8fab8bdca4a36f4e309bf58538860265951349f (commit)
via 4ad6208fc06a5187acefac70ede7ecace1af3456 (commit)
via 2c7689faa2dd93b61386beae33d9cb89e754336a (commit)
via 65c05fbf1a9da06a7e69d162d88c8da24951a5f2 (commit)
via 71ade72a7cb919ffcde25744d04685fa9e84593c (commit)
via 8e066358d5619ee0518c97e8db74e725644fde07 (commit)
via 7a6035320a43eaf61e1d61f07f17e9d704207a41 (commit)
via 7a2535a9145e6e0859236be1f0413cb7988f7d1a (commit)
via dbd1852742eea2ee133423fc0ea44e4d4d3725c8 (commit)
via 275b8a35037affa36c6475638096424218263704 (commit)
via ad55a1d1bd5c296f0eb3ac50c18cdddb60f873fc (commit)
via 1202eaac6210b50f3c796199b485a48461911c1d (commit)
via 5d3d3a8d8b8063f90041b343b180cce530dccbe0 (commit)
via 5bd7003948475590c156326e6595e7f18312e9b8 (commit)
via b6fc1e615c67ea2c4d7b51390110051133c9e68f (commit)
via 6a523a55cea21c0f942caec8c01ea8c0138f7d51 (commit)
via 92f4b2e45aa30822af3ae38599d7e8bf943addd4 (commit)
via 2785084a2131fa5f092009be1351ca6e8c9aff15 (commit)
via f0b562d16d5e76ed44a40448387d256b75a3a9cd (commit)
via 6ec08ad20aa6e5913ccb586ebc2129e054f9ac31 (commit)
via 75057b6a28b1ff39e56aff96d9bd89510a63434e (commit)
via cc35c5117062a50658175be18bbfcc254af7538f (commit)
via a9ab7432cdad4e6f3b445dd87f30b9d51d040cb9 (commit)
via 10f0d47c018bd003e7f858effdb5dcff080cfa55 (commit)
via c67254409d2cb02d434a473b13e18e0b5191d9e9 (commit)
via 1e481b06fa0adaa7134a7e9c340441531d888d30 (commit)
via 36102aa2a0f5cb831e57d8425108e2ed2e4c8af5 (commit)
via c53379d94cfb43fe963105e709e3999b3aa3a439 (commit)
via cccbab254cda16a0b8d2d57cda098ee93547bc5d (commit)
via b3e999a2c38d1fc3b687ba0702f5608febe912bd (commit)
via 84f3fbe20d15ab45d65cdfd9ebe8b97a230e1233 (commit)
via 3935976b0e009a98b5ad170a4da581ce61847238 (commit)
via 0ba017bf6af7bfd3a75fbb45466448b875d0a2e5 (commit)
via e7992ca70cab96032940eb44856f4163ccb98424 (commit)
via 0c7fdd0d9dad4eefc924bc4b08a5df6c47bdc604 (commit)
via 8b3cc962125a9b9e6e44a44bc3d88f8fc477a672 (commit)
via 8d27d9af4ebb7a3403c413d3c80cbef53a0d9731 (commit)
via bb75c61574f71f3536e8ec3b6a1f08867f5144d9 (commit)
via aeb941082f5f2099d20ed7dbda14fdc84fb5a534 (commit)
via 63a81ad192ee890ae1b0b031b7e73fe3741cadba (commit)
via 5fe7e14ca2098f9d358b38ebd6cb489fe2b685f7 (commit)
via bc983c689b03e7241e21e51587c3e31df63a103c (commit)
via 4f4a8806f28924487b32e40c6c8cb540d3458b96 (commit)
via 2c4a122941c4b0e8868d7c7a39c57bdaf3c865d8 (commit)
via 508f58cd996ae9fa9c2e55fc738076a7def4ef99 (commit)
via 82a352a522d8f492ff3d608f3acd17127c93cc34 (commit)
via 9154ef656df4e2f8a4a7c6981ec12973e2bae948 (commit)
via 015650d93b589eca4a9025ffca5ae63fc5e89e4c (commit)
via fc7c9427894d9c5b38d3241237277e25e1e2997b (commit)
via 9f61382817145cd1ba0ce9fbe7632c6f64a1c329 (commit)
via c1f770a9ccf0497fcc8b8851e3cbcf3951a7b12d (commit)
via 549102335c5c55adce1d297665c6bbaa4366c9d6 (commit)
via d1f14227eb9c51f6f1a6d5c61673c77d2c3e3f41 (commit)
via 51f65c5b2940a80b2025d9c794984c9a016b5041 (commit)
via b0fb47661c7de504a14911d283d5ec1865547922 (commit)
via 0b5115523dc4170e73b2e32a5dc65c1a10057e31 (commit)
via ee25ace5cd2c77e0e4f01eb100fbcfe41548732e (commit)
via 654f7e2be795e4e222f6bb45a6cf0e94620cb4ab (commit)
via e51169884c2aae6b39e4c48895c8a201ab2cc86a (commit)
via 14679452fc847f2aa049cdf6fe1275a195ecad43 (commit)
via 195d5a816d68257222f914fa6f949dc99876c696 (commit)
via c011ea6833847b6874d30ce22316156b4ad130f5 (commit)
via 23c5133a559b350bc6be64b640f8c69132db8cfa (commit)
via 0072e7fecd538e54b96f22a6c2f489b74f254c09 (commit)
via bb7bb4f8e305bbd409c2988404aa9e91f4fe08fc (commit)
via 354db90f5fb6c505082bc4fb0bfb10e7655fda09 (commit)
via a724ff53d90b93fb5037557e220f606286fab03a (commit)
via 6da83d8c15cbe36d6ac44a49469a38e8ef93c220 (commit)
via e137bd5763ecd6c5699d68b61b06b0de657f34d4 (commit)
via d4574ba9027d7cb0e8d6fa0a5b530ba48d50fdda (commit)
via 397ea7d3f5d522ec90d9ab8ec20143f6bac1411e (commit)
via 1d6c2ad11be2da45d5dac6fe5427a6f6440ae72a (commit)
via 8b51444d08f3f0154e8c865b22cf394571fc0878 (commit)
via 71479870c894abe9a1aa362da850b727aa441366 (commit)
via 995d5ae069333a0ee8e6e3f857fce00d6d8401bc (commit)
via 579f2121aa439d7f1e62fa8226d65c3210819d30 (commit)
via fd03a314c4bce225a184c2b563b62ad09349d5ce (commit)
via d55a5a0964c4836b3fec1a244e0a7c9f502ca9e7 (commit)
via 89d5f0ba51851cf582ec629aaab830e3d99a85f2 (commit)
via cb61b9e904f80dd8d29a2b10159bcd1b8b7caf60 (commit)
via 01e54446cdbb98a37c4d3bb0e0c26f5a42bbe28c (commit)
via 149e1f25640c4d4c6192901d93a861c574d2befd (commit)
via 16bddcdeb44cecb4983d8aaaa60ec524cbc7d0d2 (commit)
via a118df6c4d9874c2b0e760e52c3f1bdf781ccdb0 (commit)
via ae653d70edb52504021b9cf98907a2935c6a1349 (commit)
via 67585b501373dc939335eca8c0c09340983f2ebe (commit)
via 5d2053a356e2220bd942575092727fc080863ff4 (commit)
via 8f93b91e3813e401faaefba552325fa940734818 (commit)
via f1f7d7d4763ff4ab795434d73831bab0ff96269f (commit)
via 1b9b2fc6f2533848d323adab171231515ed1ddfb (commit)
via f072d46a8dd30bcf6935d23c2004515f9ed02400 (commit)
via fbeb6d8a8d48316b568dfbe791dae68a9ded01ac (commit)
via ce384974048006a3427521c832efe43d11f8e641 (commit)
via 94bfec0ae6bb403beddc5604c004f423b762f633 (commit)
via 3ea31d12939ce9bfe7aa628328a9bf93699b385a (commit)
via c129d5069631d5f4310fcf95e343976cb8ac02b5 (commit)
via ef251c24937d8c659db8a364e4985863227779a8 (commit)
via 48e521a1baf64fa0d4f6877c1cce66b0c60f5512 (commit)
via 7178804f1f3ac283a4786c4f51edde54510332c6 (commit)
via 76889b30b0e540fdf5f42207eb6f03f9251cd36a (commit)
via 3fc083d1aaabd3d1d30556b6791b09bb6b94546b (commit)
via c7ba82b9f2a332882a9f309e132133e3a1004618 (commit)
via 0538df8ec574d1f348f409a50fd15fdcdae70748 (commit)
via bbcaa5ef2b490f70b6aaa53ec792d0fcdb9fdb3c (commit)
via 3fe1c4ebc2532ca0e643a0678bd1545cb287b54c (commit)
via d29897ef9d4e3d56751c7492f1d3635fbfab65fd (commit)
via d9c69e54f49ca5527f82bf57d69e4f73a13a54d8 (commit)
via 090004abd479f736ab736b621c532b41e7a348a3 (commit)
via 4c647909cef7fe9ff0eb3843b116eb83005006af (commit)
via 0df262175cae753d03f10e713c853a778ae610fe (commit)
via 07f722a9e5f9319c86e31bd7912d966d06b6f873 (commit)
via 2432477f8a8e4dfcac47c92531afb8b6d4cd2c25 (commit)
via ac88a6017466e5377985f2169ebce090c19a5a98 (commit)
via 3afe72c62f4e831ed2c7fa2bb89b7447406068f6 (commit)
via 5f757d462c74997b496cfa52c2b31e367927f274 (commit)
via 282241420b73a485c44da3b22a841d4cdcd46fb4 (commit)
via 0bd529039737864053f74ba0980d83050efcc99f (commit)
via 4e267537b737f559a5489ed8fb8e75dfb78e34af (commit)
via f4323904ca09d08e2c204b768b18b154b3aee7a1 (commit)
via 6d5f0b66267f150154e81047418c97e5596c1b72 (commit)
via dbc45cc987e1c3e20f43dceae7d08e897873975d (commit)
via 338ac32bc630d0244b0d7b8657c171a467baf51b (commit)
via f5f6e52c6d137f7815aee2885497282f2463bf3f (commit)
via 258ebc47226fe190bc4bf052a660119b3c7a6cd6 (commit)
via 89406048a5b805e0ca2349f8faafe4a3c30996df (commit)
via 9e6226ae21e7cd4bdf2323810f0e9d24116abe20 (commit)
via c3cf63fe292424246b417e33a27b312ab5fdd5dc (commit)
via 4a283fad0adad94f61d5491ea4585896ff3b81a5 (commit)
via 5391f3938d214301e57ba4289c8e20a9de031a5f (commit)
via 22c238154d0b73848f67fc97a3c5bcfcbe7aac0f (commit)
via 3a92ea2a1adcf213e6d43d1554524de6d44651de (commit)
via f3aa3809a59cda5e4d3d10abbd42dcbf3235f7a2 (commit)
via c646e35a71bd528414bb858002c1f320ea14d924 (commit)
via 71cd4812d8533b0e23375ff78e96fcba3b42b23b (commit)
via 1391534599edb738f549c01cd7fa6947e5d04d51 (commit)
via 62fd2c7030c00c7b15bd6786a4a16e2b754dbd77 (commit)
via 44dbea279105123d922f8d8173a373372efc49a1 (commit)
via 81700c7e4430e489eb4344ebd2dc407ec0785f3b (commit)
via 1f264381cdf1f5ea38bbeb97daba9276e97ea645 (commit)
via da04396c7320cb2bfb3bf843e6a019b69e096b9e (commit)
via 50f5cc754a60cc524e4cf6d5329757f721d87275 (commit)
via 83a1bdace90417976711a4b594e859be9dbcfc7e (commit)
via af9ff9e934390849138c4aa8cf05e2aebe6f73d0 (commit)
via ce9d0b6a484944582c50bb9a3e8a23e6cb44e0f6 (commit)
via 8e32a05a2a0f083867950dcc59471fd9ffd7b7fe (commit)
via d2c1a33b827e752094f7d3ce45dda4b86f415f2c (commit)
via 32baf6cdf9293b673ac4a73e1615956eaaf3653b (commit)
via 9d4e71d0aa2477089740fc90ba0df7f643f63310 (commit)
via 5fb87fb0fd583bf393a5481936cafd7f22fd11db (commit)
via d2948da52585b635ce0910d355562f51390d6eff (commit)
via 4d256fd8d3da5dd3ce6c5e305afe2dbff5ab60d2 (commit)
via 44f9618102d29ef3bdb78b3689565ea1fd53bb46 (commit)
via 64ae1f07dffa521bcb05faa7641fb077071b450b (commit)
via c1b53faac95079c989e2eff1dff7a27a8111f4b8 (commit)
via afa7def8e7edabe143a15548a492e6f4caa2f733 (commit)
via d3be86e4691e5294d392e252abb934cb738208f0 (commit)
via 1494d36fab8df657bbc7484893f6e5004507101c (commit)
via b7d45c8aa2e05f6970276c8aae721d412891954e (commit)
via 584262750c6444fb3eae1b7a9779ef6c9042d4d8 (commit)
via e37c900b760edaf211edf7e3c9f96c1502a3365f (commit)
via a2178f03434cc87f4458440810c1e41043722016 (commit)
via 51f573eeff8358e54746c8469fca0b3f80541f9c (commit)
via a2c958af984118b81e1fe3f24d88624ae948fdb3 (commit)
via 80e063b38e3a968d33c9dd78a6c0d2fa7b5c76c5 (commit)
via aab07d531b163646f4b67e3ce2d8031dcbf6c35c (commit)
via a75855ded827a6f4cba37fad95fccf9dfbf40204 (commit)
via 9d3b893df4219cd3bc8a46396a1750ba01b70612 (commit)
via 336ffa1e8094b8b36b904712ad63c3988a5eb0e3 (commit)
via e0e5846e18125bbd01b935b76695fb83e2e7ec0f (commit)
via 04a61510f3c98c69d6249d7202bcf8600cab8528 (commit)
via fd0f45b955637d2c4793f501c599079bf96e3892 (commit)
via 737d18c7143dfd1b949d4172d94b0f8591ad692e (commit)
via aa9e97e6f8636f5ffed06ba2909eab17dd73f224 (commit)
via bedd77f19e8dd21a5d8b16aa0a2999559b98c095 (commit)
via fb8841fbe9e97b65559c076bca7850638d1898f4 (commit)
via 6f33809b5c5f6e4598d53bc77d6322d16b021f6d (commit)
via 31aa853ce9fcb6f901511492be0121a1e2864981 (commit)
via 6f834ad7c7dbf58b8a4b8c673941710f302320f3 (commit)
via fa41165e1b2447864a24ae6d44df7f4468fc9d33 (commit)
via 5f141114c744bfaf50cbfc60dfd64b5cb789878e (commit)
via 23ff75a0e0c8b7441ee7759b3e07e4280c83677c (commit)
via ea3cbda7e5a14ed3cab45b41c1f2b63afcd64976 (commit)
via d6bd9d27f2964f3adb927d8ed8eaaa30e6a6cb35 (commit)
via 2d0efb404e60e1789b79537298419f3773d43e6e (commit)
via 0aa72ef572cd58796232ed6b2d87e2a17d273738 (commit)
via 82258ed43563e90537a40a7d2acd8ad38a49dd6b (commit)
via f515f776a3c12896d1182808a31f622a543e6c7e (commit)
via 74c35de7603904dc77d096fc433fce742960302f (commit)
via f7d88f3c243537131f7d6050fed1159c9d023729 (commit)
via 7cfe51e6d11ee2fe66a1aba1a0f3fdbc4a112b0d (commit)
via 8e6fadb8657b1190c547fa8420d7371e6e53b769 (commit)
via efa66accf7bce41337ae8d4dbdabdbcc64f26857 (commit)
via 7b744d08c98140958efba383bbe2f37e7f0c9417 (commit)
via cfc02f5eff1dc589dfebb34291a003fdd0864927 (commit)
via 59628db8e8c1dc56298adc599d2112e6857969ad (commit)
via 58334c14ae61d7756ccc44315552a127111d69ab (commit)
via 03d51dff3a7ed08fd93fb37b61faae95e624adca (commit)
via 33fa3f1bc1081dd6ae4bf5d468489275e99749a7 (commit)
via 82c365bba076ce90a7d16ad2de3e1ad004c7e65f (commit)
via 1326334e8d51c8ec0659f807b6f2d76727ec7271 (commit)
via 51d3df292b08eae35aa22bacde125c0f3c807657 (commit)
via 6037862a9b106567491a69a9722f57256b2cff10 (commit)
via 548568a7bdbe08e3602590b44ff7c42ad2d7bf9a (commit)
via d985e9f77739a4eddfcfe992d7e842b460cf0bbc (commit)
via d396f3bdd80fec2f328ddf5c02e37bf9d560c027 (commit)
via a61011eadc4b1daa65c3200cad26c6494c4c2efc (commit)
via 2a9bcd26b031ce6fd87f31a0d5684d2783d7e3fd (commit)
via 19b92c56a078dd04590f9cddd87e7cb8a7a507a3 (commit)
via aef28d6289aed88af46333634fb6dbaf5276c8e0 (commit)
via 74ed6272a1315e07d4761060d1f075f94e07b226 (commit)
via ae6089fb0c02b527bd322cc0874bb1d5b3e73ea5 (commit)
via 09315c1b1d6d413b64b0ea6d26a8ba160cb9c127 (commit)
via 53a6242e5b41ea236f2beb3dd2a111f423754b14 (commit)
via 4f5193a4b06e1dfe7d6bb5bcffd32a7bb5a3bf88 (commit)
via a4445c0114897d0ba84a327ab8f7d93eb2216423 (commit)
via 938193ad8cd887f4278ecb9ec60cb3f339367cea (commit)
via b27322a2cc6ce087d9ebf9f02adbb81774e080a2 (commit)
via 995a5ea8df0bb6e483999baa86c3f4470483c834 (commit)
via 9559e8fc60d4751da9880f8485bbf61becd0fa78 (commit)
via d8375be3969f4c7d6305c3a79bfb5c0643ad1403 (commit)
via 17d57501242999d3319ca4beed4eab9c902eac2c (commit)
via ef6c4a24ad8ff62854751dd888fa5cb097c30136 (commit)
via 39b1754c1f67e9818802298c2e1a08fc15d9f916 (commit)
via 98b99e0ecf433547e73a8979eedd5f64d653805a (commit)
via 2d99a06f4c603e8e1bc9617af9e16a7fe49ec97c (commit)
via 0ae7326eef937eb4c1a3b33073464398b07c06f9 (commit)
via e3695783099ea0460f9ce728a46a55363ce742ac (commit)
via 4403448d9741b80096f201b80d76867b18d47879 (commit)
via 54bc46769c40806cc4064dc710fb14015d22eaad (commit)
via cb4982c8b07e318a99700535b3c9c3115aa51570 (commit)
via 270c2f7e1363c5eb64585f1bc54e52f9efe33096 (commit)
from 435a4704450deec7eada39c7446092ad5f8d734a (commit)
- Log -----------------------------------------------------------------
commit f44a58726305e6ce836f5d1ea18a332cc8ccf280
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:45:09 2010 +0200
Translation update done using Pootle.
commit 34e48a1db7e6ae2ee9f65c34afdc2640edf28410
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:44:36 2010 +0200
Translation update done using Pootle.
commit 30d50d497429bed5a38ab56674fefcc0543668d5
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:44:03 2010 +0200
Translation update done using Pootle.
commit 84bb80c94ecbbfc6ec1234854fc421bb376b5dc6
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:43:24 2010 +0200
Translation update done using Pootle.
commit 654a7f3974055da10e8e9fbf90e491c2e6d01ee5
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:41:35 2010 +0200
Translation update done using Pootle.
commit f80623579ecb6cbc66763faf8f61ce35e289d941
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:41:02 2010 +0200
Translation update done using Pootle.
commit b3874c802010bab677f4d4ada18010f2a282e583
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:40:51 2010 +0200
Translation update done using Pootle.
commit 54da47e49080896e8fd3d6750a8be05b7aecec67
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:40:36 2010 +0200
Translation update done using Pootle.
commit 401090964b3971e1694ff29f742eead670f551ba
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:40:32 2010 +0200
Translation update done using Pootle.
commit b8f3def1a024b355ae2ed7ceaa3c0d8be237b3a5
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:40:07 2010 +0200
Translation update done using Pootle.
commit 5bc8e56423332c56d0e2d8fb72cfad07a7257b73
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:39:26 2010 +0200
Translation update done using Pootle.
commit 785a01728ec479676e82285774951747603391dd
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:39:22 2010 +0200
Translation update done using Pootle.
commit f1ab41a0c7f5e578ec04c8f0290fc5765456eb84
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:39:12 2010 +0200
Translation update done using Pootle.
commit fe606142b3be7f7de9f19f0e772ddba815f88b45
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:38:58 2010 +0200
Translation update done using Pootle.
commit d925399c3612039b33f803db524be48642ef67df
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:38:48 2010 +0200
Translation update done using Pootle.
commit 90aeada661fbec7df8abd0c789cf1d0683cc315c
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:38:25 2010 +0200
Translation update done using Pootle.
commit c20ed6643176c3c8e9096eed75674abea0b4845c
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:38:15 2010 +0200
Translation update done using Pootle.
commit 5362e080ea1e171b1564d015a7fa774e43eef1d2
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:38:09 2010 +0200
Translation update done using Pootle.
commit 06c73aaae529e3e03718b42ebe39fde1bf65c163
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:38:04 2010 +0200
Translation update done using Pootle.
commit a9bb8e4a0abc1bfa1e42f30e9694ec36fda0fc86
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:37:33 2010 +0200
Translation update done using Pootle.
commit 1577910e30c46e05f2a165cd8c571eb1aa47f03e
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:37:11 2010 +0200
Translation update done using Pootle.
commit 558fc583a76262cb563935146589e216b3b6183a
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:37:05 2010 +0200
Translation update done using Pootle.
commit c61a0e18dc3aa2d6c1bb2319864f88b9d119d114
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:36:55 2010 +0200
Translation update done using Pootle.
commit 58926277ca88c87788ff36603a9af46ec1605e83
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:36:31 2010 +0200
Translation update done using Pootle.
commit 1dadf05ed79ce86bf5c3721747d20c37eef8c2cc
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:36:25 2010 +0200
Translation update done using Pootle.
commit 8d20e645638e0b619108943c6dc76631dc2ec697
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:36:15 2010 +0200
Translation update done using Pootle.
commit 2f4ad331e93ea1e3354124ce90416df3b1664fd0
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:35:18 2010 +0200
Translation update done using Pootle.
commit 55bd6c59624a7e283059d65873ce89890e225cb9
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:34:01 2010 +0200
Translation update done using Pootle.
commit decdf151c15418582ad14040a643e0808b2e13cd
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:33:25 2010 +0200
Translation update done using Pootle.
commit 5c0541cc2192e93b5f01fcc8ce88ef2beac7b2b3
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:33:11 2010 +0200
Translation update done using Pootle.
commit 70e712a3927b6ad41d7ef498ec2912ad80a1f139
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:32:36 2010 +0200
Translation update done using Pootle.
commit 01ab1cf63a84dcc81c28da665642579ce5339c55
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:32:27 2010 +0200
Translation update done using Pootle.
commit 5a70b97d66997640337466d1b0f001530fae3fb1
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:31:52 2010 +0200
Translation update done using Pootle.
commit f27601f49c589e0268f8b83cf99687c16c3bf511
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:31:01 2010 +0200
Translation update done using Pootle.
commit 979a216529514c9ca66c8c80eeff0e06b7c42449
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:30:50 2010 +0200
Translation update done using Pootle.
commit 7cd83d217ab25a03784d3de6f6b5bfa35d5ff7cb
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:30:41 2010 +0200
Translation update done using Pootle.
commit b952a3f42f417e3b39358c1cac8ab7d97d4731a8
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:30:13 2010 +0200
Translation update done using Pootle.
commit 5ab267240490404e3ebccb759a71dd7635606c84
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:29:40 2010 +0200
Translation update done using Pootle.
commit 84530814420d9980b3f79cc423e5a0e665d2409b
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:29:18 2010 +0200
Translation update done using Pootle.
commit 63f774f43a4892d9f675a37487d3f652bca79a5e
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:28:32 2010 +0200
Translation update done using Pootle.
commit d748dfbed76ea8ffad007179df80119f0dc8dd85
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:28:05 2010 +0200
Translation update done using Pootle.
commit fd74c6fde7ef747f6b4123cf0c95b132647ed4e0
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:27:25 2010 +0200
Translation update done using Pootle.
commit 55686de29c9564db242219fb76e2f359477b2faa
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:26:16 2010 +0200
Translation update done using Pootle.
commit 059ab47d6e52572bda3c9a6ec16765ac6e622014
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:25:48 2010 +0200
Translation update done using Pootle.
commit 45aae10249ac473f5830a01305606207cb4576b8
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:24:54 2010 +0200
Translation update done using Pootle.
commit 1f343595b6895cf7f478cae129f82d88bef78b41
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:24:43 2010 +0200
Translation update done using Pootle.
commit 59b44d3e387bcb9c2914cdd5643369be42e8742d
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:24:03 2010 +0200
Translation update done using Pootle.
commit df8fcfe628236eabc20e4b08bc14e2e48b0afa06
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:23:31 2010 +0200
Translation update done using Pootle.
commit 28b185a1b0cc0aa8f70447be5d96f5db329d375d
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:22:15 2010 +0200
Translation update done using Pootle.
commit 45e38209948535bb9cfcbef6ecb499b742a9805f
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:21:26 2010 +0200
Translation update done using Pootle.
commit 9d8659a2965a18430f1ee52446428859d1ae661a
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:21:20 2010 +0200
Translation update done using Pootle.
commit 8f6d297c50676681f595108b011960ebe9960459
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:21:09 2010 +0200
Translation update done using Pootle.
commit f00ef1ad09dbe751256a3defa23b59622ff79785
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:20:50 2010 +0200
Translation update done using Pootle.
commit 94e987dafdc4805d9109d2891b9a96e47ea1dcb3
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:20:38 2010 +0200
Translation update done using Pootle.
commit 42e65e9554f0ad4506659eadb99d900147a8197e
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:18:48 2010 +0200
Translation update done using Pootle.
commit 450247a73e6ae2bbd146df918f7533203babf3a9
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:18:33 2010 +0200
Translation update done using Pootle.
commit c7a5debae1a616d39070f601b1be5a548c5767e0
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:18:25 2010 +0200
Translation update done using Pootle.
commit e3f5c3a6d9b6fd88195765ccf97eb388e950b27a
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:17:55 2010 +0200
Translation update done using Pootle.
commit 757ad24e0adf019feb5b9af579a9022b1d5fe469
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:17:34 2010 +0200
Translation update done using Pootle.
commit 36817873a6353b2d99df01a78143b82c7231c3be
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:17:04 2010 +0200
Translation update done using Pootle.
commit 4b6388493903705ae31a6c436ef28b78df7a5ffb
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:16:26 2010 +0200
Translation update done using Pootle.
commit 23b573d659445317e66ff06947eeeef43313b95a
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:15:41 2010 +0200
Translation update done using Pootle.
commit 27901278c325004014c88cf370dfabb8f4cfc532
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:14:20 2010 +0200
Translation update done using Pootle.
commit 3437164c132d9805fadc6f772e4c20f86762b45b
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:13:56 2010 +0200
Translation update done using Pootle.
commit 138faa1c0b76c602ff6bbf938abf5a8637365520
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:13:49 2010 +0200
Translation update done using Pootle.
commit d81541128ce6769616e793c792a86d43e677e057
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:13:37 2010 +0200
Translation update done using Pootle.
commit 92bb3a768d6416c03878c4557cf0a38eb3c1929d
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:13:15 2010 +0200
Translation update done using Pootle.
commit e70070d3f9256b07d468772e80aa62ce972caa8a
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:13:04 2010 +0200
Translation update done using Pootle.
commit 77da4dbc72cc04b8757485f9b1904e3fe0f59d7f
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:12:38 2010 +0200
Translation update done using Pootle.
commit 3c9487612d7e05879bc59143a572e5342f437e74
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:12:14 2010 +0200
Translation update done using Pootle.
commit 71a00ecbec013fedd4f173d68dad2fb31edd2e61
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:11:59 2010 +0200
Translation update done using Pootle.
commit 7cfb63b5f7a1c69a03e56f2ee648d6aa18c4fd4c
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:11:50 2010 +0200
Translation update done using Pootle.
commit b0b882f7e0aabac5b160db62458b480d1359fc2a
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:10:33 2010 +0200
Translation update done using Pootle.
commit 031e59a423c2d8cfd8c5b25e68e4b94bab1317d4
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:08:45 2010 +0200
Translation update done using Pootle.
commit 1db136f70912fe2484d29801dbeb6b696037de2d
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:06:50 2010 +0200
Translation update done using Pootle.
commit d332522f3aaffbc0341fdb6fe0dfbf7e6070e0f4
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:05:43 2010 +0200
Translation update done using Pootle.
commit 628e94b2a575d309e8db00c895df229d732467b5
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:05:13 2010 +0200
Translation update done using Pootle.
commit 75cbba5a170ab4234e5090f99e81504db2e7af01
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:05:06 2010 +0200
Translation update done using Pootle.
commit 226985f41f33305a1896ed9c46d1921d92e4e7d0
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:05:01 2010 +0200
Translation update done using Pootle.
commit 59bb9d2593ef787fb7480790020ab98fbe050343
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:04:11 2010 +0200
Translation update done using Pootle.
commit 57a94c5a39e325beb53a129e540484029e51fd04
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:03:59 2010 +0200
Translation update done using Pootle.
commit a4ffc2b8a95ffcf2762d9b1374602a77b4455dcc
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:03:26 2010 +0200
Translation update done using Pootle.
commit 22fc53efd77f3bcbb734d3bae8788907009bb2ec
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:03:08 2010 +0200
Translation update done using Pootle.
commit 8723446a2eb970340adc431216252c24102be550
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:02:59 2010 +0200
Translation update done using Pootle.
commit 8ac6211e57e8eca94f1f988b97c224e7fe624bbe
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:02:40 2010 +0200
Translation update done using Pootle.
commit d341ece2e3c27d88bc13a30bc9d155f39153dcda
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:01:10 2010 +0200
Translation update done using Pootle.
commit c6a90d49c616a611a9fb187ebab7b97770c0374d
Author: dbc334 <dbc334(a)gmail.com>
Date: Mon May 3 00:01:01 2010 +0200
Translation update done using Pootle.
commit fd2b1b6984841ca3467c8aed5c0147457cf39b7c
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:53:31 2010 +0200
Translation update done using Pootle.
commit 31c506c38a61640ed4b405eb86c08597b04a027d
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:52:30 2010 +0200
Translation update done using Pootle.
commit 54f21f173d70d7ab524e3d6cd7b34e173ee750b6
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:51:42 2010 +0200
Translation update done using Pootle.
commit 5c4ff5ed9b88a1181d3a5db857779def8521c91c
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:50:05 2010 +0200
Translation update done using Pootle.
commit 320d2c086a865a6988a1837c3f4891ddd7304cc9
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:47:20 2010 +0200
Translation update done using Pootle.
commit 2a3136a6e37e576a8489c32e1ab608f3609b0779
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:46:51 2010 +0200
Translation update done using Pootle.
commit 23f59392444359dc706caa440d04d3b4bb65229a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:46:05 2010 +0200
Translation update done using Pootle.
commit b0b7a9fe379e3e88429355e705196072d253563c
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:45:25 2010 +0200
Translation update done using Pootle.
commit 2c4e834c7ead4ee984beaff5de1bb23544f11554
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:45:09 2010 +0200
Translation update done using Pootle.
commit 8a27f222082d68ab55a04750c265bd9ee1c86a80
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:38:00 2010 +0200
Translation update done using Pootle.
commit 4ce2d7027d5e2de62150310da2d628b0c900bd03
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:37:05 2010 +0200
Translation update done using Pootle.
commit 74cadfe540090bc12d1920593f16114e58b9e940
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:33:34 2010 +0200
Translation update done using Pootle.
commit 1db00e871eaf826403a0031353375780311f08cb
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:33:23 2010 +0200
Translation update done using Pootle.
commit 5014f2ef116f02166c0ca48866744a1f2955c727
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:32:36 2010 +0200
Translation update done using Pootle.
commit d2f1c5a06021ff4f9128416a1a83fa896d719784
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:32:02 2010 +0200
Translation update done using Pootle.
commit c392007d59141e5d5273e490d19271de11069512
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:31:11 2010 +0200
Translation update done using Pootle.
commit 4344b3a2385402a74ea58f9854d75e006d89581e
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:29:17 2010 +0200
Translation update done using Pootle.
commit 08bd578f5ee4a6854f73e1710cbd9883c560b161
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:27:49 2010 +0200
Translation update done using Pootle.
commit bc414e21446906268fc35b1402645ea8333d4fd3
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:26:48 2010 +0200
Translation update done using Pootle.
commit 378ae8134baeab70b638b537ce0d3045102d08f3
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:26:37 2010 +0200
Translation update done using Pootle.
commit 1e7f4947c0cd26fb6693b9409f2cc3bebea87fe5
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:26:00 2010 +0200
Translation update done using Pootle.
commit 574b00e0f7df3b5d0f2900c40281b4918b2afa19
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:25:48 2010 +0200
Translation update done using Pootle.
commit 6893930b4fe9ea59c2a22b4ac7eccb8637d21482
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:23:51 2010 +0200
Translation update done using Pootle.
commit ff8d7d27b7beb980f507cde43629fac636396f04
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:23:25 2010 +0200
Translation update done using Pootle.
commit 43d55e9dbacd2e73abbe384eede011cb1731126b
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:21:23 2010 +0200
Translation update done using Pootle.
commit 85d5c6b47f17d0db9795a5abcba24c51f2d21a4b
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:21:03 2010 +0200
Translation update done using Pootle.
commit e76c922001727ac5e6b36c117805ea5361c87655
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:19:42 2010 +0200
Translation update done using Pootle.
commit 880070ba0c83ce6941a4fe4b4b83f5ba11308e63
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:18:43 2010 +0200
Translation update done using Pootle.
commit b83ab29971bc0dedc3676efe61f517a4cfd7efa3
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:17:43 2010 +0200
Translation update done using Pootle.
commit 35bd442d3f90e7bd3f57a6cf7fe377a7e4000cf3
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:15:51 2010 +0200
Translation update done using Pootle.
commit ec1695dec3a6c867aee2d0b1b5b057b35e320f4b
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:15:04 2010 +0200
Translation update done using Pootle.
commit 985675b01f865da2149a63444cdce3e89c0e15b8
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:14:38 2010 +0200
Translation update done using Pootle.
commit 340d7fcb25029add9d4a7c3d0917cedcfca95ad1
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:14:25 2010 +0200
Translation update done using Pootle.
commit fb7147a7c45b4e03cbfd6a976f20e7438fd89693
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:14:13 2010 +0200
Translation update done using Pootle.
commit 256a2ad345d481cff541756f14be2d24f939a887
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:13:44 2010 +0200
Translation update done using Pootle.
commit 189dd40096ead31117791af31bcf9a103873ae64
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:13:13 2010 +0200
Translation update done using Pootle.
commit 40f5233ab87bc580b6f2feceb429a3f01ba97de3
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:09:35 2010 +0200
Translation update done using Pootle.
commit 4b4788946edfda1299f7709d849795d745a9618a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:09:21 2010 +0200
Translation update done using Pootle.
commit 108593480ce342652c84a5cfdd2d015e97fc57b1
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:08:41 2010 +0200
Translation update done using Pootle.
commit 319c704b0138ea3b4b0c3c5290e61de92e8102d1
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:07:17 2010 +0200
Translation update done using Pootle.
commit cf1d0cb42651a397a56395519789b3b7bb5369cd
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:06:34 2010 +0200
Translation update done using Pootle.
commit 0ffeb54e24e1113ff94d577c027587aa5b6ed2e2
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:06:22 2010 +0200
Translation update done using Pootle.
commit d691f9ed51d904f0a0f2a670548d7a0f9c224680
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:05:32 2010 +0200
Translation update done using Pootle.
commit 917a59f433214089c4a2921aac8c51d90848356b
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:05:21 2010 +0200
Translation update done using Pootle.
commit 4716327864970f87f5ff54f54fd2645e88aa4b80
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:04:54 2010 +0200
Translation update done using Pootle.
commit 62b2f5f75da12b263e3e57a7383f551b706865ec
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:03:41 2010 +0200
Translation update done using Pootle.
commit c8fab8bdca4a36f4e309bf58538860265951349f
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:03:23 2010 +0200
Translation update done using Pootle.
commit 4ad6208fc06a5187acefac70ede7ecace1af3456
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:03:17 2010 +0200
Translation update done using Pootle.
commit 2c7689faa2dd93b61386beae33d9cb89e754336a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:03:10 2010 +0200
Translation update done using Pootle.
commit 65c05fbf1a9da06a7e69d162d88c8da24951a5f2
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:03:00 2010 +0200
Translation update done using Pootle.
commit 71ade72a7cb919ffcde25744d04685fa9e84593c
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:02:04 2010 +0200
Translation update done using Pootle.
commit 8e066358d5619ee0518c97e8db74e725644fde07
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:00:57 2010 +0200
Translation update done using Pootle.
commit 7a6035320a43eaf61e1d61f07f17e9d704207a41
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:00:29 2010 +0200
Translation update done using Pootle.
commit 7a2535a9145e6e0859236be1f0413cb7988f7d1a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 23:00:12 2010 +0200
Translation update done using Pootle.
commit dbd1852742eea2ee133423fc0ea44e4d4d3725c8
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:58:35 2010 +0200
Translation update done using Pootle.
commit 275b8a35037affa36c6475638096424218263704
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:58:27 2010 +0200
Translation update done using Pootle.
commit ad55a1d1bd5c296f0eb3ac50c18cdddb60f873fc
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:58:20 2010 +0200
Translation update done using Pootle.
commit 1202eaac6210b50f3c796199b485a48461911c1d
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:58:13 2010 +0200
Translation update done using Pootle.
commit 5d3d3a8d8b8063f90041b343b180cce530dccbe0
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:57:50 2010 +0200
Translation update done using Pootle.
commit 5bd7003948475590c156326e6595e7f18312e9b8
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:57:26 2010 +0200
Translation update done using Pootle.
commit b6fc1e615c67ea2c4d7b51390110051133c9e68f
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:56:22 2010 +0200
Translation update done using Pootle.
commit 6a523a55cea21c0f942caec8c01ea8c0138f7d51
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:56:07 2010 +0200
Translation update done using Pootle.
commit 92f4b2e45aa30822af3ae38599d7e8bf943addd4
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:55:52 2010 +0200
Translation update done using Pootle.
commit 2785084a2131fa5f092009be1351ca6e8c9aff15
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:54:36 2010 +0200
Translation update done using Pootle.
commit f0b562d16d5e76ed44a40448387d256b75a3a9cd
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:54:22 2010 +0200
Translation update done using Pootle.
commit 6ec08ad20aa6e5913ccb586ebc2129e054f9ac31
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:54:02 2010 +0200
Translation update done using Pootle.
commit 75057b6a28b1ff39e56aff96d9bd89510a63434e
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:53:28 2010 +0200
Translation update done using Pootle.
commit cc35c5117062a50658175be18bbfcc254af7538f
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:52:46 2010 +0200
Translation update done using Pootle.
commit a9ab7432cdad4e6f3b445dd87f30b9d51d040cb9
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:52:39 2010 +0200
Translation update done using Pootle.
commit 10f0d47c018bd003e7f858effdb5dcff080cfa55
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:52:33 2010 +0200
Translation update done using Pootle.
commit c67254409d2cb02d434a473b13e18e0b5191d9e9
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:51:42 2010 +0200
Translation update done using Pootle.
commit 1e481b06fa0adaa7134a7e9c340441531d888d30
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:51:35 2010 +0200
Translation update done using Pootle.
commit 36102aa2a0f5cb831e57d8425108e2ed2e4c8af5
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:51:26 2010 +0200
Translation update done using Pootle.
commit c53379d94cfb43fe963105e709e3999b3aa3a439
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:51:13 2010 +0200
Translation update done using Pootle.
commit cccbab254cda16a0b8d2d57cda098ee93547bc5d
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:50:53 2010 +0200
Translation update done using Pootle.
commit b3e999a2c38d1fc3b687ba0702f5608febe912bd
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:50:36 2010 +0200
Translation update done using Pootle.
commit 84f3fbe20d15ab45d65cdfd9ebe8b97a230e1233
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:49:10 2010 +0200
Translation update done using Pootle.
commit 3935976b0e009a98b5ad170a4da581ce61847238
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:48:03 2010 +0200
Translation update done using Pootle.
commit 0ba017bf6af7bfd3a75fbb45466448b875d0a2e5
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:47:17 2010 +0200
Translation update done using Pootle.
commit e7992ca70cab96032940eb44856f4163ccb98424
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:47:11 2010 +0200
Translation update done using Pootle.
commit 0c7fdd0d9dad4eefc924bc4b08a5df6c47bdc604
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:46:55 2010 +0200
Translation update done using Pootle.
commit 8b3cc962125a9b9e6e44a44bc3d88f8fc477a672
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:46:40 2010 +0200
Translation update done using Pootle.
commit 8d27d9af4ebb7a3403c413d3c80cbef53a0d9731
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:45:32 2010 +0200
Translation update done using Pootle.
commit bb75c61574f71f3536e8ec3b6a1f08867f5144d9
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:45:20 2010 +0200
Translation update done using Pootle.
commit aeb941082f5f2099d20ed7dbda14fdc84fb5a534
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:45:10 2010 +0200
Translation update done using Pootle.
commit 63a81ad192ee890ae1b0b031b7e73fe3741cadba
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:44:35 2010 +0200
Translation update done using Pootle.
commit 5fe7e14ca2098f9d358b38ebd6cb489fe2b685f7
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:44:17 2010 +0200
Translation update done using Pootle.
commit bc983c689b03e7241e21e51587c3e31df63a103c
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:44:11 2010 +0200
Translation update done using Pootle.
commit 4f4a8806f28924487b32e40c6c8cb540d3458b96
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:43:53 2010 +0200
Translation update done using Pootle.
commit 2c4a122941c4b0e8868d7c7a39c57bdaf3c865d8
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:43:34 2010 +0200
Translation update done using Pootle.
commit 508f58cd996ae9fa9c2e55fc738076a7def4ef99
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:43:10 2010 +0200
Translation update done using Pootle.
commit 82a352a522d8f492ff3d608f3acd17127c93cc34
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:42:12 2010 +0200
Translation update done using Pootle.
commit 9154ef656df4e2f8a4a7c6981ec12973e2bae948
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:41:41 2010 +0200
Translation update done using Pootle.
commit 015650d93b589eca4a9025ffca5ae63fc5e89e4c
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:39:21 2010 +0200
Translation update done using Pootle.
commit fc7c9427894d9c5b38d3241237277e25e1e2997b
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:38:28 2010 +0200
Translation update done using Pootle.
commit 9f61382817145cd1ba0ce9fbe7632c6f64a1c329
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:37:51 2010 +0200
Translation update done using Pootle.
commit c1f770a9ccf0497fcc8b8851e3cbcf3951a7b12d
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:37:45 2010 +0200
Translation update done using Pootle.
commit 549102335c5c55adce1d297665c6bbaa4366c9d6
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:37:39 2010 +0200
Translation update done using Pootle.
commit d1f14227eb9c51f6f1a6d5c61673c77d2c3e3f41
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:37:28 2010 +0200
Translation update done using Pootle.
commit 51f65c5b2940a80b2025d9c794984c9a016b5041
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:37:04 2010 +0200
Translation update done using Pootle.
commit b0fb47661c7de504a14911d283d5ec1865547922
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:36:43 2010 +0200
Translation update done using Pootle.
commit 0b5115523dc4170e73b2e32a5dc65c1a10057e31
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:36:16 2010 +0200
Translation update done using Pootle.
commit ee25ace5cd2c77e0e4f01eb100fbcfe41548732e
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:35:59 2010 +0200
Translation update done using Pootle.
commit 654f7e2be795e4e222f6bb45a6cf0e94620cb4ab
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:34:34 2010 +0200
Translation update done using Pootle.
commit e51169884c2aae6b39e4c48895c8a201ab2cc86a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:34:17 2010 +0200
Translation update done using Pootle.
commit 14679452fc847f2aa049cdf6fe1275a195ecad43
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:34:09 2010 +0200
Translation update done using Pootle.
commit 195d5a816d68257222f914fa6f949dc99876c696
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:33:59 2010 +0200
Translation update done using Pootle.
commit c011ea6833847b6874d30ce22316156b4ad130f5
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:33:34 2010 +0200
Translation update done using Pootle.
commit 23c5133a559b350bc6be64b640f8c69132db8cfa
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:32:25 2010 +0200
Translation update done using Pootle.
commit 0072e7fecd538e54b96f22a6c2f489b74f254c09
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:30:55 2010 +0200
Translation update done using Pootle.
commit bb7bb4f8e305bbd409c2988404aa9e91f4fe08fc
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:28:25 2010 +0200
Translation update done using Pootle.
commit 354db90f5fb6c505082bc4fb0bfb10e7655fda09
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:27:45 2010 +0200
Translation update done using Pootle.
commit a724ff53d90b93fb5037557e220f606286fab03a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:27:30 2010 +0200
Translation update done using Pootle.
commit 6da83d8c15cbe36d6ac44a49469a38e8ef93c220
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:26:46 2010 +0200
Translation update done using Pootle.
commit e137bd5763ecd6c5699d68b61b06b0de657f34d4
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:26:28 2010 +0200
Translation update done using Pootle.
commit d4574ba9027d7cb0e8d6fa0a5b530ba48d50fdda
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:26:00 2010 +0200
Translation update done using Pootle.
commit 397ea7d3f5d522ec90d9ab8ec20143f6bac1411e
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:24:13 2010 +0200
Translation update done using Pootle.
commit 1d6c2ad11be2da45d5dac6fe5427a6f6440ae72a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:24:04 2010 +0200
Translation update done using Pootle.
commit 8b51444d08f3f0154e8c865b22cf394571fc0878
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:23:53 2010 +0200
Translation update done using Pootle.
commit 71479870c894abe9a1aa362da850b727aa441366
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:23:40 2010 +0200
Translation update done using Pootle.
commit 995d5ae069333a0ee8e6e3f857fce00d6d8401bc
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:21:33 2010 +0200
Translation update done using Pootle.
commit 579f2121aa439d7f1e62fa8226d65c3210819d30
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:19:09 2010 +0200
Translation update done using Pootle.
commit fd03a314c4bce225a184c2b563b62ad09349d5ce
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:14:18 2010 +0200
Translation update done using Pootle.
commit d55a5a0964c4836b3fec1a244e0a7c9f502ca9e7
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:12:09 2010 +0200
Translation update done using Pootle.
commit 89d5f0ba51851cf582ec629aaab830e3d99a85f2
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:12:06 2010 +0200
Translation update done using Pootle.
commit cb61b9e904f80dd8d29a2b10159bcd1b8b7caf60
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:59 2010 +0200
Translation update done using Pootle.
commit 01e54446cdbb98a37c4d3bb0e0c26f5a42bbe28c
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:55 2010 +0200
Translation update done using Pootle.
commit 149e1f25640c4d4c6192901d93a861c574d2befd
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:51 2010 +0200
Translation update done using Pootle.
commit 16bddcdeb44cecb4983d8aaaa60ec524cbc7d0d2
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:45 2010 +0200
Translation update done using Pootle.
commit a118df6c4d9874c2b0e760e52c3f1bdf781ccdb0
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:42 2010 +0200
Translation update done using Pootle.
commit ae653d70edb52504021b9cf98907a2935c6a1349
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:39 2010 +0200
Translation update done using Pootle.
commit 67585b501373dc939335eca8c0c09340983f2ebe
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:36 2010 +0200
Translation update done using Pootle.
commit 5d2053a356e2220bd942575092727fc080863ff4
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:33 2010 +0200
Translation update done using Pootle.
commit 8f93b91e3813e401faaefba552325fa940734818
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:29 2010 +0200
Translation update done using Pootle.
commit f1f7d7d4763ff4ab795434d73831bab0ff96269f
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:11:26 2010 +0200
Translation update done using Pootle.
commit 1b9b2fc6f2533848d323adab171231515ed1ddfb
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:09:34 2010 +0200
Translation update done using Pootle.
commit f072d46a8dd30bcf6935d23c2004515f9ed02400
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:09:24 2010 +0200
Translation update done using Pootle.
commit fbeb6d8a8d48316b568dfbe791dae68a9ded01ac
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:08:53 2010 +0200
Translation update done using Pootle.
commit ce384974048006a3427521c832efe43d11f8e641
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:08:30 2010 +0200
Translation update done using Pootle.
commit 94bfec0ae6bb403beddc5604c004f423b762f633
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:08:21 2010 +0200
Translation update done using Pootle.
commit 3ea31d12939ce9bfe7aa628328a9bf93699b385a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:08:10 2010 +0200
Translation update done using Pootle.
commit c129d5069631d5f4310fcf95e343976cb8ac02b5
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:08:04 2010 +0200
Translation update done using Pootle.
commit ef251c24937d8c659db8a364e4985863227779a8
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:07:16 2010 +0200
Translation update done using Pootle.
commit 48e521a1baf64fa0d4f6877c1cce66b0c60f5512
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:07:07 2010 +0200
Translation update done using Pootle.
commit 7178804f1f3ac283a4786c4f51edde54510332c6
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:05:18 2010 +0200
Translation update done using Pootle.
commit 76889b30b0e540fdf5f42207eb6f03f9251cd36a
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:04:18 2010 +0200
Translation update done using Pootle.
commit 3fc083d1aaabd3d1d30556b6791b09bb6b94546b
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:03:35 2010 +0200
Translation update done using Pootle.
commit c7ba82b9f2a332882a9f309e132133e3a1004618
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:03:28 2010 +0200
Translation update done using Pootle.
commit 0538df8ec574d1f348f409a50fd15fdcdae70748
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:03:13 2010 +0200
Translation update done using Pootle.
commit bbcaa5ef2b490f70b6aaa53ec792d0fcdb9fdb3c
Author: dbc334 <dbc334(a)gmail.com>
Date: Sun May 2 22:01:11 2010 +0200
Translation update done using Pootle.
commit 3fe1c4ebc2532ca0e643a0678bd1545cb287b54c
Merge: d29897ef9d4e3d56751c7492f1d3635fbfab65fd 435a4704450deec7eada39c7446092ad5f8d734a
Author: Michal Čihař <michal(a)cihar.com>
Date: Sat May 1 22:40:31 2010 +0200
Merge remote branch 'origin/master'
commit d29897ef9d4e3d56751c7492f1d3635fbfab65fd
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:49:31 2010 +0200
Translation update done using Pootle.
commit d9c69e54f49ca5527f82bf57d69e4f73a13a54d8
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:49:00 2010 +0200
Translation update done using Pootle.
commit 090004abd479f736ab736b621c532b41e7a348a3
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:40:37 2010 +0200
Translation update done using Pootle.
commit 4c647909cef7fe9ff0eb3843b116eb83005006af
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:38:53 2010 +0200
Translation update done using Pootle.
commit 0df262175cae753d03f10e713c853a778ae610fe
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:28:16 2010 +0200
Translation update done using Pootle.
commit 07f722a9e5f9319c86e31bd7912d966d06b6f873
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:27:59 2010 +0200
Translation update done using Pootle.
commit 2432477f8a8e4dfcac47c92531afb8b6d4cd2c25
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:27:46 2010 +0200
Translation update done using Pootle.
commit ac88a6017466e5377985f2169ebce090c19a5a98
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:27:24 2010 +0200
Translation update done using Pootle.
commit 3afe72c62f4e831ed2c7fa2bb89b7447406068f6
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:26:54 2010 +0200
Translation update done using Pootle.
commit 5f757d462c74997b496cfa52c2b31e367927f274
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:25:48 2010 +0200
Translation update done using Pootle.
commit 282241420b73a485c44da3b22a841d4cdcd46fb4
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:25:21 2010 +0200
Translation update done using Pootle.
commit 0bd529039737864053f74ba0980d83050efcc99f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:24:59 2010 +0200
Translation update done using Pootle.
commit 4e267537b737f559a5489ed8fb8e75dfb78e34af
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:24:10 2010 +0200
Translation update done using Pootle.
commit f4323904ca09d08e2c204b768b18b154b3aee7a1
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:23:58 2010 +0200
Translation update done using Pootle.
commit 6d5f0b66267f150154e81047418c97e5596c1b72
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:23:43 2010 +0200
Translation update done using Pootle.
commit dbc45cc987e1c3e20f43dceae7d08e897873975d
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:22:15 2010 +0200
Translation update done using Pootle.
commit 338ac32bc630d0244b0d7b8657c171a467baf51b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:21:31 2010 +0200
Translation update done using Pootle.
commit f5f6e52c6d137f7815aee2885497282f2463bf3f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:20:38 2010 +0200
Translation update done using Pootle.
commit 258ebc47226fe190bc4bf052a660119b3c7a6cd6
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:20:03 2010 +0200
Translation update done using Pootle.
commit 89406048a5b805e0ca2349f8faafe4a3c30996df
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:18:22 2010 +0200
Translation update done using Pootle.
commit 9e6226ae21e7cd4bdf2323810f0e9d24116abe20
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:12:14 2010 +0200
Translation update done using Pootle.
commit c3cf63fe292424246b417e33a27b312ab5fdd5dc
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:11:57 2010 +0200
Translation update done using Pootle.
commit 4a283fad0adad94f61d5491ea4585896ff3b81a5
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:11:18 2010 +0200
Translation update done using Pootle.
commit 5391f3938d214301e57ba4289c8e20a9de031a5f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:11:10 2010 +0200
Translation update done using Pootle.
commit 22c238154d0b73848f67fc97a3c5bcfcbe7aac0f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:10:49 2010 +0200
Translation update done using Pootle.
commit 3a92ea2a1adcf213e6d43d1554524de6d44651de
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:09:26 2010 +0200
Translation update done using Pootle.
commit f3aa3809a59cda5e4d3d10abbd42dcbf3235f7a2
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:08:55 2010 +0200
Translation update done using Pootle.
commit c646e35a71bd528414bb858002c1f320ea14d924
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:07:09 2010 +0200
Translation update done using Pootle.
commit 71cd4812d8533b0e23375ff78e96fcba3b42b23b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:03:55 2010 +0200
Translation update done using Pootle.
commit 1391534599edb738f549c01cd7fa6947e5d04d51
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:03:37 2010 +0200
Translation update done using Pootle.
commit 62fd2c7030c00c7b15bd6786a4a16e2b754dbd77
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:03:17 2010 +0200
Translation update done using Pootle.
commit 44dbea279105123d922f8d8173a373372efc49a1
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:02:53 2010 +0200
Translation update done using Pootle.
commit 81700c7e4430e489eb4344ebd2dc407ec0785f3b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:02:41 2010 +0200
Translation update done using Pootle.
commit 1f264381cdf1f5ea38bbeb97daba9276e97ea645
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:02:15 2010 +0200
Translation update done using Pootle.
commit da04396c7320cb2bfb3bf843e6a019b69e096b9e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:01:48 2010 +0200
Translation update done using Pootle.
commit 50f5cc754a60cc524e4cf6d5329757f721d87275
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:01:26 2010 +0200
Translation update done using Pootle.
commit 83a1bdace90417976711a4b594e859be9dbcfc7e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:00:50 2010 +0200
Translation update done using Pootle.
commit af9ff9e934390849138c4aa8cf05e2aebe6f73d0
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 07:00:15 2010 +0200
Translation update done using Pootle.
commit ce9d0b6a484944582c50bb9a3e8a23e6cb44e0f6
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:59:24 2010 +0200
Translation update done using Pootle.
commit 8e32a05a2a0f083867950dcc59471fd9ffd7b7fe
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:59:08 2010 +0200
Translation update done using Pootle.
commit d2c1a33b827e752094f7d3ce45dda4b86f415f2c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:58:50 2010 +0200
Translation update done using Pootle.
commit 32baf6cdf9293b673ac4a73e1615956eaaf3653b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:58:26 2010 +0200
Translation update done using Pootle.
commit 9d4e71d0aa2477089740fc90ba0df7f643f63310
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:58:07 2010 +0200
Translation update done using Pootle.
commit 5fb87fb0fd583bf393a5481936cafd7f22fd11db
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:57:59 2010 +0200
Translation update done using Pootle.
commit d2948da52585b635ce0910d355562f51390d6eff
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:57:47 2010 +0200
Translation update done using Pootle.
commit 4d256fd8d3da5dd3ce6c5e305afe2dbff5ab60d2
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:57:37 2010 +0200
Translation update done using Pootle.
commit 44f9618102d29ef3bdb78b3689565ea1fd53bb46
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:57:26 2010 +0200
Translation update done using Pootle.
commit 64ae1f07dffa521bcb05faa7641fb077071b450b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:56:51 2010 +0200
Translation update done using Pootle.
commit c1b53faac95079c989e2eff1dff7a27a8111f4b8
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:56:34 2010 +0200
Translation update done using Pootle.
commit afa7def8e7edabe143a15548a492e6f4caa2f733
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:56:20 2010 +0200
Translation update done using Pootle.
commit d3be86e4691e5294d392e252abb934cb738208f0
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:55:48 2010 +0200
Translation update done using Pootle.
commit 1494d36fab8df657bbc7484893f6e5004507101c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:55:23 2010 +0200
Translation update done using Pootle.
commit b7d45c8aa2e05f6970276c8aae721d412891954e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:52:18 2010 +0200
Translation update done using Pootle.
commit 584262750c6444fb3eae1b7a9779ef6c9042d4d8
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:51:16 2010 +0200
Translation update done using Pootle.
commit e37c900b760edaf211edf7e3c9f96c1502a3365f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:50:51 2010 +0200
Translation update done using Pootle.
commit a2178f03434cc87f4458440810c1e41043722016
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:50:29 2010 +0200
Translation update done using Pootle.
commit 51f573eeff8358e54746c8469fca0b3f80541f9c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:50:06 2010 +0200
Translation update done using Pootle.
commit a2c958af984118b81e1fe3f24d88624ae948fdb3
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:49:55 2010 +0200
Translation update done using Pootle.
commit 80e063b38e3a968d33c9dd78a6c0d2fa7b5c76c5
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:49:07 2010 +0200
Translation update done using Pootle.
commit aab07d531b163646f4b67e3ce2d8031dcbf6c35c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:48:16 2010 +0200
Translation update done using Pootle.
commit a75855ded827a6f4cba37fad95fccf9dfbf40204
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:48:06 2010 +0200
Translation update done using Pootle.
commit 9d3b893df4219cd3bc8a46396a1750ba01b70612
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:47:59 2010 +0200
Translation update done using Pootle.
commit 336ffa1e8094b8b36b904712ad63c3988a5eb0e3
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:47:17 2010 +0200
Translation update done using Pootle.
commit e0e5846e18125bbd01b935b76695fb83e2e7ec0f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:46:52 2010 +0200
Translation update done using Pootle.
commit 04a61510f3c98c69d6249d7202bcf8600cab8528
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:46:07 2010 +0200
Translation update done using Pootle.
commit fd0f45b955637d2c4793f501c599079bf96e3892
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:44:17 2010 +0200
Translation update done using Pootle.
commit 737d18c7143dfd1b949d4172d94b0f8591ad692e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:42:26 2010 +0200
Translation update done using Pootle.
commit aa9e97e6f8636f5ffed06ba2909eab17dd73f224
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:29:00 2010 +0200
Translation update done using Pootle.
commit bedd77f19e8dd21a5d8b16aa0a2999559b98c095
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:28:51 2010 +0200
Translation update done using Pootle.
commit fb8841fbe9e97b65559c076bca7850638d1898f4
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:28:14 2010 +0200
Translation update done using Pootle.
commit 6f33809b5c5f6e4598d53bc77d6322d16b021f6d
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:27:25 2010 +0200
Translation update done using Pootle.
commit 31aa853ce9fcb6f901511492be0121a1e2864981
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:26:28 2010 +0200
Translation update done using Pootle.
commit 6f834ad7c7dbf58b8a4b8c673941710f302320f3
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:26:02 2010 +0200
Translation update done using Pootle.
commit fa41165e1b2447864a24ae6d44df7f4468fc9d33
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:25:53 2010 +0200
Translation update done using Pootle.
commit 5f141114c744bfaf50cbfc60dfd64b5cb789878e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:25:31 2010 +0200
Translation update done using Pootle.
commit 23ff75a0e0c8b7441ee7759b3e07e4280c83677c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:25:09 2010 +0200
Translation update done using Pootle.
commit ea3cbda7e5a14ed3cab45b41c1f2b63afcd64976
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:24:56 2010 +0200
Translation update done using Pootle.
commit d6bd9d27f2964f3adb927d8ed8eaaa30e6a6cb35
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:23:57 2010 +0200
Translation update done using Pootle.
commit 2d0efb404e60e1789b79537298419f3773d43e6e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:22:04 2010 +0200
Translation update done using Pootle.
commit 0aa72ef572cd58796232ed6b2d87e2a17d273738
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:21:42 2010 +0200
Translation update done using Pootle.
commit 82258ed43563e90537a40a7d2acd8ad38a49dd6b
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:21:22 2010 +0200
Translation update done using Pootle.
commit f515f776a3c12896d1182808a31f622a543e6c7e
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:20:29 2010 +0200
Translation update done using Pootle.
commit 74c35de7603904dc77d096fc433fce742960302f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:20:04 2010 +0200
Translation update done using Pootle.
commit f7d88f3c243537131f7d6050fed1159c9d023729
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:19:04 2010 +0200
Translation update done using Pootle.
commit 7cfe51e6d11ee2fe66a1aba1a0f3fdbc4a112b0d
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:11:29 2010 +0200
Translation update done using Pootle.
commit 8e6fadb8657b1190c547fa8420d7371e6e53b769
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:10:02 2010 +0200
Translation update done using Pootle.
commit efa66accf7bce41337ae8d4dbdabdbcc64f26857
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:08:31 2010 +0200
Translation update done using Pootle.
commit 7b744d08c98140958efba383bbe2f37e7f0c9417
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:07:50 2010 +0200
Translation update done using Pootle.
commit cfc02f5eff1dc589dfebb34291a003fdd0864927
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:06:41 2010 +0200
Translation update done using Pootle.
commit 59628db8e8c1dc56298adc599d2112e6857969ad
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:05:14 2010 +0200
Translation update done using Pootle.
commit 58334c14ae61d7756ccc44315552a127111d69ab
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:04:57 2010 +0200
Translation update done using Pootle.
commit 03d51dff3a7ed08fd93fb37b61faae95e624adca
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:03:52 2010 +0200
Translation update done using Pootle.
commit 33fa3f1bc1081dd6ae4bf5d468489275e99749a7
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:03:27 2010 +0200
Translation update done using Pootle.
commit 82c365bba076ce90a7d16ad2de3e1ad004c7e65f
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:03:08 2010 +0200
Translation update done using Pootle.
commit 1326334e8d51c8ec0659f807b6f2d76727ec7271
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:02:46 2010 +0200
Translation update done using Pootle.
commit 51d3df292b08eae35aa22bacde125c0f3c807657
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 06:00:55 2010 +0200
Translation update done using Pootle.
commit 6037862a9b106567491a69a9722f57256b2cff10
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:59:18 2010 +0200
Translation update done using Pootle.
commit 548568a7bdbe08e3602590b44ff7c42ad2d7bf9a
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:59:00 2010 +0200
Translation update done using Pootle.
commit d985e9f77739a4eddfcfe992d7e842b460cf0bbc
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:58:39 2010 +0200
Translation update done using Pootle.
commit d396f3bdd80fec2f328ddf5c02e37bf9d560c027
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:58:35 2010 +0200
Translation update done using Pootle.
commit a61011eadc4b1daa65c3200cad26c6494c4c2efc
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:58:30 2010 +0200
Translation update done using Pootle.
commit 2a9bcd26b031ce6fd87f31a0d5684d2783d7e3fd
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:58:25 2010 +0200
Translation update done using Pootle.
commit 19b92c56a078dd04590f9cddd87e7cb8a7a507a3
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:58:20 2010 +0200
Translation update done using Pootle.
commit aef28d6289aed88af46333634fb6dbaf5276c8e0
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:58:08 2010 +0200
Translation update done using Pootle.
commit 74ed6272a1315e07d4761060d1f075f94e07b226
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:57:49 2010 +0200
Translation update done using Pootle.
commit ae6089fb0c02b527bd322cc0874bb1d5b3e73ea5
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:57:01 2010 +0200
Translation update done using Pootle.
commit 09315c1b1d6d413b64b0ea6d26a8ba160cb9c127
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:56:18 2010 +0200
Translation update done using Pootle.
commit 53a6242e5b41ea236f2beb3dd2a111f423754b14
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:55:54 2010 +0200
Translation update done using Pootle.
commit 4f5193a4b06e1dfe7d6bb5bcffd32a7bb5a3bf88
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:54:56 2010 +0200
Translation update done using Pootle.
commit a4445c0114897d0ba84a327ab8f7d93eb2216423
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:54:07 2010 +0200
Translation update done using Pootle.
commit 938193ad8cd887f4278ecb9ec60cb3f339367cea
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:53:54 2010 +0200
Translation update done using Pootle.
commit b27322a2cc6ce087d9ebf9f02adbb81774e080a2
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:53:30 2010 +0200
Translation update done using Pootle.
commit 995a5ea8df0bb6e483999baa86c3f4470483c834
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:52:54 2010 +0200
Translation update done using Pootle.
commit 9559e8fc60d4751da9880f8485bbf61becd0fa78
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:50:52 2010 +0200
Translation update done using Pootle.
commit d8375be3969f4c7d6305c3a79bfb5c0643ad1403
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:50:37 2010 +0200
Translation update done using Pootle.
commit 17d57501242999d3319ca4beed4eab9c902eac2c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:49:36 2010 +0200
Translation update done using Pootle.
commit ef6c4a24ad8ff62854751dd888fa5cb097c30136
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:49:03 2010 +0200
Translation update done using Pootle.
commit 39b1754c1f67e9818802298c2e1a08fc15d9f916
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:48:54 2010 +0200
Translation update done using Pootle.
commit 98b99e0ecf433547e73a8979eedd5f64d653805a
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:48:44 2010 +0200
Translation update done using Pootle.
commit 2d99a06f4c603e8e1bc9617af9e16a7fe49ec97c
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:48:20 2010 +0200
Translation update done using Pootle.
commit 0ae7326eef937eb4c1a3b33073464398b07c06f9
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:42:43 2010 +0200
Translation update done using Pootle.
commit e3695783099ea0460f9ce728a46a55363ce742ac
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:42:31 2010 +0200
Translation update done using Pootle.
commit 4403448d9741b80096f201b80d76867b18d47879
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:42:12 2010 +0200
Translation update done using Pootle.
commit 54bc46769c40806cc4064dc710fb14015d22eaad
Author: u4663530 <u4663530(a)anu.edu.au>
Date: Sat May 1 05:39:36 2010 +0200
Translation update done using Pootle.
commit cb4982c8b07e318a99700535b3c9c3115aa51570
Author: kajouni <kajouni(a)gmail.com>
Date: Fri Apr 30 18:08:52 2010 +0200
Translation update done using Pootle.
commit 270c2f7e1363c5eb64585f1bc54e52f9efe33096
Author: kajouni <kajouni(a)gmail.com>
Date: Fri Apr 30 18:08:10 2010 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/fi.po | 62 +-------
po/hi.po | 252 +++++++++++++++------------------
po/sl.po | 479 +++++++++++++++++++++++++++++++++++---------------------------
3 files changed, 392 insertions(+), 401 deletions(-)
diff --git a/po/fi.po b/po/fi.po
index c667a3f..f682139 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -4,13 +4,15 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.4.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2010-04-20 07:54+0200\n"
-"PO-Revision-Date: 2010-03-12 09:14+0100\n"
-"Last-Translator: Automatically generated\n"
+"PO-Revision-Date: 2010-04-30 18:08+0200\n"
+"Last-Translator: <kajouni(a)gmail.com>\n"
"Language-Team: finnish <fi(a)li.org>\n"
+"Language: fi\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:369
msgid "Go"
@@ -26,8 +28,8 @@ msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
-"Tämä johtunee siitä ettet ole luonut asetustiedostoa. Voit luoda "
-"asetustiedoston %1$sasetusskriptillä%2$s."
+"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %"
+"1$sasetusskriptillä%2$s."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -7823,53 +7825,3 @@ msgstr "Viiteavaimen rajoitus"
#~ msgid "Tracking Mechanism"
#~ msgstr "Seurantamekanismi"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT * query"
-#~ msgid "Select all"
-#~ msgstr "Valitse kaikki"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT ... query"
-#~ msgid "Select"
-#~ msgstr "Valitse kaikki"
-
-#, fuzzy
-#~| msgid "Insert"
-#~ msgctxt "Create INSERT query"
-#~ msgid "Insert"
-#~ msgstr "Lisää rivi"
-
-#, fuzzy
-#~| msgid "Updated"
-#~ msgctxt "Create UPDATE query"
-#~ msgid "Update"
-#~ msgstr "Päivitetty"
-
-#, fuzzy
-#~| msgid "Delete"
-#~ msgctxt "Create DELETE query"
-#~ msgid "Delete"
-#~ msgstr "Poista"
-
-#~ msgid "%1$d row(s) affected."
-#~ msgstr "%1$d rivi(ä) muutettu."
-
-#~ msgid "utf-8"
-#~ msgstr "utf-8"
-
-#~ msgid "Jan0"
-#~ msgstr "Tammi0"
-
-#~ msgid "Jan1"
-#~ msgstr "Tammi1"
-
-#~ msgid "Jan2"
-#~ msgstr "Tammi2"
-
-#~ msgid ""
-#~ "Structure Difference' ;\n"
-#~ "$strStructureForView = 'Structure for view"
-#~ msgstr "Rakenne-erot"
diff --git a/po/hi.po b/po/hi.po
index 50961f8..92fc4e5 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -4,21 +4,23 @@ 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-20 07:54+0200\n"
-"PO-Revision-Date: 2010-03-12 09:15+0100\n"
-"Last-Translator: Automatically generated\n"
+"PO-Revision-Date: 2010-05-01 07:49+0200\n"
+"Last-Translator: <u4663530(a)anu.edu.au>\n"
"Language-Team: hindi <hi(a)li.org>\n"
+"Language: hi\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:369
msgid "Go"
-msgstr ""
+msgstr "आगे"
#: js/messages.php:51 libraries/messages.inc.php:131
msgid "Cancel"
-msgstr ""
+msgstr "रद्द"
#: libraries/auth/config.auth.lib.php:107
#, php-format
@@ -26,6 +28,8 @@ msgid ""
"You probably did not create a configuration file. You might want to use the %"
"1$ssetup script%2$s to create one."
msgstr ""
+"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup "
+"script%2$s का उपयोग करें."
#: libraries/auth/config.auth.lib.php:116
msgid ""
@@ -34,52 +38,56 @@ msgid ""
"configuration and make sure that they correspond to the information given by "
"the administrator of the MySQL server."
msgstr ""
+"phpMyAdmin ने सर्वर से कोन्नेक्ट करने की कोशिश की है पर सर्वर ने उसे "
+"अस्वीकार किया है. आप अपने मेजबान विन्यास में, उपयोगकर्ता नाम और पासवर्ड की "
+"जाँच करें और इत्मीनान कर ले की ये उपयोगकरता नाम और पासवर्ड MySQL सर्वर के "
+"व्यवस्थापक द्वारा दी गई जानकारी के अनुरूप हैं."
#. l10n: Language to use for MySQL 5.1 documentation, please use only languages which do exist in official documentation.
#: libraries/common.lib.php:411
msgctxt "$mysql_5_1_doc_lang"
msgid "en"
-msgstr ""
+msgstr "इंग्लिश"
#. 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 "इंग्लिश"
#: libraries/common.lib.php:1276
msgid "Inline edit of this query"
-msgstr ""
+msgstr "इस कुएरी की इनलाइन एडिट"
#: libraries/common.lib.php:1278
msgid "Inline"
-msgstr ""
+msgstr "इनलाइन"
#: libraries/Message.class.php:282
#, php-format
msgid "%1$d row affected."
msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "एकवचन%1$d रोव प्रभावित"
+msgstr[1] "बहुवचन%1$d रोवस प्रभावित"
#: libraries/Message.class.php:301
#, php-format
msgid "%1$d row deleted."
msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "एकवचन%1$d रोव नष्ट"
+msgstr[1] "बहुवचन%1$d रोवस नष्ट"
#: libraries/Message.class.php:320
#, php-format
msgid "%1$d row inserted."
msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "एकवचन%1$d रोव डाला"
+msgstr[1] "बहुवचन%1$d रोवस डाला"
#. l10n: Text direction, use either ltr or rtl
#: libraries/messages.inc.php:19
msgid "ltr"
-msgstr "ltr"
+msgstr "आईटीआर"
#. l10n: Thousands separator
#: libraries/messages.inc.php:21
@@ -121,31 +129,31 @@ msgstr "EB"
#: libraries/messages.inc.php:27
msgid "Sun"
-msgstr "रवी"
+msgstr "रविवार"
#: libraries/messages.inc.php:27
msgid "Mon"
-msgstr "सोम"
+msgstr "सोमवार"
#: libraries/messages.inc.php:27
msgid "Tue"
-msgstr "मन्गल"
+msgstr "मन्गलवार"
#: libraries/messages.inc.php:27
msgid "Wed"
-msgstr "बुध"
+msgstr "बुधवार"
#: libraries/messages.inc.php:27
msgid "Thu"
-msgstr "गुरु"
+msgstr "गुरुवार"
#: libraries/messages.inc.php:27
msgid "Fri"
-msgstr "शुक्र"
+msgstr "शुक्रवार"
#: libraries/messages.inc.php:27
msgid "Sat"
-msgstr "शनि"
+msgstr "शनिवार"
#: libraries/messages.inc.php:28
msgid "Jan"
@@ -181,7 +189,7 @@ msgstr "अगस्त"
#: libraries/messages.inc.php:28
msgid "Sep"
-msgstr " सितम्बर"
+msgstr "सितम्बर"
#: libraries/messages.inc.php:28
msgid "Oct"
@@ -203,11 +211,11 @@ msgstr "%d %B, %Y को %I:%M %p"
#: libraries/messages.inc.php:31
#, php-format
msgid "%s days, %s hours, %s minutes and %s seconds"
-msgstr "%s days, %s hours, %s minutes and %s seconds"
+msgstr "%s दिन, %s घंटे, %s मिनट and %s सेकंड"
#: libraries/messages.inc.php:33
msgid "Aborted"
-msgstr ""
+msgstr "रद्द"
#: libraries/messages.inc.php:34
msgid "Access denied"
@@ -215,99 +223,101 @@ msgstr "प्रवेश निषेध"
#: libraries/messages.inc.php:35
msgid "Action"
-msgstr " कार्य"
+msgstr "कार्य"
#: libraries/messages.inc.php:36
msgid "Actions"
-msgstr ""
+msgstr "कार्य"
#: libraries/messages.inc.php:37
msgid "Add AUTO_INCREMENT value"
-msgstr ""
+msgstr "AUTO_INCREMENT मूल्य जोडें"
#: libraries/messages.inc.php:38
#, php-format
msgid "Add %s"
-msgstr ""
+msgstr "%s जोडें"
#: libraries/messages.inc.php:39
msgid "Add constraints"
-msgstr ""
+msgstr "कांस्त्रैन्ट्स जोडें"
#: libraries/messages.inc.php:40
msgid "Add/Delete Field Columns"
-msgstr ""
+msgstr "क्षेत्र कोलम जोडें/हटायें"
#: libraries/messages.inc.php:41
msgid "Add/Delete Criteria Row"
-msgstr ""
+msgstr "मापदंड रो जोडें/हटायें"
#: libraries/messages.inc.php:42
#, php-format
msgid "Add %s field(s)"
-msgstr ""
+msgstr "%s क्षेत्र जोडें"
#: libraries/messages.inc.php:43
msgid "Add custom comment into header (\\n splits lines)"
msgstr ""
+"शीर्षक में कस्टम टिपण्णी जोडें (\n"
+" लाइनों को विभाजित करें)"
#: libraries/messages.inc.php:44
msgid "Add into comments"
-msgstr ""
+msgstr "इनटू टिप्पणियां जोडें"
#: libraries/messages.inc.php:45
msgid "Add new field"
-msgstr "नया फील्ड जोडो"
+msgstr "नया क्षेत्र जोडें"
#: libraries/messages.inc.php:46
msgid "Add privileges on the following database"
-msgstr "इन डाटाबेसों के लिये प्रिविलेज जोडिये"
+msgstr "इन डाटाबेसों के लिये विशेषाधिकार जोडें"
#: libraries/messages.inc.php:47
msgid "Add privileges on the following table"
-msgstr "इन टेबल के लिये प्रिविलेज जोडिये"
+msgstr "इन टेबल के लिये विशेषाधिकार जोडें"
#: libraries/messages.inc.php:48
msgid "Add search conditions (body of the \"where\" clause):"
-msgstr ""
+msgstr "खोज शर्तें जोडें (\"where\" खंड के शरीर में)"
#: libraries/messages.inc.php:49
#, php-format
msgid "Add to index %s column(s)"
-msgstr ""
+msgstr "सूचकांक में जोडें %s column(s)"
#: libraries/messages.inc.php:50
msgid "Add a new User"
-msgstr "नया यूसर बनाओ"
+msgstr "नया यूसर जोडें"
#: libraries/messages.inc.php:51
msgid "You have added a new user."
-msgstr "आपने नया यूसर बना लिया ।"
+msgstr "आपने नया यूसर बना लिया"
#: libraries/messages.inc.php:52
msgid "Administration"
-msgstr ""
+msgstr "एडमिनिस्ट्रेशन"
#: libraries/messages.inc.php:53
#, php-format
msgid "After %s"
-msgstr "%s के बाद में"
+msgstr "%s के बाद"
#: libraries/messages.inc.php:54
msgid "Go back to previous page"
-msgstr "पिछले पृष्ट पर वापस जाओ"
+msgstr "पिछले पृष्ट पर वापस जाएँ"
#: libraries/messages.inc.php:55
msgid "Insert another new row"
-msgstr " अगला नया रौ जोडे"
+msgstr "एक और नई रो सम्मिलित करें"
#: libraries/messages.inc.php:56
msgid "Edit next row"
-msgstr ""
+msgstr "अगली रो को संपादित करें"
#: libraries/messages.inc.php:57
msgid "Go back to this page"
-msgstr ""
+msgstr "इस पृष्ठ पर वापस जाएँ"
#: libraries/messages.inc.php:58
msgid "All"
@@ -319,22 +329,25 @@ msgid ""
"to the PHP timeout limit. This might be good way to import large files, "
"however it can break transactions."
msgstr ""
+"यदि स्क्रिप्ट पता लगाए की वो PHP मध्यांतर सीमा के करीब है तब एक रुकावट के "
+"आयात की अनुमति दें. यह बड़ी फाइल के आयात के लिए अच्छा है लेकिन, लेकिन यह "
+"लेनदेन तोड़ सकता है. "
#: libraries/messages.inc.php:60
msgid "Display all tables with the same width"
-msgstr ""
+msgstr "समान चौड़ाई के सभी टेबल को प्रदर्शित करें. "
#: libraries/messages.inc.php:61
msgid "Alter table order by"
-msgstr " टेबल ओरडर को बदलिये "
+msgstr "टेबल क्रमांक को बदलिये "
#: libraries/messages.inc.php:62
msgid "Analyze"
-msgstr ""
+msgstr "विश्लेषण"
#: libraries/messages.inc.php:63
msgid "Analyze table"
-msgstr " टेबल अनालैज करें"
+msgstr "टेबल का विश्लेषण करें"
#: libraries/messages.inc.php:64
msgid "And"
@@ -342,7 +355,7 @@ msgstr "और"
#: libraries/messages.inc.php:65
msgid "and"
-msgstr ""
+msgstr "और"
#: libraries/messages.inc.php:66
msgid "and then"
@@ -350,12 +363,12 @@ msgstr ""
#: libraries/messages.inc.php:67
msgid "Angular links"
-msgstr ""
+msgstr "कोणीय लिंक"
#: libraries/messages.inc.php:68
#, php-format
msgid "An index has been added on %s"
-msgstr " %s पर एक इन्डेक्स बनाया"
+msgstr "%s पर एक सूचकांक जोड़ा गया है"
#: libraries/messages.inc.php:69
msgid "Any"
@@ -363,58 +376,60 @@ msgstr "कोई"
#: libraries/messages.inc.php:70
msgid "Any host"
-msgstr "कोई भी होस्ट"
+msgstr "कोई भी होस्ट"
#: libraries/messages.inc.php:71
msgid "Any user"
-msgstr "कोई भी यूसर"
+msgstr "कोई भी उपयोगकर्ता"
#: libraries/messages.inc.php:72
msgid "Apply Selected Changes"
-msgstr ""
+msgstr "चयनित परिवर्तन लागू करें"
#: libraries/messages.inc.php:73
msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
+"शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ "
+"3.11[/a] देखें"
#: libraries/messages.inc.php:74
#, php-format
msgid "A primary key has been added on %s"
-msgstr " %s पर एक प्राईमरी की बनाया"
+msgstr " %s पर एक प्राईमरी की जड़ी गयी है"
#: libraries/messages.inc.php:75
msgid "Arabic"
-msgstr "पर्शियन"
+msgstr "अरबी"
#: libraries/messages.inc.php:76
msgid "Armenian"
-msgstr ""
+msgstr "आर्मेनियन"
#: libraries/messages.inc.php:77
msgid "Ascending"
-msgstr ""
+msgstr "आरोही"
#: libraries/messages.inc.php:78
msgid "As defined:"
-msgstr ""
+msgstr "जैसे परिभाषित:"
#: libraries/messages.inc.php:79
msgid "At Beginning of Table"
-msgstr " टेबल के शुरू में"
+msgstr "टेबल के शुरू में"
#: libraries/messages.inc.php:80
msgid "At End of Table"
-msgstr " टेबल के आखिर में"
+msgstr "टेबल के आखिर में"
#: libraries/messages.inc.php:81
msgid "Attributes"
-msgstr " विशेषता"
+msgstr "विशेषता"
#: libraries/messages.inc.php:82
msgid "Automatic layout"
-msgstr ""
+msgstr "स्वचालित लेआउट"
#: libraries/messages.inc.php:84
msgid "Back"
@@ -422,15 +437,15 @@ msgstr "वापस"
#: libraries/messages.inc.php:85
msgid "Baltic"
-msgstr ""
+msgstr "बाल्टिक"
#: libraries/messages.inc.php:86
msgid "BEGIN CUT"
-msgstr ""
+msgstr "BEGIN कट"
#: libraries/messages.inc.php:87
msgid "BEGIN RAW"
-msgstr ""
+msgstr "BEGIN रॉ"
#: libraries/messages.inc.php:88
msgid "Binary"
@@ -442,92 +457,92 @@ msgstr "बइनरी - एडिट मत करिये"
#: libraries/messages.inc.php:90
msgid "Binary log"
-msgstr ""
+msgstr "बाइनरी लोग"
#: libraries/messages.inc.php:91
msgid "Event type"
-msgstr ""
+msgstr "इवेंट प्रकार "
#: libraries/messages.inc.php:92
msgid "Information"
-msgstr ""
+msgstr "सूचना"
#: libraries/messages.inc.php:93
msgid "Log name"
-msgstr ""
+msgstr "लॉग नाम"
#: libraries/messages.inc.php:94
msgid "Original position"
-msgstr ""
+msgstr "मूल स्थिति"
#: libraries/messages.inc.php:95
msgid "Position"
-msgstr ""
+msgstr "स्थिति"
#: libraries/messages.inc.php:96
msgid "Server ID"
-msgstr ""
+msgstr "सर्वर आईडी"
#: libraries/messages.inc.php:97
msgid "BLOB Repository"
-msgstr ""
+msgstr "BLOB भंडार गृह"
#: libraries/messages.inc.php:98
msgid "Damaged"
-msgstr ""
+msgstr "क्षतिग्रस्त"
#: libraries/messages.inc.php:99
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
-msgstr ""
+msgstr "क्या आप वाकई %s दाताबेस के सारे संदर्भ निष्क्रिय करना चाहते है?"
#: libraries/messages.inc.php:100
msgctxt "$strBLOBRepositoryDisabled"
msgid "Disabled"
-msgstr ""
+msgstr "दिसअबल्ड "
#: libraries/messages.inc.php:101
msgid "Disable"
-msgstr ""
+msgstr "दिसअबल "
#: libraries/messages.inc.php:102
msgid "You are about to DISABLE a BLOB Repository!"
-msgstr ""
+msgstr "आप एक BLOB भंडार निष्क्रिय करने वाले हैं!"
#: libraries/messages.inc.php:103
msgctxt "$strBLOBRepositoryEnabled"
msgid "Enabled"
-msgstr ""
+msgstr "सक्षम"
#: libraries/messages.inc.php:104
msgid "Enable"
-msgstr ""
+msgstr "सक्षम"
#: libraries/messages.inc.php:105
msgid "Remove BLOB Repository Reference"
-msgstr ""
+msgstr "BLOB रिपोजिटरी संदर्भ हटायें"
#: libraries/messages.inc.php:106
msgctxt "$strBLOBRepositoryRepair"
msgid "Repair"
-msgstr ""
+msgstr "मरम्मत"
#: libraries/messages.inc.php:107
msgid "Upload to BLOB repository"
-msgstr ""
+msgstr "BLOB भण्डार में अपलोड करें"
#: libraries/messages.inc.php:108
msgid "Let every user access this bookmark"
-msgstr ""
+msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए"
#: libraries/messages.inc.php:109
#, php-format
msgid "Bookmark %s created"
-msgstr ""
+msgstr "बुकमार्क %s बनाया"
#: libraries/messages.inc.php:110
msgid "The bookmark has been deleted."
-msgstr "यह bookmark डिलीट कर दिया गया।"
+msgstr "यह बुकमार्क हटा दिया गया है"
#: libraries/messages.inc.php:111
msgid "Label"
@@ -535,15 +550,15 @@ msgstr "लेबल"
#: libraries/messages.inc.php:112
msgid "Bookmarked SQL query"
-msgstr "Bookmark किया हुआ SQL-क्वरी"
+msgstr "बुकमार्क किया हुआ SQL-क्वरी"
#: libraries/messages.inc.php:113
msgid "Replace existing bookmark of same name"
-msgstr ""
+msgstr "एक ही नाम के सभी बुकमार्क्स बदल दें"
#: libraries/messages.inc.php:114
msgid "Bookmark this SQL query"
-msgstr "इस SQL-क्वरी को bookmark कीजिये "
+msgstr "इस SQL-क्वरी को बुकमार्क कीजिये "
#: libraries/messages.inc.php:115
msgid "View only"
@@ -551,35 +566,35 @@ msgstr "केवल देखिये"
#: libraries/messages.inc.php:116
msgid "Browse"
-msgstr " ब्रौस"
+msgstr "ब्राउज़"
#: libraries/messages.inc.php:117
msgid "Browse distinct values"
-msgstr ""
+msgstr "अलग मूल्य ब्राउस करें "
#: libraries/messages.inc.php:118
msgid "Browse foreign values"
-msgstr ""
+msgstr "विदेशी मूल्य ब्राउस करें "
#: libraries/messages.inc.php:119
msgid "Buffer Pool Activity"
-msgstr ""
+msgstr "बफर पूल गतिविधि"
#: libraries/messages.inc.php:120
msgid "Buffer Pool"
-msgstr ""
+msgstr "बफर पूल"
#: libraries/messages.inc.php:121
msgid "Buffer Pool Usage"
-msgstr ""
+msgstr "बफर पूल उपयोग"
#: libraries/messages.inc.php:122
msgid "Read misses in %"
-msgstr ""
+msgstr "% में गलतियाँ पढ़ें"
#: libraries/messages.inc.php:123
msgid "Read misses"
-msgstr ""
+msgstr "गलतियाँ पढ़ें"
#: libraries/messages.inc.php:124
msgid "Write waits in %"
@@ -7152,36 +7167,3 @@ msgstr ""
#~ msgid "has been altered."
#~ msgstr "को बदला गया। "
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT * query"
-#~ msgid "Select all"
-#~ msgstr " सभी को सेल्कट करें"
-
-#, fuzzy
-#~| msgid "Select All"
-#~ msgctxt "Create SELECT ... query"
-#~ msgid "Select"
-#~ msgstr " सभी को सेल्कट करें"
-
-#, fuzzy
-#~| msgid "Insert"
-#~ msgctxt "Create INSERT query"
-#~ msgid "Insert"
-#~ msgstr "इनसर्ट"
-
-#, fuzzy
-#~| msgid "Update Query"
-#~ msgctxt "Create UPDATE query"
-#~ msgid "Update"
-#~ msgstr " क्वरी अपडेट करो"
-
-#, fuzzy
-#~| msgid "Delete"
-#~ msgctxt "Create DELETE query"
-#~ msgid "Delete"
-#~ msgstr "डिलीट"
-
-#~ msgid "utf-8"
-#~ msgstr "utf-8"
diff --git a/po/sl.po b/po/sl.po
index 06e024e..95cacc2 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -4,8 +4,8 @@ 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-20 07:54+0200\n"
-"PO-Revision-Date: 2010-04-23 16:40+0200\n"
-"Last-Translator: Michal <michal(a)cihar.com>\n"
+"PO-Revision-Date: 2010-05-03 00:45+0200\n"
+"Last-Translator: <dbc334(a)gmail.com>\n"
"Language-Team: slovenian <sl(a)li.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
@@ -163,56 +163,56 @@ msgstr "Sob"
#: libraries/messages.inc.php:28
msgid "Jan"
-msgstr "Jan"
+msgstr "jan"
#: libraries/messages.inc.php:28
msgid "Feb"
-msgstr "Feb"
+msgstr "feb"
#: libraries/messages.inc.php:28
msgid "Mar"
-msgstr "Mar"
+msgstr "mar"
#: libraries/messages.inc.php:28
msgid "Apr"
-msgstr "Apr"
+msgstr "apr"
#: libraries/messages.inc.php:28
msgid "May"
-msgstr "Maj"
+msgstr "maj"
#: libraries/messages.inc.php:28
msgid "Jun"
-msgstr "Jun"
+msgstr "jun"
#: libraries/messages.inc.php:28
msgid "Jul"
-msgstr "Jul"
+msgstr "jul"
#: libraries/messages.inc.php:28
msgid "Aug"
-msgstr "Avg"
+msgstr "avg"
#: libraries/messages.inc.php:28
msgid "Sep"
-msgstr "Sep"
+msgstr "sep"
#: libraries/messages.inc.php:28
msgid "Oct"
-msgstr "Okt"
+msgstr "okt"
#: libraries/messages.inc.php:28
msgid "Nov"
-msgstr "Nov"
+msgstr "nov"
#: libraries/messages.inc.php:28
msgid "Dec"
-msgstr "Dec"
+msgstr "dec"
#. l10n: See http://www.php.net/manual/en/function.strftime.php to define the format string
#: libraries/messages.inc.php:30
msgid "%B %d, %Y at %I:%M %p"
-msgstr "%d %B %Y ob %I:%M %p"
+msgstr "%d %B %Y ob %H.%M"
#: libraries/messages.inc.php:31
#, php-format
@@ -333,6 +333,9 @@ msgid ""
"to the PHP timeout limit. This might be good way to import large files, "
"however it can break transactions."
msgstr ""
+"Dovoli prekinitev uvoza v primeru, ko skript zazna, da je blizu časovne "
+"omejitve PHP. To je morda dober način za uvoz velikih datotek, čeprav lahko "
+"prekine transakcije."
#: libraries/messages.inc.php:60
msgid "Display all tables with the same width"
@@ -450,15 +453,15 @@ msgstr "BEGIN RAW"
#: libraries/messages.inc.php:88
msgid "Binary"
-msgstr "Binarno"
+msgstr "Dvojiško"
#: libraries/messages.inc.php:89
msgid "Binary - do not edit"
-msgstr "Binarno - ne urejaj"
+msgstr "Dvojiško - ne urejaj"
#: libraries/messages.inc.php:90
msgid "Binary log"
-msgstr "Binarni dnevnik"
+msgstr "Dvojiški dnevnik"
#: libraries/messages.inc.php:91
msgid "Event type"
@@ -1289,7 +1292,7 @@ msgstr "Izbriši podatkovne zbirke, ki imajo enako ime kot uporabniki."
#: libraries/messages.inc.php:282
msgid "Dump all rows"
-msgstr "Zavrzi vse vrstice"
+msgstr "Odloži vse vrstice"
#: libraries/messages.inc.php:283
msgid "Dumping data for table"
@@ -1431,7 +1434,7 @@ msgstr "Izvedi izbrano poizvedbo"
#: libraries/messages.inc.php:317 setup/lib/messages.inc.php:353
msgid "Explain SQL"
-msgstr "Razloži SQL stavek"
+msgstr "Razloži stavek SQL"
#: libraries/messages.inc.php:318
msgid "Export"
@@ -1623,7 +1626,7 @@ msgstr "Ustvari"
#: libraries/messages.inc.php:361
msgid "Generate Password"
-msgstr "Generiraj geslo"
+msgstr "Ustvari geslo"
#: libraries/messages.inc.php:362
msgid "Generation Time"
@@ -3760,7 +3763,7 @@ msgstr "Izberi vse"
#: libraries/messages.inc.php:854
msgid "Select binary log to view"
-msgstr ""
+msgstr "Izberite dvojiški dnevnik za pregled"
#: libraries/messages.inc.php:855
msgid "Select fields (at least one):"
@@ -3796,7 +3799,7 @@ msgstr "Izbira strežnika"
#: libraries/messages.inc.php:863
msgid "The server is not responding"
-msgstr ""
+msgstr "Strežnik se ne odziva"
#: libraries/messages.inc.php:864
msgid "Server"
@@ -3817,7 +3820,7 @@ msgstr "Podatki o izvajanju"
#: libraries/messages.inc.php:868
#, php-format
msgid "This MySQL server has been running for %s. It started up on %s."
-msgstr "MySQL strežnik deluje že %s. Zagnal se je %s."
+msgstr "Strežnik MySQL deluje že %s. Zagnal se je %s."
#: libraries/messages.inc.php:869
msgid "Variables"
@@ -4510,7 +4513,7 @@ msgstr "Velikost"
#: libraries/messages.inc.php:1012 setup/lib/messages.inc.php:161
msgid "Number of records (queries) to skip from start"
-msgstr ""
+msgstr "Število zapisov (poizvedb), ki jih naj preskočim od začetka"
#: libraries/messages.inc.php:1013
msgid ""
@@ -4748,7 +4751,7 @@ msgstr "Švedsko"
#: libraries/messages.inc.php:1064
msgid "Authenticating..."
-msgstr ""
+msgstr "Potrjevanje ..."
#: libraries/messages.inc.php:1065
msgid "Hardware authentication failed"
@@ -4789,7 +4792,7 @@ msgstr "Sinhroniziraj"
#: libraries/messages.inc.php:1074
msgid "Add column(s)"
-msgstr ""
+msgstr "Dodaj stolpec(-ce)"
#: libraries/messages.inc.php:1075
#, php-format
@@ -4798,7 +4801,7 @@ msgstr "Tabela %s že obstaja!"
#: libraries/messages.inc.php:1076
msgid "Alter column(s)"
-msgstr ""
+msgstr "Spremeni stolpec(-ce)"
#: libraries/messages.inc.php:1077
#, php-format
@@ -4807,7 +4810,7 @@ msgstr "Tabela %1$s je bila uspešno spremenjena"
#: libraries/messages.inc.php:1078
msgid "Apply index(s)"
-msgstr ""
+msgstr "Uveljavi indeks(e)"
#: libraries/messages.inc.php:1079
msgid "Table comments"
@@ -4815,7 +4818,7 @@ msgstr "Komentar tabele"
#: libraries/messages.inc.php:1080
msgid "Would you like to delete all the previous rows from target tables?"
-msgstr ""
+msgstr "Ali želite izbrisati vse prejšnje vrstice iz ciljnih tabel?"
#: libraries/messages.inc.php:1081
msgid "The table name is empty!"
@@ -4871,7 +4874,7 @@ msgstr "Odstrani stolpec(-ce)"
#: libraries/messages.inc.php:1093
msgid "Remove index(s)"
-msgstr ""
+msgstr "Odstrani indeks(e)"
#: libraries/messages.inc.php:1094
#, php-format
@@ -5008,20 +5011,20 @@ msgstr "Skupaj"
#: libraries/messages.inc.php:1124
#, php-format
msgid "Tracking of %s.%s is activated."
-msgstr ""
+msgstr "Sledenje %s.%s je aktivirano."
#: libraries/messages.inc.php:1125
msgid "Activate now"
-msgstr ""
+msgstr "Aktiviraj zdaj"
#: libraries/messages.inc.php:1126
#, php-format
msgid "Activate tracking for %s.%s"
-msgstr ""
+msgstr "Aktiviraj sledenje %s.%s"
#: libraries/messages.inc.php:1127
msgid "Comment out these two lines if you do not need them."
-msgstr ""
+msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar."
#: libraries/messages.inc.php:1128
msgid "Create version"
@@ -5229,8 +5232,8 @@ msgid ""
"of a field which contains the filename. If you use the second option, you "
"need to set the first option to the empty string."
msgstr ""
-"Prikaži povezavo za prenos binarnih podatkov polja. Prva možnost je ime "
-"binarne datoteke. Druga možnost je možno ime polja v vrstici tabele, ki "
+"Prikaži povezavo za prenos dvojiških podatkov polja. Prva možnost je ime "
+"dvojiške datoteke. Druga možnost je možno ime polja v vrstici tabele, ki "
"vsebuje to ime datoteke. Če vnesete drugo možnost, mora biti prva možnost "
"prazna."
@@ -5365,7 +5368,7 @@ msgstr "Unicode"
#: libraries/messages.inc.php:1195
msgid "Unique"
-msgstr "Unikaten"
+msgstr "Edinstven"
#: libraries/messages.inc.php:1196
msgid "unknown"
@@ -5381,6 +5384,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
+"Poskušali ste naložiti datoteko z nepodprtim stiskanjem (%s). Bodisi podpora "
+"za njega ni vključena ali pa je onemogočena z vašo konfiguracijo."
#: libraries/messages.inc.php:1199
#, php-format
@@ -5407,33 +5412,35 @@ msgstr "%s bi morali nadgraditi v verzijo %s ali novejšo."
#: libraries/messages.inc.php:1204
msgid "Failed to write file to disk."
-msgstr ""
+msgstr "Pisanje datoteke na disk je spodletelo."
#: libraries/messages.inc.php:1205
msgid "File upload stopped by extension."
-msgstr ""
+msgstr "Nalaganje datoteke je ustavila razširitev."
#: libraries/messages.inc.php:1206
msgid ""
"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
"the HTML form."
msgstr ""
+"Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu "
+"HTML."
#: libraries/messages.inc.php:1207
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
+msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini."
#: libraries/messages.inc.php:1208
msgid "Missing a temporary folder."
-msgstr ""
+msgstr "Manjka začasna mapa."
#: libraries/messages.inc.php:1209
msgid "The uploaded file was only partially uploaded."
-msgstr ""
+msgstr "Naložena datoteka je bila naložena samo delno."
#: libraries/messages.inc.php:1210
msgid "Unknown error in file upload."
-msgstr ""
+msgstr "Neznana napaka pri nalaganju datoteke."
#: libraries/messages.inc.php:1211
#, php-format
@@ -5441,10 +5448,12 @@ msgid ""
"You probably tried to upload too large file. Please refer to %sdocumentation%"
"s for ways to workaround this limit."
msgstr ""
+"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
+"%sdokumentacijo%s za načine, kako obiti to omejitev."
#: libraries/messages.inc.php:1212
msgid "File uploads are not allowed on this server."
-msgstr ""
+msgstr "Nalaganje datotek na tem strežniku ni dovoljeno."
#: libraries/messages.inc.php:1213
msgid "Usage"
@@ -5496,6 +5505,8 @@ msgstr "Uporabnik"
msgid ""
"Use TAB key to move from value to value, or CTRL+arrows to move anywhere"
msgstr ""
+"Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za "
+"premik kamor koli"
#: libraries/messages.inc.php:1225
msgid "Use Tables"
@@ -5503,7 +5514,7 @@ msgstr "Uporabi tabele"
#: libraries/messages.inc.php:1226
msgid "Use text field"
-msgstr "Uporabi tekstovno polje"
+msgstr "Uporabi besedilno polje"
#: libraries/messages.inc.php:1227
msgid "Use this value"
@@ -5511,7 +5522,7 @@ msgstr "Uporabi to vrednost"
#: libraries/messages.inc.php:1229 setup/lib/messages.inc.php:356
msgid "Validate SQL"
-msgstr "Preveri pravilnost SQL stavka"
+msgstr "Preveri pravilnost stavka SQL"
#: libraries/messages.inc.php:1230
#, php-format
@@ -5519,8 +5530,8 @@ msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"Ne morem inicializirati SQL validatorja. Prosim preverite, če so nameščeni "
-"vsi php razširitve, kot je navedeno v %sdokumenaciji%s."
+"Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so "
+"nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s."
#: libraries/messages.inc.php:1231
msgid "Value"
@@ -5551,7 +5562,7 @@ msgstr "Preglej povzetek stanja tabele"
msgid ""
"This view has at least this number of rows. Please refer to %sdocumentation%"
"s."
-msgstr ""
+msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: libraries/messages.inc.php:1238
#, php-format
@@ -5705,7 +5716,7 @@ msgstr "Konfiguracija: %s"
#: setup/lib/messages.inc.php:16
msgid "Allow character set conversion"
-msgstr "Omogoča pretvarjanje nabora znakov"
+msgstr "Omogoči pretvarjanje nabora znakov"
#: setup/lib/messages.inc.php:17
msgid ""
@@ -5742,7 +5753,7 @@ msgstr ""
#: setup/lib/messages.inc.php:23
msgid "Key is too short, it should have at least 8 characters"
-msgstr ""
+msgstr "Ključ je prekratek, ima naj vsaj 8 znakov."
#: setup/lib/messages.inc.php:24
msgid ""
@@ -5757,15 +5768,15 @@ msgstr ""
#: setup/lib/messages.inc.php:26
msgid "Highlight selected rows"
-msgstr ""
+msgstr "Poudari izbrane vrstice"
#: setup/lib/messages.inc.php:27
msgid "Row marker"
-msgstr ""
+msgstr "Označevalnik vrstic"
#: setup/lib/messages.inc.php:28
msgid "Highlight row pointed by the mouse cursor"
-msgstr ""
+msgstr "Poudari vrstico, na katero kaže kazalec miške"
#: setup/lib/messages.inc.php:29
msgid "Highlight pointer"
@@ -5776,6 +5787,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] compression for "
"import and export operations"
msgstr ""
+"Omogoči stiskanje [a@http://en.wikipedia.org/wiki/Bzip2]bzip2[/a] za posege "
+"uvoza in izvoza"
#: setup/lib/messages.inc.php:31
msgid "Bzip2"
@@ -5791,7 +5804,7 @@ msgstr ""
#: setup/lib/messages.inc.php:33
msgid "Cannot load or save configuration"
-msgstr ""
+msgstr "Ne morem naložiti ali shraniti konfiguracije"
#: setup/lib/messages.inc.php:34
msgid ""
@@ -5853,48 +5866,47 @@ msgstr ""
#: setup/lib/messages.inc.php:47
msgid "Confirm DROP queries"
-msgstr ""
+msgstr "Potrjevanje poizvedb DROP"
#: setup/lib/messages.inc.php:48
msgid "Default character set used for conversions"
-msgstr ""
+msgstr "Privzet nabor znakov uporabljen za pretvorbe"
#: setup/lib/messages.inc.php:49
msgid "Default character set"
-msgstr ""
+msgstr "Privzet nabor znakov"
#: setup/lib/messages.inc.php:50
msgid "Default language"
-msgstr ""
+msgstr "Privzet jezik"
#: setup/lib/messages.inc.php:51
msgid "Default server"
-msgstr ""
+msgstr "Privzet strežnik"
#: setup/lib/messages.inc.php:52
msgid "Tab that is displayed when entering a database"
-msgstr ""
+msgstr "Zavihek, ki se prikaže ob odprtju podatkovne zbirke"
#: setup/lib/messages.inc.php:53
-#, fuzzy
msgid "Default database tab"
-msgstr "Preimenuj podatkovno bazo v"
+msgstr "Privzet zavihek podatkovne zbirke"
#: setup/lib/messages.inc.php:54
msgid "Tab that is displayed when entering a server"
-msgstr ""
+msgstr "Zavihek, ki se prikaže ob odprtju strežnika"
#: setup/lib/messages.inc.php:55
msgid "Default server tab"
-msgstr ""
+msgstr "Privzet zavihek strežnika"
#: setup/lib/messages.inc.php:56
msgid "Tab that is displayed when entering a table"
-msgstr ""
+msgstr "Zavihek, ki se prikaže ob odprtju tabele"
#: setup/lib/messages.inc.php:57
msgid "Default table tab"
-msgstr ""
+msgstr "Privzet zavihek tabele"
#: setup/lib/messages.inc.php:58
msgid ""
@@ -5904,39 +5916,39 @@ msgstr ""
#: setup/lib/messages.inc.php:59
msgid "Show database listing as a list instead of a drop down"
-msgstr ""
+msgstr "Prikaži naštete zbirke podatkov kot seznam namesto spustnega menija"
#: setup/lib/messages.inc.php:60
msgid "Display databases as a list"
-msgstr ""
+msgstr "Prikaži zbirke podatkov kot seznam"
#: setup/lib/messages.inc.php:61
msgid "Display"
-msgstr ""
+msgstr "Prikaži"
#: setup/lib/messages.inc.php:62
msgid "Show server listing as a list instead of a drop down"
-msgstr ""
+msgstr "Prikaži naštete strežnike kot seznam namesto spustnega menija"
#: setup/lib/messages.inc.php:63
msgid "Display servers as a list"
-msgstr ""
+msgstr "Prikaži strežnike kot seznam"
#: setup/lib/messages.inc.php:64
msgid "Donate"
-msgstr ""
+msgstr "Daruj"
#: setup/lib/messages.inc.php:65
msgid "Download"
-msgstr ""
+msgstr "Prenesi"
#: setup/lib/messages.inc.php:66
msgid "End of line"
-msgstr ""
+msgstr "Konec vrstice"
#: setup/lib/messages.inc.php:67
msgid "Could not connect to MySQL server"
-msgstr ""
+msgstr "Ne morem se povezati s strežnikom MySQL"
#: setup/lib/messages.inc.php:68
msgid "Empty phpMyAdmin control user password while using pmadb"
@@ -5960,43 +5972,45 @@ msgstr ""
#: setup/lib/messages.inc.php:73
msgid "Submitted form contains errors"
-msgstr ""
+msgstr "Poslan obrazec vsebuje napake"
#: setup/lib/messages.inc.php:74
#, php-format
msgid "Incorrect IP address: %s"
-msgstr ""
+msgstr "Napačen IP-naslov: %s"
#: setup/lib/messages.inc.php:75
msgid "Not a valid port number"
-msgstr ""
+msgstr "Neveljavna številka vrat"
#: setup/lib/messages.inc.php:76
msgid "Incorrect value"
-msgstr ""
+msgstr "Napačna vrednost"
#: setup/lib/messages.inc.php:77
#, php-format
msgid "Missing data for %s"
-msgstr ""
+msgstr "Manjkajoči podatki za %s"
#: setup/lib/messages.inc.php:78
msgid "Not a non-negative number"
-msgstr ""
+msgstr "Ni nenegativno število"
#: setup/lib/messages.inc.php:79
msgid "Not a positive number"
-msgstr ""
+msgstr "Ni pozitivno število"
#: setup/lib/messages.inc.php:80
msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)"
msgstr ""
+"Nastavi število sekund, ko se skript lahko izvaja ([kbd]0[/kbd] za "
+"neomejeno)"
#: setup/lib/messages.inc.php:81
msgid "Maximum execution time"
-msgstr ""
+msgstr "Najdaljši čas izvajanja"
#: setup/lib/messages.inc.php:83
msgid "Character set of the file"
@@ -6035,6 +6049,8 @@ msgid ""
"This [a@?page=form&formset=features#tab_Security]option[/a] should be "
"enabled if your web server supports it"
msgstr ""
+"Ta [a@?page=form&formset=features#tab_Security]možnost[/a] naj bo "
+"omogočena, če jo vaš spletni strežnik podpira"
#: setup/lib/messages.inc.php:95
msgid "Force SSL connection"
@@ -6060,109 +6076,111 @@ msgstr ""
#: setup/lib/messages.inc.php:100
msgid "Browse mode"
-msgstr ""
+msgstr "Način brskanja"
#: setup/lib/messages.inc.php:101
msgid "Customize browse mode"
-msgstr ""
+msgstr "Prilagodite način brskanja"
#: setup/lib/messages.inc.php:102
msgid "Customize edit mode"
-msgstr ""
+msgstr "Prilagodite način urejanja"
#: setup/lib/messages.inc.php:103
msgid "Edit mode"
-msgstr ""
+msgstr "Način urejanja"
#: setup/lib/messages.inc.php:104
msgid "Customize default export options"
-msgstr ""
+msgstr "Prilagodite privzete možnosti izvoza"
#: setup/lib/messages.inc.php:105
msgid "Export defaults"
-msgstr ""
+msgstr "Privzete možnosti izvoza"
#: setup/lib/messages.inc.php:106
msgid "Customize default common import options"
-msgstr ""
+msgstr "Prilagodite pogoste privzete možnosti uvoza"
#: setup/lib/messages.inc.php:107
-#, fuzzy
msgid "Import defaults"
-msgstr "Uvozi datoteke"
+msgstr "Privzete možnosti uvoza"
#: setup/lib/messages.inc.php:108
msgid "Set import and export directories and compression options"
-msgstr ""
+msgstr "Nastavi mape za uvoz in izvoz ter možnosti stiskanja"
#: setup/lib/messages.inc.php:109
msgid "Import / export"
-msgstr ""
+msgstr "Uvoz / izvoz"
#: setup/lib/messages.inc.php:111
-#, fuzzy
msgid "Databases display options"
-msgstr "Možnosti za izvoz baze podatkov"
+msgstr "Možnosti prikaza podatkovnih zbirk"
#: setup/lib/messages.inc.php:112
msgid "Customize appearance of the navigation frame"
-msgstr ""
+msgstr "Prilagodite prikaz navigacijskega okvirja"
#: setup/lib/messages.inc.php:113
msgid "Navigation frame"
-msgstr ""
+msgstr "Navigacijski okvir"
#: setup/lib/messages.inc.php:114
msgid "Servers display options"
-msgstr ""
+msgstr "Možnosti prikaza strežnikov"
#: setup/lib/messages.inc.php:116
msgid "Tables display options"
-msgstr ""
+msgstr "Možnosti prikaza tabel"
#: setup/lib/messages.inc.php:118
msgid "Main frame"
-msgstr ""
+msgstr "Glavni okvir"
#: setup/lib/messages.inc.php:119
msgid "Settings that didn't fit enywhere else"
-msgstr ""
+msgstr "Nastavitve, ki se ne uvrščajo nikamor drugam"
#: setup/lib/messages.inc.php:120
msgid "Other core settings"
-msgstr ""
+msgstr "Druge nastavitve"
#: setup/lib/messages.inc.php:121
msgid "Customize query window options"
-msgstr ""
+msgstr "Prilagodite možnosti okna poizvedb"
#: setup/lib/messages.inc.php:123
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL"
msgstr ""
+"Pomnite, da je phpMyAdmin samo uporabniški vmesnik in njegove lastnosti ne "
+"omejujejo MySQL"
#: setup/lib/messages.inc.php:124
msgid "Security"
-msgstr ""
+msgstr "Varnost"
#: setup/lib/messages.inc.php:125
msgid "Basic settings"
-msgstr ""
+msgstr "Osnovne nastavitve"
#: setup/lib/messages.inc.php:126
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for"
msgstr ""
+"Napredne nastavitve strežnika; ne spreminjajte teh možnosti, če ne veste "
+"čemu služijo"
#: setup/lib/messages.inc.php:127
msgid "Server configuration"
-msgstr ""
+msgstr "Konfiguracija strežnika"
#: setup/lib/messages.inc.php:128
msgid "Enter server connection parameters"
-msgstr ""
+msgstr "Vnesite parametre povezave s strežnikom"
#: setup/lib/messages.inc.php:129
msgid "Enter login options for signon authentication"
@@ -6186,10 +6204,12 @@ msgstr "Podatkovna zbirka PMA"
#: setup/lib/messages.inc.php:133
msgid "Tracking of changes made in database. Requires configured PMA database."
msgstr ""
+"Sledenje spremembam narejenih v zbirki podatkov. Potrebuje konfigurirano "
+"podatkovno zbirko PMA."
#: setup/lib/messages.inc.php:134
msgid "Changes tracking"
-msgstr ""
+msgstr "Sledenje spremembam"
#: setup/lib/messages.inc.php:135
msgid "Customization"
@@ -6201,23 +6221,23 @@ msgstr "Prilagodi možnosti izvoza"
#: setup/lib/messages.inc.php:137
msgid "Features"
-msgstr ""
+msgstr "Lastnosti"
#: setup/lib/messages.inc.php:138
msgid "Customize import defaults"
-msgstr ""
+msgstr "Prilagodi privzete možnosti uvoza"
#: setup/lib/messages.inc.php:139
msgid "Customize navigation frame"
-msgstr ""
+msgstr "Prilagodi navigacijski okvir"
#: setup/lib/messages.inc.php:140
msgid "Customize main frame"
-msgstr ""
+msgstr "Prilagodi glavni okvir"
#: setup/lib/messages.inc.php:141
msgid "Customize links shown in SQL Query boxes"
-msgstr ""
+msgstr "Prilagodi povezave prikazane v poljih poizvedbe SQL"
#: setup/lib/messages.inc.php:142
msgid "SQL Query box"
@@ -6228,6 +6248,8 @@ msgid ""
"SQL queries settings, for SQL Query box options see [a@?page=form&"
"formset=main_frame#tab_Sql_box]Navigation frame[/a] settings"
msgstr ""
+"Nastavitve poizvedb SQL, za možnosti polja poizvedb SQL glej nastavitve "
+"[a@?page=form&formset=main_frame#tab_Sql_box]navigacijskega okvirja[/a]"
#: setup/lib/messages.inc.php:144
msgid "SQL queries"
@@ -6243,22 +6265,23 @@ msgstr "Zagon"
#: setup/lib/messages.inc.php:147
msgid "Choose how you want tabs to work"
-msgstr ""
+msgstr "Določite, kako želite, da zavihki delujejo"
#: setup/lib/messages.inc.php:148
-#, fuzzy
msgid "Tabs"
-msgstr "Tabela"
+msgstr "Zavihki"
#: setup/lib/messages.inc.php:149
msgid ""
"Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import "
"and export operations"
msgstr ""
+"Omogoči stiskanje [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] za posege "
+"uvoza in izvoza"
#: setup/lib/messages.inc.php:150
msgid "GZip"
-msgstr ""
+msgstr "GZip"
#: setup/lib/messages.inc.php:151
#, php-format
@@ -6267,6 +6290,8 @@ msgid ""
"decompression[/a] requires functions (%s) which are unavailable on this "
"system."
msgstr ""
+"[a@?page=form&formset=features#tab_Import_export]Stiskanje in "
+"razpenjanje GZip[/a] zahteva funkcije (%s), ki na tem sistemu niso na voljo."
#: setup/lib/messages.inc.php:152
msgid "phpMyAdmin homepage"
@@ -6274,21 +6299,23 @@ msgstr "Domača stran phpMyAdmin"
#: setup/lib/messages.inc.php:153
msgid "Extra parameters for iconv"
-msgstr ""
+msgstr "Dodatni parametri za iconv"
#: setup/lib/messages.inc.php:154
msgid "Ignore errors"
-msgstr ""
+msgstr "Prezri napake"
#: setup/lib/messages.inc.php:155
msgid ""
"If enabled, phpMyAdmin continues computing multiple-statement queries even "
"if one of the queries failed"
msgstr ""
+"Če je omogočeno, phpMyAdmin nadaljuje z izvajanjem poizvedb z več izjavami, "
+"četudi ena od poizvedb spodleti"
#: setup/lib/messages.inc.php:156
msgid "Ignore multiple statement errors"
-msgstr ""
+msgstr "Prezri napake več stavkov"
#: setup/lib/messages.inc.php:157
msgid ""
@@ -6296,30 +6323,37 @@ msgid ""
"This might be good way to import large files, however it can break "
"transactions."
msgstr ""
+"Dovoli prekinitev uvoza v primeru, ko skript zazna, da je blizu časovne "
+"omejitve. To je morda dober način za uvoz velikih datotek, čeprav lahko "
+"prekine transakcije."
#: setup/lib/messages.inc.php:158
msgid "Partial import: allow interrupt"
-msgstr ""
+msgstr "Delni uvoz: dovoli prekinitev"
#: setup/lib/messages.inc.php:159
msgid ""
"Default format; be aware that this list depends on location (database, "
"table) and only SQL is always available"
msgstr ""
+"Privzeta oblika; pomnite, da je seznam odvisen od položaja (podatkovna "
+"zbirka, tabela) in vedno je na voljo samo SQL"
#: setup/lib/messages.inc.php:162
msgid "Partial import: skip queries"
-msgstr ""
+msgstr "Delni uvoz: preskoči poizvedbe"
#: setup/lib/messages.inc.php:163
msgid "Insecure connection"
-msgstr ""
+msgstr "Nezavarovana povezava"
#: setup/lib/messages.inc.php:164
msgid ""
"You are not using a secure connection; all data (including potentially "
"sensitive information, like passwords) is transferred unencrypted!"
msgstr ""
+"Ne uporabljate varne povezave; vsi podatki (vključno z morebitnimi "
+"občutljivimi informacijami, kot so gesla) se prenašajo nešifrirani!"
#: setup/lib/messages.inc.php:165
#, php-format
@@ -6327,111 +6361,116 @@ msgid ""
"If your server is also configured to accept HTTPS requests follow [a@%s]this "
"link[/a] to use a secure connection."
msgstr ""
+"Če je vaš strežnik nastavljen za sprejemanje zahtev HTTPS, sledite [a@%s]tej "
+"povezavi[/a] za uporabo varne povezave."
#: setup/lib/messages.inc.php:166
msgid "How many rows can be inserted at one time"
-msgstr ""
+msgstr "Koliko vrstic je lahko vstavljenih naenkrat"
#: setup/lib/messages.inc.php:167
msgid "Number of inserted rows"
-msgstr ""
+msgstr "Število vstavljenih vrstic"
#: setup/lib/messages.inc.php:168
msgid "Target for quick access icon"
-msgstr ""
+msgstr "Cilj ikone za hitri dostop"
#: setup/lib/messages.inc.php:169
msgid "Show logo in left frame"
-msgstr ""
+msgstr "Prikaži logotip v levem okvirju"
#: setup/lib/messages.inc.php:170
msgid "Display logo"
-msgstr ""
+msgstr "Prikaži logotip"
#: setup/lib/messages.inc.php:171
msgid "Display server choice at the top of the left frame"
-msgstr ""
+msgstr "Prikaži izbrani strežnik na vrhu levega okvirja"
#: setup/lib/messages.inc.php:172
msgid "Display servers selection"
-msgstr ""
+msgstr "Prikaži izbiro strežnikov"
#: setup/lib/messages.inc.php:173
msgid "String that separates databases into different tree levels"
-msgstr ""
+msgstr "Niz, ki loči zbirke podatkov v drugi nivo drevesa"
#: setup/lib/messages.inc.php:174
msgid "Database tree separator"
-msgstr ""
+msgstr "Ločilo drevesa zbirke podatkov"
#: setup/lib/messages.inc.php:175
msgid ""
"Only light version; display databases in a tree (determined by the separator "
"defined below)"
msgstr ""
+"Samo lahka različica; prikaže zbirke podatkov v drevesu (določeno z ločilom, "
+"navedenim spodaj)"
#: setup/lib/messages.inc.php:176
msgid "Display databases in a tree"
-msgstr ""
+msgstr "Prikaži zbirke podatkov v drevesu"
#: setup/lib/messages.inc.php:177
msgid "Disable this if you want to see all databases at once"
-msgstr ""
+msgstr "Onemogočite to, če želite videti vse zbirke podatkov naenkrat"
#: setup/lib/messages.inc.php:178
msgid "Use light version"
-msgstr ""
+msgstr "Uporabi lahko različico"
#: setup/lib/messages.inc.php:179
msgid "Maximum table tree depth"
-msgstr ""
+msgstr "Največja globina drevesa tabel"
#: setup/lib/messages.inc.php:180
msgid "String that separates tables into different tree levels"
-msgstr ""
+msgstr "Niz, ki loči tabele v različne stopnje drevesa"
#: setup/lib/messages.inc.php:181
msgid "Table tree separator"
-msgstr ""
+msgstr "Ločilo drevesa tabel"
#: setup/lib/messages.inc.php:182
msgid "Logo link URL"
-msgstr ""
+msgstr "URL-povezava logotipa"
#: setup/lib/messages.inc.php:183
msgid ""
"Open the linked page in the main window ([kbd]main[/kbd]) or in a new one "
"([kbd]new[/kbd])"
msgstr ""
+"Odpre povezano stran v glavnem ([kbd]main[/kbd]) ali v novem oknu "
+"([kbd]new[/kbd])"
#: setup/lib/messages.inc.php:184
msgid "Logo link target"
-msgstr ""
+msgstr "Cilj povezave logotipa"
#: setup/lib/messages.inc.php:185
msgid "Highlight server under the mouse cursor"
-msgstr ""
+msgstr "Poudari strežnik pod miškinim kazalcem"
#: setup/lib/messages.inc.php:186
msgid "Enable highlighting"
-msgstr ""
+msgstr "Omogoči poudarjanje"
#: setup/lib/messages.inc.php:187
msgid "let the user choose"
-msgstr ""
+msgstr "naj uporabnik izbere"
#: setup/lib/messages.inc.php:188
msgid "Use less graphically intense tabs"
-msgstr ""
+msgstr "Uporabi grafično manj zahtevne zavihke"
#: setup/lib/messages.inc.php:189
msgid "Light tabs"
-msgstr ""
+msgstr "Lahki zavihki"
#: setup/lib/messages.inc.php:190
-#, fuzzy
msgid "Load"
-msgstr "Lokalno"
+msgstr "Naloži"
#: setup/lib/messages.inc.php:191
msgid ""
@@ -6442,7 +6481,7 @@ msgstr ""
#: setup/lib/messages.inc.php:192
msgid "Delete all cookies on logout"
-msgstr ""
+msgstr "Izbriši vse piškotke ob odjavi"
#: setup/lib/messages.inc.php:193
msgid ""
@@ -6468,7 +6507,7 @@ msgstr ""
#: setup/lib/messages.inc.php:197
msgid "Define how long (in seconds) a login cookie is valid"
-msgstr ""
+msgstr "Določa, kako dolgo (v sekundah) je prijavni piškotek veljaven"
#: setup/lib/messages.inc.php:198
msgid ""
@@ -6495,7 +6534,7 @@ msgstr ""
#: setup/lib/messages.inc.php:203
msgid "Maximum databases"
-msgstr ""
+msgstr "Največ podatkovnih zbirk"
#: setup/lib/messages.inc.php:204
msgid ""
@@ -6503,24 +6542,29 @@ msgid ""
"contains more rows, "Previous" and "Next" links will be "
"shown."
msgstr ""
+"Število prikazanih vrstic med brskanjem po množici rezultatov. Če množica "
+"rezultatov vsebuje več vrstic, se prikažeta povezavi "Prejšnja" in "
+""Naslednja""
#: setup/lib/messages.inc.php:205
msgid "Maximum number of rows to display"
-msgstr ""
+msgstr "Največje število vrstic za prikaz"
#: setup/lib/messages.inc.php:206
msgid "Maximum number of tables displayed in table list"
-msgstr ""
+msgstr "Največje število tabel prikazanih na seznamu tabel"
#: setup/lib/messages.inc.php:207
msgid "Maximum tables"
-msgstr ""
+msgstr "Največ tabel"
#: setup/lib/messages.inc.php:208
msgid ""
"The number of bytes a script is allowed to allocate, eg. [kbd]32M[/kbd] "
"([kbd]0[/kbd] for no limit)"
msgstr ""
+"Število bajtov, ki jih skript lahko dodeli, npr. [kbd]32M[/kbd] "
+"([kbd]0[/kbd] za neomejeno)"
#: setup/lib/messages.inc.php:209
msgid "Memory limit"
@@ -6528,7 +6572,7 @@ msgstr "Omejitev spomina"
#: setup/lib/messages.inc.php:210 setup/lib/messages.inc.php:222
msgid "Use only icons, only text or both"
-msgstr ""
+msgstr "Uporabi samo ikone, samo besedilo ali oboje"
#: setup/lib/messages.inc.php:211
msgid "Iconic navigation bar"
@@ -6536,45 +6580,47 @@ msgstr ""
#: setup/lib/messages.inc.php:212
msgid "New server"
-msgstr ""
+msgstr "Nov strežnik"
#: setup/lib/messages.inc.php:213
msgid "There are no configured servers"
-msgstr ""
+msgstr "Ni konfiguriranih strežnikov"
#: setup/lib/messages.inc.php:214
msgid "use GZip output buffering for increased speed in HTTP transfers"
-msgstr ""
+msgstr "Uporabi izhod medpomnjenja GZip za povečano hitrost v prenosih HTTP"
#: setup/lib/messages.inc.php:215
msgid "GZip output buffering"
-msgstr ""
+msgstr "Izhod medpomnjenja GZip"
#: setup/lib/messages.inc.php:216
msgid "- none -"
-msgstr ""
+msgstr "- noben -"
#: setup/lib/messages.inc.php:217
msgid ""
"[kbd]SMART[/kbd] - i.e. descending order for fields of type TIME, DATE, "
"DATETIME and TIMESTAMP, ascending order otherwise"
msgstr ""
+"[kbd]SMART[/kbd] – tj. padajoči vrstni red za polja vrste TIME, DATE, "
+"DATETIME in TIMESTAMP, v naprotnem primeru naraščajoči vrstni red"
#: setup/lib/messages.inc.php:218
msgid "Default sorting order"
-msgstr ""
+msgstr "Privzet vrstni red"
#: setup/lib/messages.inc.php:219
msgid "Overview"
-msgstr ""
+msgstr "Pregled"
#: setup/lib/messages.inc.php:220
msgid "Use persistent connections to MySQL databases"
-msgstr ""
+msgstr "Uporabi vztrajne povezave s podatkovnimi zbirkami MySQL"
#: setup/lib/messages.inc.php:221
msgid "Persistent connections"
-msgstr ""
+msgstr "Vztrajne povezave"
#: setup/lib/messages.inc.php:223
msgid "Iconic table operations"
@@ -6582,11 +6628,11 @@ msgstr ""
#: setup/lib/messages.inc.php:224
msgid "Disallow BLOB and BINARY fields from editing"
-msgstr ""
+msgstr "Prepeči urejanje polj BLOB in BINARY"
#: setup/lib/messages.inc.php:225
msgid "Protect binary fields"
-msgstr ""
+msgstr "Zaščiti dvojiška polja"
#: setup/lib/messages.inc.php:226
msgid ""
@@ -6596,23 +6642,23 @@ msgstr ""
#: setup/lib/messages.inc.php:227
msgid "Permanent query history"
-msgstr ""
+msgstr "Trajna zgodovina poizvedb"
#: setup/lib/messages.inc.php:228
msgid "How many queries are kept in history"
-msgstr ""
+msgstr "Koliko poizvedb je hranjenih v zgodovini"
#: setup/lib/messages.inc.php:229
msgid "Query history length"
-msgstr ""
+msgstr "Dolžina zgodovine poizvedb"
#: setup/lib/messages.inc.php:230
msgid "Tab displayed when opening a new query window"
-msgstr ""
+msgstr "Zavihek, ki se prikaže ob odprtju novega okna za poizvedbe"
#: setup/lib/messages.inc.php:231
msgid "Default query window tab"
-msgstr ""
+msgstr "Privzet zavihek okna za poizvedbe"
#: setup/lib/messages.inc.php:232
msgid "Select which functions will be used for character set conversion"
@@ -6632,11 +6678,11 @@ msgstr ""
#: setup/lib/messages.inc.php:236
msgid "Directory where exports can be saved on server"
-msgstr ""
+msgstr "Mapa, kamor se lahko na strežnik shranijo izvozi"
#: setup/lib/messages.inc.php:237
msgid "Save directory"
-msgstr ""
+msgstr "Mapa za shranjevanje"
#: setup/lib/messages.inc.php:238
#, php-format
@@ -6789,7 +6835,7 @@ msgstr ""
#: setup/lib/messages.inc.php:270
msgid "Disable use of INFORMATION_SCHEMA"
-msgstr ""
+msgstr "Onemogoči uporabo INFORMATION_SCHEMA"
#: setup/lib/messages.inc.php:271
#, php-format
@@ -6804,7 +6850,7 @@ msgstr ""
#: setup/lib/messages.inc.php:272
msgid "Edit server"
-msgstr ""
+msgstr "Uredi strežnik"
#: setup/lib/messages.inc.php:273
msgid "What PHP extension to use; you should use mysqli if supported"
@@ -6844,7 +6890,7 @@ msgstr ""
#: setup/lib/messages.inc.php:281
msgid "Hostname where MySQL server is running"
-msgstr ""
+msgstr "Ime gostitelja, kjer teče strežnik MySQL"
#: setup/lib/messages.inc.php:282
msgid "Server hostname"
@@ -6852,15 +6898,15 @@ msgstr "Ime gostitelja strežnika"
#: setup/lib/messages.inc.php:283
msgid "Logout URL"
-msgstr ""
+msgstr "Odjavni URL"
#: setup/lib/messages.inc.php:284
msgid "Try to connect without password"
-msgstr ""
+msgstr "Poskusi se povezati brez gesla"
#: setup/lib/messages.inc.php:285
msgid "Connect without password"
-msgstr ""
+msgstr "Poveži se brez gesla"
#: setup/lib/messages.inc.php:286
msgid ""
@@ -6911,9 +6957,8 @@ msgid ""
msgstr ""
#: setup/lib/messages.inc.php:297
-#, fuzzy
msgid "Relation table"
-msgstr "Popravi tabelo"
+msgstr "Relacijska tabela"
#: setup/lib/messages.inc.php:298
msgid "SQL command to fetch available databases"
@@ -6975,7 +7020,7 @@ msgstr ""
#: setup/lib/messages.inc.php:310
msgid "Add DROP TABLE"
-msgstr ""
+msgstr "Dodaj DROP TABLE"
#: setup/lib/messages.inc.php:311
msgid ""
@@ -6985,7 +7030,7 @@ msgstr ""
#: setup/lib/messages.inc.php:312
msgid "Add DROP DATABASE"
-msgstr ""
+msgstr "Dodaj DROP DATABASE"
#: setup/lib/messages.inc.php:313
msgid "You should use SSL connections if your web server supports it"
@@ -7002,11 +7047,11 @@ msgstr "Izbira strežnika"
#: setup/lib/messages.inc.php:316
msgid "Enable SSL for connection to MySQL server"
-msgstr ""
+msgstr "Omogoči SSL za povezavo s strežnikom MySQL"
#: setup/lib/messages.inc.php:317
msgid "Use SSL"
-msgstr ""
+msgstr "Uporabi SSL"
#: setup/lib/messages.inc.php:318
msgid ""
@@ -7059,11 +7104,11 @@ msgstr ""
#: setup/lib/messages.inc.php:329
msgid ""
"Whether a user should be displayed a "show all (records)" button"
-msgstr ""
+msgstr "Ali se naj uporabniku prikaže gumb "prikaži vse (zapise)""
#: setup/lib/messages.inc.php:330
msgid "Allow to display all the rows"
-msgstr ""
+msgstr "Dovoli prikaz vseh vrstic"
#: setup/lib/messages.inc.php:331
msgid ""
@@ -7074,16 +7119,15 @@ msgstr ""
#: setup/lib/messages.inc.php:332
msgid "Show password change form"
-msgstr ""
+msgstr "Pokaži obrazec za spremembo gesla"
#: setup/lib/messages.inc.php:333
msgid "Show create database form"
-msgstr ""
+msgstr "Pokaži obrazec za ustvarjanje zbirke podatkov"
#: setup/lib/messages.inc.php:334
-#, fuzzy
msgid "Show form"
-msgstr "Pokaži barvo"
+msgstr "Pokaži obrazec"
#: setup/lib/messages.inc.php:335
msgid "Display the function fields in edit/insert mode"
@@ -7095,25 +7139,27 @@ msgstr ""
#: setup/lib/messages.inc.php:337
msgid "Show hidden messages (#MSG_COUNT)"
-msgstr ""
+msgstr "Prikaži skrita sporočila (#MSG_COUNT)"
#: setup/lib/messages.inc.php:338
msgid ""
"Shows link to [a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a] "
"output"
msgstr ""
+"Prikaže povezavo do podatkov "
+"[a@http://php.net/manual/function.phpinfo.php]phpinfo()[/a]"
#: setup/lib/messages.inc.php:339
msgid "Show phpinfo() link"
-msgstr ""
+msgstr "Prikaži povezavo phpinfo()"
#: setup/lib/messages.inc.php:340
msgid "Show detailed MySQL server information"
-msgstr ""
+msgstr "Prikaži podrobne informacije o strežniku MySQL"
#: setup/lib/messages.inc.php:341
msgid "Defines whether SQL queries generated by phpMyAdmin should be displayed"
-msgstr ""
+msgstr "Določi, ali se naj poizvedbe SQL, ki jih ustvari phpMyAdmin, prikažejo"
#: setup/lib/messages.inc.php:342
msgid "Show SQL queries"
@@ -7122,6 +7168,7 @@ msgstr "Pokaži poizvedbe SQL"
#: setup/lib/messages.inc.php:343
msgid "Allow to display database and table statistics (eg. space usage)"
msgstr ""
+"Dovoli prikaz statistike podatkovne zbirke in tabele (npr. poraba prostora)"
#: setup/lib/messages.inc.php:344
msgid "Show statistics"
@@ -7135,7 +7182,7 @@ msgstr ""
#: setup/lib/messages.inc.php:346
msgid "Display database comment instead of its name"
-msgstr ""
+msgstr "Prikaži komentar zbirke podatkov namesto njenega imena"
#: setup/lib/messages.inc.php:347
msgid ""
@@ -7147,11 +7194,11 @@ msgstr ""
#: setup/lib/messages.inc.php:348
msgid "Display table comment instead of its name"
-msgstr ""
+msgstr "Prikaži komentar tabele namesto njenega imena"
#: setup/lib/messages.inc.php:349
msgid "Display table comments in tooltips"
-msgstr ""
+msgstr "Prikaži komentarje tabel v zaslonskih namigih"
#: setup/lib/messages.inc.php:350
msgid ""
@@ -7160,7 +7207,7 @@ msgstr ""
#: setup/lib/messages.inc.php:351
msgid "Skip locked tables"
-msgstr ""
+msgstr "Preskoči zaklenjene tabele"
#: setup/lib/messages.inc.php:357
msgid ""
@@ -7170,7 +7217,7 @@ msgstr ""
#: setup/lib/messages.inc.php:358
msgid "Suggest new database name"
-msgstr ""
+msgstr "Predlagaj novo ime zbirke podatkov"
#: setup/lib/messages.inc.php:359
msgid "yes"
@@ -7190,19 +7237,19 @@ msgstr ""
#: setup/lib/messages.inc.php:362
msgid "Directory on server where you can upload files for import"
-msgstr ""
+msgstr "Mapa na strežniku, kamor lahko naložite datoteke za uvoz"
#: setup/lib/messages.inc.php:363
msgid "Upload directory"
-msgstr ""
+msgstr "Mapa za nalaganje"
#: setup/lib/messages.inc.php:364
msgid "Allow for searching inside the entire database"
-msgstr ""
+msgstr "Dovoli iskanje po celotni zbirki podatkov"
#: setup/lib/messages.inc.php:365
msgid "Use database search"
-msgstr ""
+msgstr "Uporabi iskanje po zbirki podatkov"
#: setup/lib/messages.inc.php:366
msgid ""
@@ -7223,11 +7270,11 @@ msgstr ""
#: setup/lib/messages.inc.php:369
msgid "Got invalid version string from server"
-msgstr ""
+msgstr "Od strežnika sem dobil neveljavno besedilo različice"
#: setup/lib/messages.inc.php:370
msgid "Check for latest version"
-msgstr ""
+msgstr "Preveri za najnovejšo različico"
#: setup/lib/messages.inc.php:371
#, php-format
@@ -7235,6 +7282,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
+"Na voljo je novejša različica phpMyAdmina, zato razmislite o posodobitvi. "
+"Najnovejša različica je %s, izdaja %s."
#: setup/lib/messages.inc.php:372
#, php-format
@@ -7242,14 +7291,16 @@ msgid ""
"You are using Git version, run [kbd]git pull[/kbd] :-)[br]The latest stable "
"version is %s, released on %s."
msgstr ""
+"Uporabljate nadležno različico, zaženite [kbd]tecnoba odstrani[/kbd] "
+":-)[br]Najnovejša stabilna različica je %s, izdana %s."
#: setup/lib/messages.inc.php:373
msgid "No newer stable version is available"
-msgstr ""
+msgstr "Na voljo ni novejše stabilne različice"
#: setup/lib/messages.inc.php:374
msgid "Unparsable version string"
-msgstr ""
+msgstr "Nerazčlenljivo besedilo različice"
#: setup/lib/messages.inc.php:375
msgid "Version check"
@@ -7258,7 +7309,7 @@ msgstr "Preverjanje različice"
#: setup/lib/messages.inc.php:376
msgid ""
"Neither URL wrapper nor CURL is available. Version check is not possible."
-msgstr ""
+msgstr "Na voljo ni ne vmesnik URL ne CURL. Preverjanje različice ni mogoče."
#: setup/lib/messages.inc.php:377
msgid "Warning"
@@ -7269,6 +7320,8 @@ msgid ""
"Enable [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] compression "
"for import and export operations"
msgstr ""
+"Omogoči stiskanje [a@http://en.wikipedia.org/wiki/ZIP_(file_format)]ZIP[/a] "
+"za posege uvoza in izvoza"
#: setup/lib/messages.inc.php:379
#, php-format
@@ -7276,6 +7329,8 @@ msgid ""
"[a@?page=form&formset=features#tab_Import_export]Zip compression[/a] "
"requires functions (%s) which are unavailable on this system."
msgstr ""
+"[a@?page=form&formset=features#tab_Import_export]Stiskanje Zip[/a] "
+"zahteva funkcije (%s), ki na tem sistemu niso na voljo."
#: setup/lib/messages.inc.php:380
#, php-format
@@ -7283,6 +7338,8 @@ msgid ""
"[a@?page=form&formset=features#tab_Import_export]Zip decompression[/a] "
"requires functions (%s) which are unavailable on this system."
msgstr ""
+"[a@?page=form&formset=features#tab_Import_export]Razpenjanje Zip[/a] "
+"zahteva funkcije (%s), ki na tem sistemu niso na voljo."
#: setup/lib/messages.inc.php:381
msgid "ZIP"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, TESTING, updated. RELEASE_3_3_3RC1-3-g80dc561
by Marc Delisle 01 May '10
by Marc Delisle 01 May '10
01 May '10
The branch, TESTING has been updated
via 80dc561011fe54101cb1d7b4665e224d9101cc93 (commit)
via 5f8c1f9268bfa6046f8d754f2f062d1d9e964043 (commit)
via 6b50847a8c6672ebf3e8e93b02f9e2d0b1dcce48 (commit)
via ef2a411db9b005956705c4c3b577f2848189ec26 (commit)
via b76df0d6099704dad6414d4fe4aaccb6694b61a5 (commit)
via 06c8fa0abbe2ff3a9c05f8514e229f1a64eb514b (commit)
via bd4e0b83d8f13060e8422c86dca1e4fa2babc7c4 (commit)
via f97fafea3dc55ba9a98a10fba1787c3cea4b953e (commit)
via 6393fff59dfe8fdc7d43f434fe282378c91c10c9 (commit)
via e9ee6cf1d12332d99095ce2a1b81d2bc3f0fa064 (commit)
via acdf39e95b355bc656409b66174afe6b7e0f39c6 (commit)
via 769aec95effaa407fc62778a23549b902fd586d9 (commit)
via 69dd779f407a41d9b6ea5b8c7418cfac322368cb (commit)
via b6132c51540b24d821641d0a2c7a749bbc55d813 (commit)
via 30acade5a799a77321a9a1e2f7f97681f4e8b401 (commit)
via 55572a531ca411d9a449f409150ffb0836a111d9 (commit)
via 96071655352ab316d2760c141613bebb72c8b2db (commit)
via a879b646202566cc5895a7b28c89016bb323e64c (commit)
via f73b0e0195be22ee89c244e26301051f4d7a1933 (commit)
via d0d24a6e714646a3660c64549382c07375967feb (commit)
via a59d10027bd7fb5a54c8458ed55612dbbcaf2a67 (commit)
via b3c041bb997b939f96c58a330f9ea9168aef738b (commit)
via a99858b16a40bcfceec01667eb2814a1acf45f6d (commit)
via c9d7a662101b57abe754393ab6424b05ab0e685f (commit)
via 5113ef198fad589f7952b9982062ce2aba1847d4 (commit)
via c454825bca7e291019a89a258d9873cd37f93771 (commit)
via f10f34fc6d9a3c894fda81347e78c3e6a0f38fa3 (commit)
via 0fc25ac29348166b85a272400c4f28466d343f29 (commit)
via 8a7b66f3a0e0a45d87ba60cdbf72b417d80194b9 (commit)
via 210b7631da5ddd30ae2d46e90226bc0b2c39d3a0 (commit)
from 6e17d8629c46da6cd88fa91f4be6dcb732169ebe (commit)
- Log -----------------------------------------------------------------
commit 80dc561011fe54101cb1d7b4665e224d9101cc93
Merge: 6e17d8629c46da6cd88fa91f4be6dcb732169ebe 5f8c1f9268bfa6046f8d754f2f062d1d9e964043
Author: Marc Delisle <marc(a)infomarc.info>
Date: Sat May 1 17:07:27 2010 -0400
Merge branch 'MAINT_3_3_3' into TESTING
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 24 ++++++++++++++++++++++++
Documentation.html | 6 +++---
README | 4 ++--
libraries/Config.class.php | 2 +-
libraries/PHPExcel/PHPExcel/Shared/String.php | 6 +++++-
libraries/common.lib.php | 13 ++++++++++++-
libraries/display_tbl.lib.php | 2 +-
libraries/engines/innodb.lib.php | 2 +-
libraries/select_lang.lib.php | 4 ++--
libraries/server_synchronize.lib.php | 16 +++++++++-------
navigation.php | 12 +++++++++++-
pdf_schema.php | 6 +++---
pmd_general.php | 2 +-
scripts/create_tables.sql | 12 +++++++-----
tbl_change.php | 2 +-
tbl_operations.php | 18 +++++++++++++++---
tbl_structure.php | 2 +-
tbl_tracking.php | 14 ++++++++++----
translators.html | 6 +++---
19 files changed, 112 insertions(+), 41 deletions(-)
mode change 100755 => 100644 libraries/export/mediawiki.php
diff --git a/ChangeLog b/ChangeLog
index a5c87d3..7772eb6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,30 @@ phpMyAdmin - ChangeLog
$Id$
$HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyAdmin/… $
+3.3.3.0 (not yet released)
+- patch #2982480 [navi] Do not group if there would be one table in group,
+ thanks to Lorikeet Lee.
+- patch #2983492 [sync] When asking to synchronize Structure and Data,
+ only Structure is done, thanks to Ankit Gupta - ankitgupta3
+- patch #2984893 [engines] InnoDB storage page emits a warning,
+ thanks to Madhura Jayaratne - madhuracj
+- bug #2974687, bug #2974692 [compatibility] PHPExcel : IBM AIX iconv() does not work,
+ thanks to Björn Wiberg - bwiberg
+- bug #2983066 [interface] Flush table on table operations shows the query twice,
+ thanks to Martynas Mickevičius - BlinK_
+- bug #2983060, patch #2987900 [interface] Fix initial state of tables in
+ designer, thanks to Sutharshan Balachandren.
+- bug #2983062, patch #2989408 [engines] Fix warnings when changing table
+ engine to Maria, thanks to Madhura Jayaratne.
+- bug #2974067 [display] non-binary fields shown as hex
+- bug #2983065 [operations] Error when changing from Maria to MyISAM engine
+- bug #2975408 [tracking] Data too long for column data_sql
+- bug [tracking] Tracking report should obey MaxCharactersInDisplayedSQL
+- bug [edit] Avoid selecting UNHEX function by default for a BLOB column for
+ which editing is protected
+- bug #2994168 [structure] Show auto_increment in uppercase
+- bug #2993970 [pdf schema] Page numbering in Table of Contents
+
3.3.2.0 (2010-04-13)
- patch #2969449 [core] Name for MERGE engine varies depending on the
MySQL version, thanks to Dieter Adriaenssens - ruleant
diff --git a/Documentation.html b/Documentation.html
index 330161f..2297d29 100644
--- a/Documentation.html
+++ b/Documentation.html
@@ -10,7 +10,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.3.2 - Documentation</title>
+ <title>phpMyAdmin 3.3.3-rc1 - Documentation</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -18,7 +18,7 @@ vim: expandtab ts=4 sw=4 sts=4 tw=78
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a>
- 3.3.2
+ 3.3.3-rc1
Documentation
</h1>
</div>
@@ -4999,7 +4999,7 @@ Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "Manuzhai".
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel team</a></li>
+ <li>Copyright © 2003 - 2010 <a href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel team</a></li>
<li><a href="LICENSE">License</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Donate</a></li>
<li class="last">Valid <a href="http://validator.w3.org/check/referer">HTML</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></li>
diff --git a/README b/README
index ae0af44..674ddef 100644
--- a/README
+++ b/README
@@ -5,8 +5,8 @@ phpMyAdmin - Readme
A set of PHP-scripts to manage MySQL over the web.
- Version 3.3.2
- -------------
+ Version 3.3.3-rc1
+ -----------------
http://www.phpmyadmin.net/
Copyright (C) 1998-2000 Tobias Ratschiller <tobias_at_ratschiller.com>
diff --git a/libraries/Config.class.php b/libraries/Config.class.php
index 89ef2cf..2e12514 100644
--- a/libraries/Config.class.php
+++ b/libraries/Config.class.php
@@ -92,7 +92,7 @@ class PMA_Config
*/
function checkSystem()
{
- $this->set('PMA_VERSION', '3.3.2');
+ $this->set('PMA_VERSION', '3.3.3-rc1');
/**
* @deprecated
*/
diff --git a/libraries/PHPExcel/PHPExcel/Shared/String.php b/libraries/PHPExcel/PHPExcel/Shared/String.php
index b6a17a3..8a105f0 100644
--- a/libraries/PHPExcel/PHPExcel/Shared/String.php
+++ b/libraries/PHPExcel/PHPExcel/Shared/String.php
@@ -97,7 +97,11 @@ class PHPExcel_Shared_String
return self::$_isIconvEnabled;
}
- self::$_isIconvEnabled = function_exists('iconv') ?
+ // IBM AIX iconv() does not work
+ self::$_isIconvEnabled = function_exists('iconv') &&
+ !(defined('PHP_OS') && @stristr(PHP_OS, 'AIX') && defined('ICONV_IMPL')
+ && (@strcasecmp(ICONV_IMPL, 'unknown') == 0) && defined('ICONV_VERSION')
+ && (@strcasecmp(ICONV_VERSION, 'unknown') == 0)) ?
true : false;
return self::$_isIconvEnabled;
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index d9ff7c5..2e18474 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -1397,7 +1397,7 @@ function PMA_formatByteDown($value, $limes = 6, $comma = 0)
$return_value = PMA_formatNumber($value, 0);
}
- return array($return_value, $unit);
+ return array(trim($return_value), $unit);
} // end of the 'PMA_formatByteDown' function
/**
@@ -2596,6 +2596,17 @@ function PMA_printable_bit_value($value, $length) {
}
/**
+ * Verifies whether the value contains a non-printable character
+ *
+ * @uses preg_match()
+ * @param string $value
+ * @return boolean
+ */
+function PMA_contains_nonprintable_ascii($value) {
+ return preg_match('@[^[:print:]]@', $value);
+}
+
+/**
* Converts a BIT type default value
* for example, b'010' becomes 010
*
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php
index 41bb987..05feefb 100644
--- a/libraries/display_tbl.lib.php
+++ b/libraries/display_tbl.lib.php
@@ -1368,7 +1368,7 @@ function PMA_displayTableBody(&$dt_result, &$is_display, $map, $analyzed_sql) {
if ($_SESSION['tmp_user_values']['display_binary']) {
// user asked to see the real contents of BINARY
// fields
- if ($_SESSION['tmp_user_values']['display_binary_as_hex']) {
+ if ($_SESSION['tmp_user_values']['display_binary_as_hex'] && PMA_contains_nonprintable_ascii($row[$i])) {
$row[$i] = bin2hex($row[$i]);
}
else {
diff --git a/libraries/engines/innodb.lib.php b/libraries/engines/innodb.lib.php
index 894d7ed..44e53f7 100644
--- a/libraries/engines/innodb.lib.php
+++ b/libraries/engines/innodb.lib.php
@@ -109,7 +109,7 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC,
),
'innodb_table_locks' => array(
- 'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC,
+ 'type' => PMA_ENGINE_DETAILS_TYPE_BOOLEAN,
),
'innodb_thread_concurrency' => array(
'type' => PMA_ENGINE_DETAILS_TYPE_NUMERIC,
diff --git a/libraries/export/mediawiki.php b/libraries/export/mediawiki.php
old mode 100755
new mode 100644
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index c1589c4..5e5762a 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -68,9 +68,9 @@ function PMA_langCheck()
if (! empty($_COOKIE['pma_lang'])) {
if (PMA_langSet($_COOKIE['pma_lang'])) {
return true;
- } elseif (!is_string($_COOKIE['lang'])) {
+ } elseif (!is_string($_COOKIE['pma_lang'])) {
/* Faked request, don't care on localisation */
- $GLOBALS['lang_failed_request'] = 'Yes';
+ $GLOBALS['lang_failed_cookie'] = 'Yes';
} else {
$GLOBALS['lang_failed_cookie'] = $_COOKIE['pma_lang'];
}
diff --git a/libraries/server_synchronize.lib.php b/libraries/server_synchronize.lib.php
index 8978cc6..79948b9 100644
--- a/libraries/server_synchronize.lib.php
+++ b/libraries/server_synchronize.lib.php
@@ -671,11 +671,11 @@ function PMA_createTargetTables($src_db, $trg_db, $src_link, $trg_link, &$uncomm
function PMA_populateTargetTables($src_db, $trg_db, $src_link, $trg_link, $uncommon_tables, $table_index, $uncommon_tables_fields, $display)
{
$display = false; // todo: maybe display some of the queries if they are not too numerous
-
$unbuffered_result = PMA_DBI_try_query('SELECT * FROM ' . PMA_backquote($src_db) . '.' . PMA_backquote($uncommon_tables[$table_index]), $src_link, PMA_DBI_QUERY_UNBUFFERED);
if (false !== $unbuffered_result) {
+ $insert_query = 'INSERT INTO ' . PMA_backquote($trg_db) . '.' .PMA_backquote($uncommon_tables[$table_index]) . ' VALUES';
while ($one_row = PMA_DBI_fetch_row($unbuffered_result)) {
- $insert_query = 'INSERT INTO ' . PMA_backquote($trg_db) . '.' .PMA_backquote($uncommon_tables[$table_index]) . ' VALUES(';
+ $insert_query .= '(';
$key_of_last_value = count($one_row) - 1;
foreach($one_row as $key => $value) {
$insert_query .= "'" . PMA_sqlAddslashes($value) . "'";
@@ -683,12 +683,14 @@ function PMA_populateTargetTables($src_db, $trg_db, $src_link, $trg_link, $uncom
$insert_query .= ",";
}
}
- $insert_query .= ');';
- if ($display == true) {
- PMA_displayQuery($insert_query);
- }
- PMA_DBI_try_query($insert_query, $trg_link, 0);
+ $insert_query .= '),';
+ }
+ $insert_query = substr($insert_query, 0, -1);
+ $insert_query .= ';';
+ if ($display == true) {
+ PMA_displayQuery($insert_query);
}
+ PMA_DBI_try_query($insert_query, $trg_link, 0);
}
}
/**
diff --git a/navigation.php b/navigation.php
index fb5e52c..17d0193 100644
--- a/navigation.php
+++ b/navigation.php
@@ -554,7 +554,8 @@ function PMA_displayTableList($tables, $visible = false,
echo '<ul id="subel' . $element_counter . '" style="display: none">';
}
foreach ($tables as $group => $table) {
- if (isset($table['is' . $sep . 'group'])) {
+ // 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);
@@ -610,6 +611,15 @@ function PMA_displayTableList($tables, $visible = false,
}
echo '</li>' . "\n";
} elseif (is_array($table)) {
+ // the table was not grouped because it is the only one with its prefix
+ if (isset($table['is' . $sep . 'group'])) {
+ // get the array with the actual table information
+ foreach ($table as $value) {
+ if(is_array($value)) {
+ $table = $value;
+ }
+ }
+ }
$link_title = PMA_getTitleForTarget($GLOBALS['cfg']['LeftDefaultTabTable']);
// quick access icon next to each table name
echo '<li>' . "\n";
diff --git a/pdf_schema.php b/pdf_schema.php
index 552ee32..ce87e97 100644
--- a/pdf_schema.php
+++ b/pdf_schema.php
@@ -1127,7 +1127,7 @@ function PMA_RT_DOC($alltables)
$pdf->PMA_links['doc'][$table]['-'] = $pdf->AddLink();
$pdf->SetX(10);
// $pdf->Ln(1);
- $pdf->Cell(0, 6, $GLOBALS['strPageNumber'] . ' {' . sprintf("%02d", $i) . '}', 0, 0, 'R', 0, $pdf->PMA_links['doc'][$table]['-']);
+ $pdf->Cell(0, 6, $GLOBALS['strPageNumber'] . ' {' . sprintf("%02d", $i + 1) . '}', 0, 0, 'R', 0, $pdf->PMA_links['doc'][$table]['-']);
$pdf->SetX(10);
$pdf->Cell(0, 6, $i . ' ' . $table, 0, 1, 'L', 0, $pdf->PMA_links['doc'][$table]['-']);
// $pdf->Ln(1);
@@ -1143,9 +1143,9 @@ function PMA_RT_DOC($alltables)
}
$pdf->PMA_links['RT']['-'] = $pdf->AddLink();
$pdf->SetX(10);
- $pdf->Cell(0, 6, $GLOBALS['strPageNumber'] . ' {00}', 0, 0, 'R', 0, $pdf->PMA_links['doc'][$lasttable]['-']);
+ $pdf->Cell(0, 6, $GLOBALS['strPageNumber'] . ' {' . sprintf("%02d", $i + 1) . '}', 0, 0, 'R', 0, $pdf->PMA_links['doc'][$lasttable]['-']);
$pdf->SetX(10);
- $pdf->Cell(0, 6, $i . ' ' . $GLOBALS['strRelationalSchema'], 0, 1, 'L', 0, $pdf->PMA_links['RT']['-']);
+ $pdf->Cell(0, 6, $i + 1 . ' ' . $GLOBALS['strRelationalSchema'], 0, 1, 'L', 0, $pdf->PMA_links['RT']['-']);
$z = 0;
foreach ($alltables AS $table) {
$z++;
diff --git a/pmd_general.php b/pmd_general.php
index 8fd22fd..6956dd6 100644
--- a/pmd_general.php
+++ b/pmd_general.php
@@ -225,7 +225,7 @@ for ($i = 0; $i < count($GLOBALS['PMD']["TABLE_NAME"]); $i++) {
</tr>
</thead>
<tbody id="id_tbody_<?php echo $t_n_url ?>"
- <?php if (! isset($tab_pos[$t_n])) echo 'style="display: none;"'; ?>>
+ <?php if ( isset($tab_pos[$t_n])) echo 'style="display: none;"'; ?>>
<?php
$display_field = PMA_getDisplayField($db, $GLOBALS['PMD']["TABLE_NAME_SMALL"][$i]);
for ($j = 0, $id_cnt = count($tab_column[$t_n]["COLUMN_ID"]); $j < $id_cnt; $j++) {
diff --git a/scripts/create_tables.sql b/scripts/create_tables.sql
index de225ee..bcb8b35 100644
--- a/scripts/create_tables.sql
+++ b/scripts/create_tables.sql
@@ -1,8 +1,8 @@
-- --------------------------------------------------------
-- SQL Commands to set up the pmadb as described in Documentation.html.
---
+--
-- This file is meant for use with MySQL 5 and above!
---
+--
-- This script expects the user pma to already be existing. If we would put a
-- line here to create him too many users might just use this script and end
-- up with having the same password for the controluser.
@@ -173,9 +173,11 @@ CREATE TABLE IF NOT EXISTS `pma_designer_coords` (
ENGINE=MyISAM COMMENT='Table coordinates for Designer'
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
---
+-- --------------------------------------------------------
+
+--
-- Table structure for table `pma_tracking`
---
+--
CREATE TABLE IF NOT EXISTS `pma_tracking` (
`db_name` varchar(64) collate utf8_bin NOT NULL,
@@ -185,7 +187,7 @@ CREATE TABLE IF NOT EXISTS `pma_tracking` (
`date_updated` datetime NOT NULL,
`schema_snapshot` text collate utf8_bin NOT NULL,
`schema_sql` text collate utf8_bin,
- `data_sql` text collate utf8_bin,
+ `data_sql` longtext collate utf8_bin,
`tracking` set('UPDATE','REPLACE','INSERT','DELETE','TRUNCATE','CREATE DATABASE','ALTER DATABASE','DROP DATABASE','CREATE TABLE','ALTER TABLE','RENAME TABLE','DROP TABLE','CREATE INDEX','DROP INDEX','CREATE VIEW','ALTER VIEW','DROP VIEW') collate utf8_bin default NULL,
`tracking_active` int(1) unsigned NOT NULL default '1',
PRIMARY KEY (`db_name`,`table_name`,`version`)
diff --git a/tbl_change.php b/tbl_change.php
index f8cc1c0..d7b86dd 100644
--- a/tbl_change.php
+++ b/tbl_change.php
@@ -482,7 +482,7 @@ foreach ($rows as $row_id => $vrow) {
$backup_field = '';
$special_chars_encoded = PMA_duplicateFirstNewline($special_chars);
// this will select the UNHEX function while inserting
- if (($field['is_binary'] || $field['is_blob']) && $_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) {
+ if (($field['is_binary'] || ($field['is_blob'] && ! $cfg['ProtectBinary'])) && $_SESSION['tmp_user_values']['display_binary_as_hex'] && $cfg['ShowFunctionFields']) {
$field['display_binary_as_hex'] = true;
}
}
diff --git a/tbl_operations.php b/tbl_operations.php
index d045307..98e5f1b 100644
--- a/tbl_operations.php
+++ b/tbl_operations.php
@@ -95,6 +95,10 @@ if (isset($_REQUEST['submitoptions'])) {
$tbl_type = $_REQUEST['new_tbl_type'];
// reset the globals for the new engine
PMA_set_global_variables_for_engine($tbl_type);
+ if ($is_maria) {
+ $transactional = (isset($transactional) && $transactional == '0') ? '0' : '1';
+ $page_checksum = (isset($page_checksum)) ? $page_checksum : '';
+ }
}
if (! empty($_REQUEST['tbl_collation'])
@@ -153,8 +157,16 @@ if (isset($_REQUEST['submitoptions'])) {
$reread_info = true;
unset($table_alters);
foreach (PMA_DBI_get_warnings() as $warning) {
- $warning_messages[] = $warning['Level'] . ': #' . $warning['Code']
- . ' ' . $warning['Message'];
+ // In MariaDB 5.1.44, when altering a table from Maria to MyISAM
+ // and if TRANSACTIONAL was set, the system reports an error;
+ // I discussed with a Maria developer and he agrees that this
+ // should not be reported with a Level of Error, so here
+ // I just ignore it. But there are other 1478 messages
+ // that it's better to show.
+ if (! ($_REQUEST['new_tbl_type'] == 'MyISAM' && $warning['Code'] == '1478' && $warning['Level'] == 'Error')) {
+ $warning_messages[] = $warning['Level'] . ': #' . $warning['Code']
+ . ' ' . $warning['Message'];
+ }
}
}
}
@@ -193,7 +205,7 @@ unset($reread_info);
*/
require_once './libraries/tbl_links.inc.php';
-if (isset($result)) {
+if (isset($result) && empty($zero_rows)) {
// set to success by default, because result set could be empty
// (for example, a table rename)
$_type = 'success';
diff --git a/tbl_structure.php b/tbl_structure.php
index 0d966cc..fbe844d 100644
--- a/tbl_structure.php
+++ b/tbl_structure.php
@@ -346,7 +346,7 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
else {
echo '<i>' . $strNoneDefault . '</i>';
} ?></td>
- <td nowrap="nowrap"><?php echo $row['Extra']; ?></td>
+ <td nowrap="nowrap"><?php echo strtoupper($row['Extra']); ?></td>
<td align="center">
<a href="sql.php?<?php echo $url_query; ?>&sql_query=<?php echo urlencode('SELECT COUNT(*) AS ' . PMA_backquote($strRows) . ', ' . PMA_backquote($row['Field']) . ' FROM ' . PMA_backquote($table) . ' GROUP BY ' . PMA_backquote($row['Field']) . ' ORDER BY ' . PMA_backquote($row['Field'])); ?>">
<?php echo $titles['BrowseDistinctValues']; ?></a>
diff --git a/tbl_tracking.php b/tbl_tracking.php
index fbee82a..224ed87 100644
--- a/tbl_tracking.php
+++ b/tbl_tracking.php
@@ -417,8 +417,11 @@ if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) {
<?php
$style = 'odd';
foreach ($data['ddlog'] as $entry) {
- $parsed_sql = PMA_SQP_parse($entry['statement']);
- $statement = PMA_formatSql($parsed_sql);
+ if (strlen($entry['statement']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) {
+ $statement = substr($entry['statement'], 0, $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) . '[...]';
+ } else {
+ $statement = PMA_formatSql(PMA_SQP_parse($entry['statement']));
+ }
$timestamp = strtotime($entry['date']);
if ($timestamp >= $filter_ts_from && $timestamp <= $filter_ts_to &&
@@ -465,8 +468,11 @@ if (isset($_REQUEST['report']) || isset($_REQUEST['report_export'])) {
<?php
$style = 'odd';
foreach ($data['dmlog'] as $entry) {
- $parsed_sql = PMA_SQP_parse($entry['statement']);
- $statement = PMA_formatSql($parsed_sql);
+ if (strlen($entry['statement']) > $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) {
+ $statement = substr($entry['statement'], 0, $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']) . '[...]';
+ } else {
+ $statement = PMA_formatSql(PMA_SQP_parse($entry['statement']));
+ }
$timestamp = strtotime($entry['date']);
if ($timestamp >= $filter_ts_from && $timestamp <= $filter_ts_to &&
diff --git a/translators.html b/translators.html
index 00f7ab3..d08bf66 100644
--- a/translators.html
+++ b/translators.html
@@ -11,7 +11,7 @@
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>phpMyAdmin 3.3.2 - Official translators</title>
+ <title>phpMyAdmin 3.3.3-rc1 - Official translators</title>
<link rel="stylesheet" type="text/css" href="docs.css" />
</head>
@@ -19,7 +19,7 @@
<div id="header">
<h1>
<a href="http://www.phpmyadmin.net/">php<span class="myadmin">MyAdmin</span></a>
- 3.3.2
+ 3.3.3-rc1
official translators list
</h1>
</div>
@@ -446,7 +446,7 @@
</div>
<ul id="footer">
- <li>Copyright © 2003 - 2009 <a href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel team</a></li>
+ <li>Copyright © 2003 - 2010 <a href="http://www.phpmyadmin.net/home_page/team.php">phpMyAdmin devel team</a></li>
<li><a href="LICENSE">License</a></li>
<li><a href="http://www.phpmyadmin.net/home_page/donate.php">Donate</a></li>
<li class="last">Valid <a href="http://validator.w3.org/check/referer">HTML</a> and <a href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a></li>
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin annotated tag, RELEASE_3_3_3RC1, created. RELEASE_3_3_3RC1
by Marc Delisle 01 May '10
by Marc Delisle 01 May '10
01 May '10
The annotated tag, RELEASE_3_3_3RC1 has been created
at ef744df674f0dc22d4977839df1f95f60d1c6dc6 (tag)
tagging 5f8c1f9268bfa6046f8d754f2f062d1d9e964043 (commit)
replaces RELEASE_3_3_2
tagged by Marc Delisle
on Sat May 1 17:07:26 2010 -0400
- Log -----------------------------------------------------------------
Released 3.3.3-rc1
Ankit Gupta (1):
patch #2983492 When asking to synchronize Structure and Data, only Structure is done
Dieter Adriaenssens (1):
PHPExcel : IBM AIX iconv() does not work
Lorikeet Lee (1):
Do not group if there would be one table in group.
Madhura Jayaratne (2):
Patch #2984893 - InnoDB storage page emits warning
[engines] Fix warnings when changing table engine to Maria.
Marc Delisle (11):
3.3.1 release
3.3.3-dev
3.3.2 release
bug #2974067 non-binary fields shown as hex
bug #2983065 Error when changing from Maria to MyISAM engine
bug #2975408 Data too long for column data_sql
Tracking report should obey MaxCharactersInDisplayedSQL
Avoid selecting UNHEX function by default for a BLOB column for which editing is protected
bug #2994168 Show auto_increment in uppercase
bug #2993970 Page numbering in Table of Contents
3.3.3-rc1
Martynas Mickevičius (1):
Patch #2986708: Fix for the bug #2983066
Michal Čihař (12):
Fix error handling for language from cookie.
Merge remote branch 'origin/MAINT_3_3_1' into QA_3_3
Merge remote branch 'origin/MAINT_3_3_2' into QA_3_3
Merge branch 'MAINT_3_3_2' into QA_3_3
Merge branch 'MAINT_3_3_2' into QA_3_3
Merge branch 'MAINT_3_3_2' into QA_3_3
Merge branch 'MAINT_3_3_2' into QA_3_3
Avoid double spaces.
Merge remote branch 'origin/MAINT_3_3_2' into QA_3_3
Update year.
Add spaces after -- to avoid problems in strict mode.
Fix mermissions.
Sutharshan Balachandren (1):
[interface] Fix initial state of tables in designer.
-----------------------------------------------------------------------
hooks/post-receive
--
phpMyAdmin
1
0