Git
Threads by month
- ----- 2025 -----
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
August 2011
- 8 participants
- 476 discussions

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-13464-g3803a1c
by Michal Čihař 08 Aug '11
by Michal Čihař 08 Aug '11
08 Aug '11
The branch, master has been updated
via 3803a1cde4d153bd5d43b34e16c9eb4c44fd8183 (commit)
via 3d621fd3afb302cfa14940f30bf71815a3263b8c (commit)
via 5379b55691620d107ed33ee43d63727079137413 (commit)
via c722d0d696125345e4ef8f0db095458a696c72d6 (commit)
via 323026c0ea041dd818e0e7f0f453c7dc1ec4d3b2 (commit)
from fcf2a7be85ded45e35ce805816657f98de1c4531 (commit)
- Log -----------------------------------------------------------------
commit 3803a1cde4d153bd5d43b34e16c9eb4c44fd8183
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 8 16:20:37 2011 +0200
Single call of strtr instead of three str_replace
commit 3d621fd3afb302cfa14940f30bf71815a3263b8c
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 8 16:19:05 2011 +0200
Simplify replace logic
commit 5379b55691620d107ed33ee43d63727079137413
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 8 16:17:48 2011 +0200
Coding style
commit c722d0d696125345e4ef8f0db095458a696c72d6
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 8 16:16:47 2011 +0200
Simplify escape functions usint strtr
commit 323026c0ea041dd818e0e7f0f453c7dc1ec4d3b2
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 8 16:15:24 2011 +0200
Use strtr instead of str_replace and array_keys/values combo
-----------------------------------------------------------------------
Summary of changes:
libraries/common.lib.php | 25 +++++++++++--------------
1 files changed, 11 insertions(+), 14 deletions(-)
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index c83ab34..3b8a6b9 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -100,7 +100,7 @@ function PMA_getIcon($icon, $alternate = '', $force_text = false, $noSprite = fa
} else {
$button .= '<img src="themes/dot.gif"'
. ' title="' . $alternate . '" alt="' . $alternate . '"'
- . ' class="icon ic_' . str_replace(array('.gif','.png'),array('',''),$icon) . '" />';
+ . ' class="icon ic_' . str_replace(array('.gif','.png'), '', $icon) . '" />';
}
}
@@ -174,9 +174,10 @@ function PMA_sqlAddSlashes($a_string = '', $is_like = false, $crlf = false, $php
}
if ($crlf) {
- $a_string = str_replace("\n", '\n', $a_string);
- $a_string = str_replace("\r", '\r', $a_string);
- $a_string = str_replace("\t", '\t', $a_string);
+ $a_string = strtr(
+ $a_string,
+ array("\n" => '\n', "\r" => '\r', "\t" => '\t')
+ );
}
if ($php_code) {
@@ -202,10 +203,7 @@ function PMA_sqlAddSlashes($a_string = '', $is_like = false, $crlf = false, $php
*/
function PMA_escape_mysql_wildcards($name)
{
- $name = str_replace('_', '\\_', $name);
- $name = str_replace('%', '\\%', $name);
-
- return $name;
+ return strtr($name, array('_' => '\\_', '%' => '\\%'));
} // end of the 'PMA_escape_mysql_wildcards()' function
/**
@@ -220,10 +218,7 @@ function PMA_escape_mysql_wildcards($name)
*/
function PMA_unescape_mysql_wildcards($name)
{
- $name = str_replace('\\_', '_', $name);
- $name = str_replace('\\%', '%', $name);
-
- return $name;
+ return strtr($name, array('\\_' => '_', '\\%' => '%'));
} // end of the 'PMA_unescape_mysql_wildcards()' function
/**
@@ -1393,7 +1388,9 @@ function PMA_formatNumber($value, $digits_left = 3, $digits_right = 0, $only_dow
//number_format is not multibyte safe, str_replace is safe
if ($digits_left === 0) {
$value = number_format($value, $digits_right);
- if ($originalValue!=0 && floatval($value) == 0) $value = ' <'.(1/PMA_pow(10,$digits_right));
+ if ($originalValue != 0 && floatval($value) == 0) {
+ $value = ' <' . (1 / PMA_pow(10, $digits_right));
+ }
return PMA_localizeNumber($value);
}
@@ -2927,7 +2924,7 @@ function PMA_expandUserString($string, $escape = null, $updates = array())
}
/* Do the replacement */
- return str_replace(array_keys($replace), array_values($replace), strftime($string));
+ return strtr(strftime($string), $replace);
}
/**
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-13459-gfcf2a7b
by Michal Čihař 08 Aug '11
by Michal Čihař 08 Aug '11
08 Aug '11
The branch, master has been updated
via fcf2a7be85ded45e35ce805816657f98de1c4531 (commit)
from e502237c623b1981f683f504104c22fdb7d93522 (commit)
- Log -----------------------------------------------------------------
commit fcf2a7be85ded45e35ce805816657f98de1c4531
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 8 16:11:38 2011 +0200
Improve coding style
-----------------------------------------------------------------------
Summary of changes:
libraries/common.lib.php | 28 ++++++++++++++++++++--------
1 files changed, 20 insertions(+), 8 deletions(-)
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 24f8ee0..c83ab34 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -1429,10 +1429,16 @@ function PMA_formatNumber($value, $digits_left = 3, $digits_right = 0, $only_dow
$dh = PMA_pow(10, $digits_right);
- // This gives us the right SI prefix already, but $digits_left parameter not incorporated
+ /*
+ * This gives us the right SI prefix already,
+ * but $digits_left parameter not incorporated
+ */
$d = floor(log10($value) / 3);
- // Lowering the SI prefix by 1 gives us an additional 3 zeros
- // So if we have 3,6,9,12.. free digits ($digits_left - $cur_digits) to use, then lower the SI prefix
+ /*
+ * Lowering the SI prefix by 1 gives us an additional 3 zeros
+ * So if we have 3,6,9,12.. free digits ($digits_left - $cur_digits)
+ * to use, then lower the SI prefix
+ */
$cur_digits = floor(log10($value / PMA_pow(1000, $d, 'pow'))+1);
if ($digits_left > $cur_digits) {
$d-= floor(($digits_left - $cur_digits)/3);
@@ -1444,12 +1450,18 @@ function PMA_formatNumber($value, $digits_left = 3, $digits_right = 0, $only_dow
$unit = $units[$d];
// If we dont want any zeros after the comma just add the thousand seperator
- if ($noTrailingZero)
- $value = PMA_localizeNumber(preg_replace("/(?<=\d)(?=(\d{3})+(?!\d))/",",",$value));
- else
- $value = PMA_localizeNumber(number_format($value, $digits_right)); //number_format is not multibyte safe, str_replace is safe
+ if ($noTrailingZero) {
+ $value = PMA_localizeNumber(
+ preg_replace('/(?<=\d)(?=(\d{3})+(?!\d))/', ',', $value)
+ );
+ } else {
+ //number_format is not multibyte safe, str_replace is safe
+ $value = PMA_localizeNumber(number_format($value, $digits_right));
+ }
- if ($originalValue!=0 && floatval($value) == 0) return ' <'.(1/PMA_pow(10,$digits_right)).' '.$unit;
+ if ($originalValue!=0 && floatval($value) == 0) {
+ return ' <' . (1 / PMA_pow(10, $digits_right)) . ' ' . $unit;
+ }
return $sign . $value . ' ' . $unit;
} // end of the 'PMA_formatNumber' function
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-13457-ga1af5cc
by Michal Čihař 08 Aug '11
by Michal Čihař 08 Aug '11
08 Aug '11
The branch, master has been updated
via a1af5cc1c708395eb88d9baff2277c56761ed068 (commit)
via e7793905900289cd6f651212bedf2671b3954b7a (commit)
via a11d307639b8101e6a96520387180c0613664a97 (commit)
via 5d8cb09efbeee6d30be8d2db8a06f7dbe59eb497 (commit)
via 9998d700ae5f368e68ffe28763f5ea590018e86a (commit)
via e286d28d3a77e0031d61d962762937bedd1e1ed2 (commit)
via 3e1548c7692adaa78d5cdc38ecc9679bf95028b2 (commit)
via 59fa68aca80d3bbad9698fdd6fad4720ed8f902a (commit)
via f19b2a59c351dab5c599792256092714999efc49 (commit)
via 472246898411aab3c6dcdcfead6a77f48371ae11 (commit)
via 52eac7b7c83e4f559aabe4ffc02063467d3fbed6 (commit)
via b249e97320c013c1c06629ee16da86cc019105f9 (commit)
via 56980d06d08992bfe3288a8a2be994efb921df33 (commit)
via 3a8421abbb9ac2b43bf045ee45d2f3f6c1c32020 (commit)
via 1b3c6b14191082df1e5c98772edda40053b2297c (commit)
via 44026739a306ac6fb08b4b10f8665bdbe8a2a66c (commit)
via b9d3dc75ec1d1ac870ecd7c51daf933f66f5fea2 (commit)
via 2542b649885abb628e54025b5daa412f799d6b8f (commit)
via 338216de8dc86ab7d485f67d865401671c8407a2 (commit)
via d43a725e2e90a00913df6738c8f5bc8bcc4914a7 (commit)
via b6454434fa98edb260192b72bca81af195ae6574 (commit)
via 440271b9fb4f0a5bd34d95e7c804c432c2496615 (commit)
via 18f81120d0997fb44719743c6f13ab2d706d045b (commit)
via 8efc22fc6a2ce6ba3faaf5e31e2e10b400d3eb08 (commit)
via f383298198b848f02f3b1c1c9f6dc01914f69316 (commit)
from fd5bf0e64e7a9dcdd76549fcb0f161ab190e2cc8 (commit)
- Log -----------------------------------------------------------------
commit a1af5cc1c708395eb88d9baff2277c56761ed068
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 8 16:03:30 2011 +0200
Fix typo
commit e7793905900289cd6f651212bedf2671b3954b7a
Merge: a11d307639b8101e6a96520387180c0613664a97 fd5bf0e64e7a9dcdd76549fcb0f161ab190e2cc8
Author: Pootle server <pootle(a)cihar.com>
Date: Mon Aug 8 16:02:27 2011 +0200
Merge branch 'master' of git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
commit a11d307639b8101e6a96520387180c0613664a97
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 16:01:41 2011 +0200
Translation update done using Pootle.
commit 5d8cb09efbeee6d30be8d2db8a06f7dbe59eb497
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 16:01:31 2011 +0200
Translation update done using Pootle.
commit 9998d700ae5f368e68ffe28763f5ea590018e86a
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 16:01:04 2011 +0200
Translation update done using Pootle.
commit e286d28d3a77e0031d61d962762937bedd1e1ed2
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:59:59 2011 +0200
Translation update done using Pootle.
commit 3e1548c7692adaa78d5cdc38ecc9679bf95028b2
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:59:52 2011 +0200
Translation update done using Pootle.
commit 59fa68aca80d3bbad9698fdd6fad4720ed8f902a
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:59:00 2011 +0200
Translation update done using Pootle.
commit f19b2a59c351dab5c599792256092714999efc49
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:58:44 2011 +0200
Translation update done using Pootle.
commit 472246898411aab3c6dcdcfead6a77f48371ae11
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:58:32 2011 +0200
Translation update done using Pootle.
commit 52eac7b7c83e4f559aabe4ffc02063467d3fbed6
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:58:23 2011 +0200
Translation update done using Pootle.
commit b249e97320c013c1c06629ee16da86cc019105f9
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:57:23 2011 +0200
Translation update done using Pootle.
commit 56980d06d08992bfe3288a8a2be994efb921df33
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:57:10 2011 +0200
Translation update done using Pootle.
commit 3a8421abbb9ac2b43bf045ee45d2f3f6c1c32020
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:56:40 2011 +0200
Translation update done using Pootle.
commit 1b3c6b14191082df1e5c98772edda40053b2297c
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:55:41 2011 +0200
Translation update done using Pootle.
commit 44026739a306ac6fb08b4b10f8665bdbe8a2a66c
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:55:05 2011 +0200
Translation update done using Pootle.
commit b9d3dc75ec1d1ac870ecd7c51daf933f66f5fea2
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:54:37 2011 +0200
Translation update done using Pootle.
commit 2542b649885abb628e54025b5daa412f799d6b8f
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:54:23 2011 +0200
Translation update done using Pootle.
commit 338216de8dc86ab7d485f67d865401671c8407a2
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:54:02 2011 +0200
Translation update done using Pootle.
commit d43a725e2e90a00913df6738c8f5bc8bcc4914a7
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:52:50 2011 +0200
Translation update done using Pootle.
commit b6454434fa98edb260192b72bca81af195ae6574
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:52:39 2011 +0200
Translation update done using Pootle.
commit 440271b9fb4f0a5bd34d95e7c804c432c2496615
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:52:28 2011 +0200
Translation update done using Pootle.
commit 18f81120d0997fb44719743c6f13ab2d706d045b
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:52:18 2011 +0200
Translation update done using Pootle.
commit 8efc22fc6a2ce6ba3faaf5e31e2e10b400d3eb08
Merge: f383298198b848f02f3b1c1c9f6dc01914f69316 563a9e6739da02a7c028000768698a40ca89a531
Author: Pootle server <pootle(a)cihar.com>
Date: Mon Aug 8 15:52:03 2011 +0200
Merge branch 'master' of git://phpmyadmin.git.sourceforge.net/gitroot/phpmyadmin/phpmyadmin
commit f383298198b848f02f3b1c1c9f6dc01914f69316
Author: Kęstutis <forkik(a)gmail.com>
Date: Mon Aug 8 15:51:49 2011 +0200
Translation update done using Pootle.
-----------------------------------------------------------------------
Summary of changes:
po/af.po | 2 +-
po/ar.po | 2 +-
po/az.po | 2 +-
po/be.po | 2 +-
po/be(a)latin.po | 2 +-
po/bg.po | 2 +-
po/bn.po | 2 +-
po/br.po | 2 +-
po/bs.po | 2 +-
po/ca.po | 2 +-
po/cs.po | 2 +-
po/cy.po | 2 +-
po/da.po | 2 +-
po/de.po | 2 +-
po/el.po | 2 +-
po/en_GB.po | 2 +-
po/es.po | 2 +-
po/et.po | 2 +-
po/eu.po | 2 +-
po/fa.po | 2 +-
po/fi.po | 2 +-
po/fr.po | 2 +-
po/gl.po | 2 +-
po/he.po | 2 +-
po/hi.po | 2 +-
po/hr.po | 2 +-
po/hu.po | 2 +-
po/id.po | 2 +-
po/it.po | 2 +-
po/ja.po | 2 +-
po/ka.po | 2 +-
po/ko.po | 2 +-
po/lt.po | 59 ++++++++++++++++++++-----------------------------------
po/lv.po | 2 +-
po/mk.po | 2 +-
po/ml.po | 2 +-
po/mn.po | 2 +-
po/ms.po | 2 +-
po/nb.po | 2 +-
po/nl.po | 2 +-
po/pl.po | 2 +-
po/pt.po | 2 +-
po/pt_BR.po | 2 +-
po/ro.po | 2 +-
po/ru.po | 2 +-
po/si.po | 2 +-
po/sk.po | 2 +-
po/sl.po | 2 +-
po/sq.po | 2 +-
po/sr.po | 2 +-
po/sr(a)latin.po | 2 +-
po/sv.po | 2 +-
po/ta.po | 2 +-
po/te.po | 2 +-
po/th.po | 2 +-
po/tr.po | 2 +-
po/tt.po | 2 +-
po/ug.po | 2 +-
po/uk.po | 2 +-
po/ur.po | 2 +-
po/uz.po | 2 +-
po/uz(a)latin.po | 2 +-
po/zh_CN.po | 2 +-
po/zh_TW.po | 2 +-
64 files changed, 85 insertions(+), 100 deletions(-)
diff --git a/po/af.po b/po/af.po
index 2d58fb2..0b7533e 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1928,7 +1928,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "So"
diff --git a/po/ar.po b/po/ar.po
index 4c4e8b2..11d011b 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1842,7 +1842,7 @@ msgstr "السبت"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "الأحد"
diff --git a/po/az.po b/po/az.po
index 782a6e7..0783a30 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1957,7 +1957,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Baz"
diff --git a/po/be.po b/po/be.po
index 233d382..0624f23 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1989,7 +1989,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ндз"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 6f35a29..15877c6 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -1996,7 +1996,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ndz"
diff --git a/po/bg.po b/po/bg.po
index daaccea..12b7126 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1861,7 +1861,7 @@ msgstr "събота"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "нд"
diff --git a/po/bn.po b/po/bn.po
index e04129f..f8eb53e 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1974,7 +1974,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "রবিবার"
diff --git a/po/br.po b/po/br.po
index 5049627..cdc2618 100644
--- a/po/br.po
+++ b/po/br.po
@@ -1857,7 +1857,7 @@ msgstr "Sadorn"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Sul"
diff --git a/po/bs.po b/po/bs.po
index 9abd157..130caa3 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1949,7 +1949,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
diff --git a/po/ca.po b/po/ca.po
index 7ffc480..c54e55c 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1903,7 +1903,7 @@ msgstr "Dissabte"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Diu"
diff --git a/po/cs.po b/po/cs.po
index 3df272a..eff6864 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1829,7 +1829,7 @@ msgstr "Sobota"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
diff --git a/po/cy.po b/po/cy.po
index 6dcfdc5..6d2fa70 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -1936,7 +1936,7 @@ msgstr "Dydd Sadwrn"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Sul"
diff --git a/po/da.po b/po/da.po
index 5db681c..b68fdff 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1877,7 +1877,7 @@ msgstr "lørdag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "søn"
diff --git a/po/de.po b/po/de.po
index 57f25a9..e8f00d6 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1860,7 +1860,7 @@ msgstr "Samstag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "So"
diff --git a/po/el.po b/po/el.po
index 57f54aa..3a99ef5 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1872,7 +1872,7 @@ msgstr "Σάββατο"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Κυρ"
diff --git a/po/en_GB.po b/po/en_GB.po
index 018a644..29cc2ff 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1832,7 +1832,7 @@ msgstr "Saturday"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Sun"
diff --git a/po/es.po b/po/es.po
index b0458dc..3a509c5 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1867,7 +1867,7 @@ msgstr "Sábado"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
diff --git a/po/et.po b/po/et.po
index d50a88e..3ebc006 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1978,7 +1978,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Püh"
diff --git a/po/eu.po b/po/eu.po
index b3e878b..436cfa3 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1954,7 +1954,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Iga"
diff --git a/po/fa.po b/po/fa.po
index 7c32e3f..6698c26 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -1917,7 +1917,7 @@ msgstr "شنبه"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "يكشنبه"
diff --git a/po/fi.po b/po/fi.po
index 157a73a..18e068b 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1897,7 +1897,7 @@ msgstr "La"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Su"
diff --git a/po/fr.po b/po/fr.po
index 04fee6d..b367dea 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1845,7 +1845,7 @@ msgstr "Samedi"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Dim"
diff --git a/po/gl.po b/po/gl.po
index 8887705..db4c9fe 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -2004,7 +2004,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Do"
diff --git a/po/he.po b/po/he.po
index 9b84983..87e68dd 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1951,7 +1951,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "יום ראשון"
diff --git a/po/hi.po b/po/hi.po
index c8b9212..ce883a1 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -1877,7 +1877,7 @@ msgstr "शनिवार"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "रविवार"
diff --git a/po/hr.po b/po/hr.po
index c4255fc..7067270 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1988,7 +1988,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
diff --git a/po/hu.po b/po/hu.po
index a95be70..ad43a5e 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1895,7 +1895,7 @@ msgstr "Szombat"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "V"
diff --git a/po/id.po b/po/id.po
index 4da8f97..acaf1df 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1879,7 +1879,7 @@ msgstr "Sabtu"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Minggu"
diff --git a/po/it.po b/po/it.po
index 7f6d027..bbc4886 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1887,7 +1887,7 @@ msgstr "Sabato"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
diff --git a/po/ja.po b/po/ja.po
index ca8329f..82b43a0 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1838,7 +1838,7 @@ msgstr "土"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "日"
diff --git a/po/ka.po b/po/ka.po
index 55fcf44..616af70 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -1999,7 +1999,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "კვი"
diff --git a/po/ko.po b/po/ko.po
index 4925686..6d83c74 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1911,7 +1911,7 @@ msgstr "토요일"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "일"
diff --git a/po/lt.po b/po/lt.po
index 081106c..e9f7595 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -4,7 +4,7 @@ msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel(a)lists.sourceforge.net\n"
"POT-Creation-Date: 2011-08-08 10:07+0200\n"
-"PO-Revision-Date: 2011-08-08 15:51+0200\n"
+"PO-Revision-Date: 2011-08-08 16:01+0200\n"
"Last-Translator: Kęstutis <forkik(a)gmail.com>\n"
"Language-Team: lithuanian <lt(a)li.org>\n"
"Language: lt\n"
@@ -1548,38 +1548,33 @@ msgid "Create Table"
msgstr "Lentelės kūrimas"
#: js/messages.php:209
-#, fuzzy
#| msgid "Use Tables"
msgid "Insert Table"
-msgstr "Naudoti lenteles"
+msgstr "Įterpti lentelę"
#: js/messages.php:210
-#, fuzzy
#| msgid "Apply index(s)"
msgid "Hide indexes"
-msgstr "Keisti žurnalą(us) (indeksą)"
+msgstr "Nerodyti indeksų"
#: js/messages.php:211
-#, fuzzy
#| msgid "Show grid"
msgid "Show indexes"
-msgstr "Rodyti tinklelį"
+msgstr "Rodyti indeksus"
#: js/messages.php:214
msgid "Searching"
msgstr "Ieškoma"
#: js/messages.php:215
-#, fuzzy
#| msgid "Hide search criteria"
msgid "Hide search results"
-msgstr "Slėpti paieškos kriterijų"
+msgstr "Slėpti paieškos rezultatus"
#: js/messages.php:216
-#, fuzzy
#| msgid "Show search criteria"
msgid "Show search results"
-msgstr "Rodyti paieškos kriterijų"
+msgstr "Rodyti paieškos rezultatas"
#: js/messages.php:217
#, fuzzy
@@ -1600,7 +1595,7 @@ msgstr ""
#: js/messages.php:224
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
+msgstr "Pastaba: Jei failas turi keletą lentelių jos bus sukombinuotos į vieną."
#: js/messages.php:227
msgid "Hide query box"
@@ -1638,10 +1633,9 @@ msgid "Change"
msgstr "Redaguoti"
#: js/messages.php:235
-#, fuzzy
#| msgid "Maximum execution time"
msgid "Query execution time"
-msgstr "Ilgiausias vykdymo laikas"
+msgstr "Užklausos vykdymo laikas"
#: js/messages.php:238
msgid "Hide search criteria"
@@ -1657,7 +1651,6 @@ msgid "Ignore"
msgstr "Ignoruoti"
#: js/messages.php:245
-#, fuzzy
#| msgid "Add column(s)"
msgid "Add columns"
msgstr "Pridėti stulpelį(-ius)"
@@ -1719,10 +1712,9 @@ msgid ", latest stable version:"
msgstr ", naujausia stabili versija:"
#: js/messages.php:269
-#, fuzzy
#| msgid "Jump to database"
msgid "up to date"
-msgstr "Eiti į duomenų bazę"
+msgstr "naujausias"
#. l10n: Display text for calendar close link
#: js/messages.php:287
@@ -1886,7 +1878,7 @@ msgstr "Šeštadienis"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Sek"
@@ -1978,13 +1970,12 @@ msgstr "Šrifto dydis"
#: libraries/File.class.php:220
msgid "File was not an uploaded file."
-msgstr ""
+msgstr "Failas nebuvo įkeltasis failas."
#: libraries/File.class.php:259 libraries/File.class.php:388
-#, fuzzy
#| msgid "Unknown error in file upload."
msgid "Unknown error while uploading."
-msgstr "Nežinoma klaida failų įkėlime."
+msgstr "Nežinoma klaida vykstant siuntimui."
#: libraries/File.class.php:277
msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
@@ -2028,11 +2019,11 @@ msgstr ""
#: libraries/File.class.php:507
msgid "Error while moving uploaded file."
-msgstr ""
+msgstr "Klaida perkeliant atsiųstą failą."
#: libraries/File.class.php:515
msgid "Cannot read (moved) upload file."
-msgstr ""
+msgstr "Negalima perskaityti (perkelti) įkelto failo."
#: libraries/Index.class.php:418 tbl_relation.php:526
msgid "No index defined!"
@@ -2118,22 +2109,19 @@ msgstr[1] "Įterptos %1$d eilutės."
msgstr[2] "Įterpta %1$d eilučių."
#: libraries/RecentTable.class.php:107
-#, fuzzy
#| msgid "Could not save configuration"
msgid "Could not save recent table"
-msgstr "Nepavyko išsaugoti konfigūracijos"
+msgstr "Negalėjo išsaugoti paskiausios lentelės"
#: libraries/RecentTable.class.php:142
-#, fuzzy
#| msgid "Count tables"
msgid "Recent tables"
-msgstr "Suskaičiuoti lenteles"
+msgstr "Paskiausios lentelės"
#: libraries/RecentTable.class.php:148
-#, fuzzy
#| msgid "There are no configured servers"
msgid "There are no recent tables"
-msgstr "Nėra jokių sukonfigūruotų serverių"
+msgstr "Nėra jokių paskiausių lentelių"
#: libraries/StorageEngine.class.php:180
msgid ""
@@ -2156,10 +2144,9 @@ msgid "This MySQL server does not support the %s storage engine."
msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio."
#: libraries/Table.class.php:303
-#, fuzzy
#| msgid "Show slave status"
msgid "unknown table status: "
-msgstr "Rodyti pavaldinio būklę"
+msgstr "lentelės būsena nežinoma:"
#: libraries/Table.class.php:1034
msgid "Invalid database"
@@ -2181,7 +2168,7 @@ msgstr "Lentelė %s pervadinta į %s"
#: libraries/Table.class.php:1274
msgid "Could not save table UI preferences"
-msgstr ""
+msgstr "Nepavyko išsaugoti lentelės naudotojo sąsajos nustatymų."
#: libraries/Theme.class.php:144
#, php-format
@@ -2213,7 +2200,7 @@ msgstr "Kelias iki temos nerastas temai %s!"
#: libraries/Theme_Manager.class.php:286 themes.php:20 themes.php:41
msgid "Theme"
-msgstr ""
+msgstr "Apipavidalinimas"
#: libraries/auth/config.auth.lib.php:71
msgid "Cannot connect: invalid settings."
@@ -2343,10 +2330,9 @@ msgid "PBMS get BLOB info failed:"
msgstr "PBMS gavimas BLOB informacijos nepavyko:"
#: libraries/blobstreaming.lib.php:332
-#, fuzzy
#| msgid "get BLOB Content-Type failed"
msgid "PBMS get BLOB Content-Type failed"
-msgstr "gavimas BLOB Content-Type nepatyko"
+msgstr "PBMS gauti BLOB Content-Type nepatyko"
#: libraries/blobstreaming.lib.php:358
msgid "View image"
@@ -2419,10 +2405,9 @@ msgid "Check Privileges"
msgstr "Patikrinti privilegijas"
#: libraries/common.inc.php:588
-#, fuzzy
#| msgid "Could not save configuration"
msgid "Failed to read configuration file"
-msgstr "Nepavyko išsaugoti konfigūracijos"
+msgstr "Nepavyko perskaityti konfigūracijos failo"
#: libraries/common.inc.php:589
msgid ""
diff --git a/po/lv.po b/po/lv.po
index 469744c..0a77b42 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1957,7 +1957,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Sv"
diff --git a/po/mk.po b/po/mk.po
index da9eb72..dc1310d 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -1955,7 +1955,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Нед"
diff --git a/po/ml.po b/po/ml.po
index 4ed0de6..87f6c23 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -1790,7 +1790,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index e4e180b..1b91b6d 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -1966,7 +1966,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ня"
diff --git a/po/ms.po b/po/ms.po
index 323873a..1793244 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1940,7 +1940,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Aha"
diff --git a/po/nb.po b/po/nb.po
index c8682f3..b4f3947 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1899,7 +1899,7 @@ msgstr "Lørdag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Søn"
diff --git a/po/nl.po b/po/nl.po
index f70653e..8f21297 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1888,7 +1888,7 @@ msgstr "zaterdag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "zo"
diff --git a/po/pl.po b/po/pl.po
index 279f0f9..e53f85a 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1923,7 +1923,7 @@ msgstr "Sobota"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Nie"
diff --git a/po/pt.po b/po/pt.po
index 9b1820c..59ebcb1 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1931,7 +1931,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index f2f8f13..0e8c5e9 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1872,7 +1872,7 @@ msgstr "Sábado"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Dom"
diff --git a/po/ro.po b/po/ro.po
index adafc26..36a8409 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1979,7 +1979,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Dum"
diff --git a/po/ru.po b/po/ru.po
index 7b1645c..c7dca65 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1878,7 +1878,7 @@ msgstr "Суббота"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Вс"
diff --git a/po/si.po b/po/si.po
index 29fabfd..b89eb4d 100644
--- a/po/si.po
+++ b/po/si.po
@@ -1881,7 +1881,7 @@ msgstr "සෙනසුරාදා"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "ඉරිදා"
diff --git a/po/sk.po b/po/sk.po
index 923f027..1fa7eb9 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1868,7 +1868,7 @@ msgstr "Sobota"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ne"
diff --git a/po/sl.po b/po/sl.po
index 9444891..5540b24 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1879,7 +1879,7 @@ msgstr "sobota"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "ned"
diff --git a/po/sq.po b/po/sq.po
index 67d56c8..ad67c0a 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1958,7 +1958,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Djl"
diff --git a/po/sr.po b/po/sr.po
index cd329ce..551727a 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -1978,7 +1978,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Нед"
diff --git a/po/sr(a)latin.po b/po/sr(a)latin.po
index 43b4686..fe6ede6 100644
--- a/po/sr(a)latin.po
+++ b/po/sr(a)latin.po
@@ -1972,7 +1972,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ned"
diff --git a/po/sv.po b/po/sv.po
index d49096c..2b9fc95 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -1848,7 +1848,7 @@ msgstr "Lördag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Sön"
diff --git a/po/ta.po b/po/ta.po
index 73d1d12..f0c5ec5 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -1834,7 +1834,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "ஞாயிறு"
diff --git a/po/te.po b/po/te.po
index 3f08e4b..b1991f6 100644
--- a/po/te.po
+++ b/po/te.po
@@ -1878,7 +1878,7 @@ msgstr "శనివారం"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "ఆది"
diff --git a/po/th.po b/po/th.po
index bfd3b31..1641d2b 100644
--- a/po/th.po
+++ b/po/th.po
@@ -1922,7 +1922,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "อา."
diff --git a/po/tr.po b/po/tr.po
index f050ada..25f6d82 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -1837,7 +1837,7 @@ msgstr "Cumartesi"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Paz"
diff --git a/po/tt.po b/po/tt.po
index 176e6cf..1ef7d32 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -1964,7 +1964,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Ykş"
diff --git a/po/ug.po b/po/ug.po
index 9e69bd7..cbf5b1b 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -1906,7 +1906,7 @@ msgstr "شەنبە"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "يەكشەنبە"
diff --git a/po/uk.po b/po/uk.po
index 2a656b0..321199b 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -1862,7 +1862,7 @@ msgstr "Субота"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Нд"
diff --git a/po/ur.po b/po/ur.po
index eb2f70c..6b61c03 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -1892,7 +1892,7 @@ msgstr "ہفتہ"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "اتوار"
diff --git a/po/uz.po b/po/uz.po
index c37dab4..616fc84 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -2009,7 +2009,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Якш"
diff --git a/po/uz(a)latin.po b/po/uz(a)latin.po
index 4ddad89..0599fae 100644
--- a/po/uz(a)latin.po
+++ b/po/uz(a)latin.po
@@ -2016,7 +2016,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "Yaksh"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index b6fc99f..bf9ea89 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1858,7 +1858,7 @@ msgstr "星期六"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "周日"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 38d24d8..3a71693 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1852,7 +1852,7 @@ msgstr "星期六"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
-msgctx "Short week day name"
+msgctxt "Short week day name"
msgid "Sun"
msgstr "週日"
hooks/post-receive
--
phpMyAdmin
1
0

[Phpmyadmin-git] [SCM] phpMyAdmin branch, master, updated. RELEASE_3_4_3_1-13432-gfd5bf0e
by Michal Čihař 08 Aug '11
by Michal Čihař 08 Aug '11
08 Aug '11
The branch, master has been updated
via fd5bf0e64e7a9dcdd76549fcb0f161ab190e2cc8 (commit)
from 563a9e6739da02a7c028000768698a40ca89a531 (commit)
- Log -----------------------------------------------------------------
commit fd5bf0e64e7a9dcdd76549fcb0f161ab190e2cc8
Author: Michal Čihař <mcihar(a)suse.cz>
Date: Mon Aug 8 15:59:46 2011 +0200
Avoid disambigution with Sun as a star
-----------------------------------------------------------------------
Summary of changes:
libraries/common.lib.php | 2 +-
po/af.po | 1 +
po/ar.po | 1 +
po/az.po | 1 +
po/be.po | 1 +
po/be(a)latin.po | 1 +
po/bg.po | 1 +
po/bn.po | 1 +
po/br.po | 1 +
po/bs.po | 1 +
po/ca.po | 1 +
po/cs.po | 1 +
po/cy.po | 1 +
po/da.po | 1 +
po/de.po | 1 +
po/el.po | 1 +
po/en_GB.po | 1 +
po/es.po | 1 +
po/et.po | 1 +
po/eu.po | 1 +
po/fa.po | 1 +
po/fi.po | 1 +
po/fr.po | 1 +
po/gl.po | 1 +
po/he.po | 1 +
po/hi.po | 1 +
po/hr.po | 1 +
po/hu.po | 1 +
po/id.po | 1 +
po/it.po | 1 +
po/ja.po | 1 +
po/ka.po | 1 +
po/ko.po | 1 +
po/lt.po | 1 +
po/lv.po | 1 +
po/mk.po | 1 +
po/ml.po | 1 +
po/mn.po | 1 +
po/ms.po | 1 +
po/nb.po | 1 +
po/nl.po | 1 +
po/pl.po | 1 +
po/pt.po | 1 +
po/pt_BR.po | 1 +
po/ro.po | 1 +
po/ru.po | 1 +
po/si.po | 1 +
po/sk.po | 1 +
po/sl.po | 1 +
po/sq.po | 1 +
po/sr.po | 1 +
po/sr(a)latin.po | 1 +
po/sv.po | 1 +
po/ta.po | 1 +
po/te.po | 1 +
po/th.po | 1 +
po/tr.po | 1 +
po/tt.po | 1 +
po/ug.po | 1 +
po/uk.po | 1 +
po/ur.po | 1 +
po/uz.po | 1 +
po/uz(a)latin.po | 1 +
po/zh_CN.po | 1 +
po/zh_TW.po | 1 +
65 files changed, 65 insertions(+), 1 deletions(-)
diff --git a/libraries/common.lib.php b/libraries/common.lib.php
index 2f61cec..24f8ee0 100644
--- a/libraries/common.lib.php
+++ b/libraries/common.lib.php
@@ -1514,7 +1514,7 @@ function PMA_localisedDate($timestamp = -1, $format = '')
__('Dec'));
$day_of_week = array(
/* l10n: Short week day name */
- __('Sun'),
+ _pgettext('Short week day name', 'Sun'),
/* l10n: Short week day name */
__('Mon'),
/* l10n: Short week day name */
diff --git a/po/af.po b/po/af.po
index b5b12c9..2d58fb2 100644
--- a/po/af.po
+++ b/po/af.po
@@ -1928,6 +1928,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "So"
diff --git a/po/ar.po b/po/ar.po
index 47c29af..4c4e8b2 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1842,6 +1842,7 @@ msgstr "السبت"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "الأحد"
diff --git a/po/az.po b/po/az.po
index a9238ce..782a6e7 100644
--- a/po/az.po
+++ b/po/az.po
@@ -1957,6 +1957,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Baz"
diff --git a/po/be.po b/po/be.po
index 179763c..233d382 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1989,6 +1989,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Ндз"
diff --git a/po/be(a)latin.po b/po/be(a)latin.po
index 80c5d80..6f35a29 100644
--- a/po/be(a)latin.po
+++ b/po/be(a)latin.po
@@ -1996,6 +1996,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Ndz"
diff --git a/po/bg.po b/po/bg.po
index 71ab75e..daaccea 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1861,6 +1861,7 @@ msgstr "събота"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "нд"
diff --git a/po/bn.po b/po/bn.po
index 2503c8d..e04129f 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1974,6 +1974,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "রবিবার"
diff --git a/po/br.po b/po/br.po
index d88c06e..5049627 100644
--- a/po/br.po
+++ b/po/br.po
@@ -1857,6 +1857,7 @@ msgstr "Sadorn"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Sul"
diff --git a/po/bs.po b/po/bs.po
index b965cf7..9abd157 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1949,6 +1949,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Ned"
diff --git a/po/ca.po b/po/ca.po
index 611b819..7ffc480 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1903,6 +1903,7 @@ msgstr "Dissabte"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Diu"
diff --git a/po/cs.po b/po/cs.po
index 3e2cefb..3df272a 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1829,6 +1829,7 @@ msgstr "Sobota"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Ned"
diff --git a/po/cy.po b/po/cy.po
index cfe5ed3..6dcfdc5 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -1936,6 +1936,7 @@ msgstr "Dydd Sadwrn"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Sul"
diff --git a/po/da.po b/po/da.po
index 67b3f45..5db681c 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1877,6 +1877,7 @@ msgstr "lørdag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "søn"
diff --git a/po/de.po b/po/de.po
index 75539d4..57f25a9 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1860,6 +1860,7 @@ msgstr "Samstag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "So"
diff --git a/po/el.po b/po/el.po
index 714e7ea..57f54aa 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1872,6 +1872,7 @@ msgstr "Σάββατο"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Κυρ"
diff --git a/po/en_GB.po b/po/en_GB.po
index 65cff64..018a644 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1832,6 +1832,7 @@ msgstr "Saturday"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Sun"
diff --git a/po/es.po b/po/es.po
index bf4a88b..b0458dc 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1867,6 +1867,7 @@ msgstr "Sábado"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Dom"
diff --git a/po/et.po b/po/et.po
index 12142e4..d50a88e 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1978,6 +1978,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Püh"
diff --git a/po/eu.po b/po/eu.po
index 186e19c..b3e878b 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -1954,6 +1954,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Iga"
diff --git a/po/fa.po b/po/fa.po
index 10d6fbd..7c32e3f 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -1917,6 +1917,7 @@ msgstr "شنبه"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "يكشنبه"
diff --git a/po/fi.po b/po/fi.po
index bde0ea0..157a73a 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1897,6 +1897,7 @@ msgstr "La"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Su"
diff --git a/po/fr.po b/po/fr.po
index 30471f2..04fee6d 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1845,6 +1845,7 @@ msgstr "Samedi"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Dim"
diff --git a/po/gl.po b/po/gl.po
index 9515e80..8887705 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -2004,6 +2004,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Do"
diff --git a/po/he.po b/po/he.po
index 383ebf8..9b84983 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1951,6 +1951,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "יום ראשון"
diff --git a/po/hi.po b/po/hi.po
index d38d32e..c8b9212 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -1877,6 +1877,7 @@ msgstr "शनिवार"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "रविवार"
diff --git a/po/hr.po b/po/hr.po
index e955907..c4255fc 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1988,6 +1988,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Ned"
diff --git a/po/hu.po b/po/hu.po
index 680c53a..a95be70 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1895,6 +1895,7 @@ msgstr "Szombat"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "V"
diff --git a/po/id.po b/po/id.po
index b90679c..4da8f97 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1879,6 +1879,7 @@ msgstr "Sabtu"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Minggu"
diff --git a/po/it.po b/po/it.po
index e2f000c..7f6d027 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1887,6 +1887,7 @@ msgstr "Sabato"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Dom"
diff --git a/po/ja.po b/po/ja.po
index 66eb462..ca8329f 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1838,6 +1838,7 @@ msgstr "土"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "日"
diff --git a/po/ka.po b/po/ka.po
index eb5d0ff..55fcf44 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -1999,6 +1999,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "კვი"
diff --git a/po/ko.po b/po/ko.po
index bd0f2fb..4925686 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1911,6 +1911,7 @@ msgstr "토요일"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "일"
diff --git a/po/lt.po b/po/lt.po
index 265e94c..081106c 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1886,6 +1886,7 @@ msgstr "Šeštadienis"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Sek"
diff --git a/po/lv.po b/po/lv.po
index 9173140..469744c 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1957,6 +1957,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Sv"
diff --git a/po/mk.po b/po/mk.po
index da792bb..da9eb72 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -1955,6 +1955,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Нед"
diff --git a/po/ml.po b/po/ml.po
index 07b1f86..4ed0de6 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -1790,6 +1790,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr ""
diff --git a/po/mn.po b/po/mn.po
index 958b36c..e4e180b 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -1966,6 +1966,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Ня"
diff --git a/po/ms.po b/po/ms.po
index ac1afe0..323873a 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1940,6 +1940,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Aha"
diff --git a/po/nb.po b/po/nb.po
index 94418a2..c8682f3 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1899,6 +1899,7 @@ msgstr "Lørdag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Søn"
diff --git a/po/nl.po b/po/nl.po
index d60a80f..f70653e 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1888,6 +1888,7 @@ msgstr "zaterdag"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "zo"
diff --git a/po/pl.po b/po/pl.po
index b84ece8..279f0f9 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -1923,6 +1923,7 @@ msgstr "Sobota"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Nie"
diff --git a/po/pt.po b/po/pt.po
index bfa7c3e..9b1820c 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1931,6 +1931,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Dom"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index c8b77e8..f2f8f13 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -1872,6 +1872,7 @@ msgstr "Sábado"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Dom"
diff --git a/po/ro.po b/po/ro.po
index 097bdf1..adafc26 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -1979,6 +1979,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Dum"
diff --git a/po/ru.po b/po/ru.po
index 8d98693..7b1645c 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1878,6 +1878,7 @@ msgstr "Суббота"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Вс"
diff --git a/po/si.po b/po/si.po
index 46b38b6..29fabfd 100644
--- a/po/si.po
+++ b/po/si.po
@@ -1881,6 +1881,7 @@ msgstr "සෙනසුරාදා"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "ඉරිදා"
diff --git a/po/sk.po b/po/sk.po
index ebf9938..923f027 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1868,6 +1868,7 @@ msgstr "Sobota"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "Ne"
diff --git a/po/sl.po b/po/sl.po
index c782bbd..9444891 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -1879,6 +1879,7 @@ msgstr "sobota"
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day name"
msgid "Sun"
msgstr "ned"
diff --git a/po/sq.po b/po/sq.po
index 344100f..67d56c8 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -1958,6 +1958,7 @@ msgstr ""
#. l10n: Short week day name
#: js/messages.php:346 libraries/common.lib.php:1493
+msgctx "Short week day ibraries/common.lib.php:1493 ��"